• VasilSh
  • NEWBIE
  • 0 Points
  • Member since 2006

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 4
    Questions
  • 7
    Replies
Hi All
I've got the following problem:
I am using the following url for load SF reports via HTTP request:
http://na1.salesforce.com/servlet/servlet.ReportList?sessionId=XXX
Problem is SF got a different servers for different country and this requests have to be different for example for europe I found that it has to be:
http://emea.salesforce.com/servlet/servlet.ReportList?sessionId=XXX

Does somebody know all list of SF servers and relations between server name and location ?
Is any realtions between session login url and server responsible for reports ?
For example for the following login url: https://na3-api.salesforce.com/services/Soap/c/6.0
the following HTTP request http://na3.salesforce.com/servlet/servlet.ReportList?sessionId=XXX are working fine but not for all login urls it is try.

Is somebody know any legal way to load SF reports? We are using currently API 6.0 Does API 7.0 have any methods for load reports?
Best Reagrds
Vasil






Hi All,
Is anybody know the way how to detect the type of SalesForce edition via API ?
I know it is a well know question but unfortunately I didn't find any clear answer on this question.
Sales Force providing a lot of different editions: Enterprise, Unlimited .... but I didn't find any way how to detect type of editions.
I found some advise from Benji Jasik. He suggest to query for an object that is only in Enterprise Edition, and if it fails, assume you are in Professional. So can somebody provide a list of such objects ? During test the following links http://www.salesforce.com/products/comparison.jsp
I didn't find the objects for query.
Can somebody help?
Thank you in advance
Vasil
 
Hello
I am using the SalesForce API 6.0
When I am trying to do the following select

“select * from Case where AccountId ='XXXXX'

I've got the following SalesForce error: INVAID_FIELD

AccountId is correct one becouse I am able to the following select

select * from Contact where AccountId = 'XXXXX'

So I suppose AccountID didn't exist in Case table but

in sforce_office_toolkit.pdf on page 173

I can see Sales Objects diagram where link between Account table and Case table exist via AccountID

Can somebody help ?

Thank you

Vasil

 

Hello
I am developing addin for outlook with sforce office toolkit.
I've got a developed login. All functions was ok and working correctly.
But when we strting testing with live instance account. It was impossible to login
Please look at source below I am using C++ (VS6.0):

CComQIPtr m_SFSession
hr =::CoCreateInstance(CLSID_SForceSession3, NULL, CLSCTX_INPROC_SERVER, IID_ISForceSession3, (void**)&m_SFSession);
if(FAILED(hr))
{ return;}

VARIANT_BOOL hr = m_SFSession->Login(vName,vPassword);
if(hr == VARIANT_TRUE)
{
...
}
else
{
....
}


Please advise
Hello
I am using the SalesForce API 6.0
When I am trying to do the following select

“select * from Case where AccountId ='XXXXX'

I've got the following SalesForce error: INVAID_FIELD

AccountId is correct one becouse I am able to the following select

select * from Contact where AccountId = 'XXXXX'

So I suppose AccountID didn't exist in Case table but

in sforce_office_toolkit.pdf on page 173

I can see Sales Objects diagram where link between Account table and Case table exist via AccountID

Can somebody help ?

Thank you

Vasil

 

Hello
I am developing addin for outlook with sforce office toolkit.
I've got a developed login. All functions was ok and working correctly.
But when we strting testing with live instance account. It was impossible to login
Please look at source below I am using C++ (VS6.0):

CComQIPtr m_SFSession
hr =::CoCreateInstance(CLSID_SForceSession3, NULL, CLSCTX_INPROC_SERVER, IID_ISForceSession3, (void**)&m_SFSession);
if(FAILED(hr))
{ return;}

VARIANT_BOOL hr = m_SFSession->Login(vName,vPassword);
if(hr == VARIANT_TRUE)
{
...
}
else
{
....
}


Please advise
Hi, guys
As you know, after a sfdc user logged in salesforce.com site, he/she could see which edition he belongs to in browser title(such as "salesforce - Enterprise Edition - Mozilla Firefox" if he is of Enterprise Edition user),
So who knows is there any API to get the user edition if he/she has logged in the site?

Thanks in advance.