-
ChatterFeed
-
0Best Answers
-
0Likes Received
-
0Likes Given
-
14Questions
-
9Replies
Invalid SessionID problem
We have an appexchange package that uses Partner 7.0 WSDL. Recently it started throwing exception errors while trying to create lead or account. It throws following exception error:
INVALID_SESSION_ID: INVALID SESSION ID FOUND IN SESSIONHEADER
This is happening very randomly and it is not consistent. Somehow sales force sessionid is lost during the create call for lead or account.
Does anyone face this kind of problem recently?
-
- true
- June 09, 2006
- Like
- 0
- Continue reading or reply
want to set field security setting for professional edition
-
- true
- May 16, 2006
- Like
- 0
- Continue reading or reply
custom object - worflow alert
-
- true
- March 24, 2006
- Like
- 0
- Continue reading or reply
strange behaviour - forcefully logged out (important)
-
- true
- March 06, 2006
- Like
- 0
- Continue reading or reply
Is it possible to find appexchange package version using 7.0 API
Do we support any method on 7.0 API, which can give the version for custom app?
If not, what will be the best way to find out the version for app force using API or dynamically?
thx,
True
-
- true
- February 15, 2006
- Like
- 0
- Continue reading or reply
7.0 - UI enhancement related query
I saw in the following article which describes changes for 7.0(winter release)
http://www.sforce.com/resources/tn-16.jsp
According to thsi article, it is possible to pull tab style info dynamically by adding tab class info on body tag
For example in case of accounts tab, is used that reflects the selected tab.
Now if I have created a custom tab called "Test"
In order that my custom page reflects the "Test" tab info, do I have to add ?
I will really appretiate if someone can give me more information.
Thanks,
True
-
- true
- January 16, 2006
- Like
- 0
- Continue reading or reply
Dynamic pulling custom tab url
I need to dynamically pull the custom tab url. I am writing one scontrol which checks for certain lead field value and redirects to particular custom tab.
How can I pull the url for custom tab?
I looked into the merge field, custom tab url is not present.
What will be simplest way to get any tab url value and redirect it.
Thanks,
Nupur
-
- true
- November 16, 2005
- Like
- 0
- Continue reading or reply
Scontrol Link to custom tab
Hi,
I need to do following steps in order to pass parameter to custom tab:
a>Creation of a scontrol object- How can I create a sontrol object using javascript or any other tool? I am using a developer edition. How can I download office toolkit?
b>I found some example for javascipt
<SCRIPT>
function setVal() {
SchedTasks.SessionID="{!API_Session_ID}";
SchedTasks.ServerURL="{!API_Enterprise_Server_URL}";
SchedTasks.UserID="{!User_ID}";
}
</SCRIPT>
<BODY onload="setVal();">
In my case I need to pass companyname as a parameter or companyid(custom lead field). I am using partner 5.0 wsdl. How can I use the merge field in order to use any of the lead fields? Is it possible to use the same script?
Please advice, is this is right aproach. If possible, please answer all the queries.
Thanks,
-
- true
- September 26, 2005
- Like
- 0
- Continue reading or reply
Creating a new custom field through api
Hello,
I am trying to add a new custom field into lead through api. How it is going to work for the user a/c which does not have a priveledge to create a new custom field etc for the lead. How this will work?
Thanks,
Nupur
-
- true
- August 16, 2005
- Like
- 0
- Continue reading or reply
Populate some information on the fly from (our)d/b to sforce a/c
We are looking into upgrading SFDC integration from our application. Basically looking for autopopulating some data into sforce a/c from our d/b on the fly.
For example if some one try to create a new lead from UI and enter company name, than some link or button can check if that company is existing in our d/b and it pouplate other information automatically.
Is it possible to use scontrol object for this kind of feature or what is the easiest solution to integrate this feature.
Thanks,
nupur
-
- true
- August 16, 2005
- Like
- 0
- Continue reading or reply
Unable to login using personal edition (already contain "token")
Hi,
If anyone can help me out. Our integration works well with Enrterprise as well as professional edition.
Token is already added in soap header. But recently one of our client(personal edition) is not able to use this integration. I am getting this error for personal edition user
Error: �API_DISABLED_FOR_ORG: API is not enabled for this Organization�
Question:
1>Do I need to do some modification in the code or token so that it can work for any edition?
2>Does this integration(using sforce api) works for all the edition with the token key?
3>Right now we are using temporary token provided by salesforce. But recently we got certified. We didn't get any permanent token from saleforce, how long this temporary token will work?
thanks,
Nupur
-
- true
- March 10, 2005
- Like
- 0
- Continue reading or reply
problem with spi(sforce5.0)
Hi,
Recently I have added "token" provided by salesforce.com. so rthat any of our client (professional/enterprise) can use integration.
IT seems one of the client (professinoal edition) cannot use this integration
I am getting this error:
"API_DISABLED_FOR_ORG: API is not enabled for this Organization "
What will be the possibility for this error:
1>Do we need to setup something on client salesforce account
2>some problem with token
3>some problem with code???
Thanks
Nupur
-
- true
- February 07, 2005
- Like
- 0
- Continue reading or reply
API_DISABLED_FOR_ORG: API is not enabled for this Organization -professional edition"
Hi,
Recently I have added "token" provided by salesforce.com. so rthat any of our client (professional/enterprise) can use integration.
IT seems one of the client (professinoal edition) cannot use this integration
I am getting this error:
"API_DISABLED_FOR_ORG: API is not enabled for this Organization "
What will be the possibility for this error:
1>Do we need to setup something on client salesforce account
2>some problem with token
3>some problem with code???
Thanks
Nupur
-
- true
- February 07, 2005
- Like
- 0
- Continue reading or reply
_CallOptions Object
Hi
I am trying to add a token t(hat we need to add to our integration config )that will allow Professional and Enterprise customers to use our integration. I am trying to use a java sample code
Here is a code
Here is a snippet of sample Java code to aid you in the understanding and use of your client id:
// The following snippet assumes use of the partner WSDL
// For use with sforce 3.0, 4.0, 5.0
// Use the following in your login method, before you call
// the login method. Be sure to set the header value
// with your clientid.
// There exists a header object "_CallOptions" and setter method
// to insert the value. See the WSDL definition for details.
// To insert the header value, set the call option for client id
// as follows:
_CallOptions co = new _CallOptions();
co.setClient("your_clientid_value");
// bind it to the current soap session
binding.SetHeader("SforceService", "CallOptions", co);
I have 2 questions:
1>Where exactly I need to use to set token? will it be in my webservice where I am calling login function.
2>How can I use _CallOptions object? If I try to use it gives me an error type or namespace is not found.
Please Advice!!!!
Thanks,
Nupur
-
- true
- December 20, 2004
- Like
- 0
- Continue reading or reply
custom object - worflow alert
- true
- March 24, 2006
- Like
- 0
- Continue reading or reply
Is it possible to find appexchange package version using 7.0 API
Do we support any method on 7.0 API, which can give the version for custom app?
If not, what will be the best way to find out the version for app force using API or dynamically?
thx,
True
- true
- February 15, 2006
- Like
- 0
- Continue reading or reply
7.0 - UI enhancement related query
I saw in the following article which describes changes for 7.0(winter release)
http://www.sforce.com/resources/tn-16.jsp
According to thsi article, it is possible to pull tab style info dynamically by adding tab class info on body tag
For example in case of accounts tab, is used that reflects the selected tab.
Now if I have created a custom tab called "Test"
In order that my custom page reflects the "Test" tab info, do I have to add ?
I will really appretiate if someone can give me more information.
Thanks,
True
- true
- January 16, 2006
- Like
- 0
- Continue reading or reply
Scontrol Link to custom tab
Hi,
I need to do following steps in order to pass parameter to custom tab:
a>Creation of a scontrol object- How can I create a sontrol object using javascript or any other tool? I am using a developer edition. How can I download office toolkit?
b>I found some example for javascipt
<SCRIPT>
function setVal() {
SchedTasks.SessionID="{!API_Session_ID}";
SchedTasks.ServerURL="{!API_Enterprise_Server_URL}";
SchedTasks.UserID="{!User_ID}";
}
</SCRIPT>
<BODY onload="setVal();">
In my case I need to pass companyname as a parameter or companyid(custom lead field). I am using partner 5.0 wsdl. How can I use the merge field in order to use any of the lead fields? Is it possible to use the same script?
Please advice, is this is right aproach. If possible, please answer all the queries.
Thanks,
- true
- September 26, 2005
- Like
- 0
- Continue reading or reply
API_DISABLED_FOR_ORG: API is not enabled for this Organization -professional edition"
Hi,
Recently I have added "token" provided by salesforce.com. so rthat any of our client (professional/enterprise) can use integration.
IT seems one of the client (professinoal edition) cannot use this integration
I am getting this error:
"API_DISABLED_FOR_ORG: API is not enabled for this Organization "
What will be the possibility for this error:
1>Do we need to setup something on client salesforce account
2>some problem with token
3>some problem with code???
Thanks
Nupur
- true
- February 07, 2005
- Like
- 0
- Continue reading or reply
_CallOptions Object
Hi
I am trying to add a token t(hat we need to add to our integration config )that will allow Professional and Enterprise customers to use our integration. I am trying to use a java sample code
Here is a code
Here is a snippet of sample Java code to aid you in the understanding and use of your client id:
// The following snippet assumes use of the partner WSDL
// For use with sforce 3.0, 4.0, 5.0
// Use the following in your login method, before you call
// the login method. Be sure to set the header value
// with your clientid.
// There exists a header object "_CallOptions" and setter method
// to insert the value. See the WSDL definition for details.
// To insert the header value, set the call option for client id
// as follows:
_CallOptions co = new _CallOptions();
co.setClient("your_clientid_value");
// bind it to the current soap session
binding.SetHeader("SforceService", "CallOptions", co);
I have 2 questions:
1>Where exactly I need to use to set token? will it be in my webservice where I am calling login function.
2>How can I use _CallOptions object? If I try to use it gives me an error type or namespace is not found.
Please Advice!!!!
Thanks,
Nupur
- true
- December 20, 2004
- Like
- 0
- Continue reading or reply