• true
  • NEWBIE
  • 0 Points
  • Member since 2004

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 14
    Questions
  • 9
    Replies
Hello,
 
I am trying to create one custom object which will keep track of appexchange version #. I need to alert user if custom object is greater than some value. Is it possible to use work flow alert with custom object?
 
thx
Hi,
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
I am trying to create a customize page for one of the custom tab. I need to pull palette information for this custom tab.

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

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,

 

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

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