• jack_lincon_zhu
  • NEWBIE
  • 0 Points
  • Member since 2009

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 1
    Questions
  • 7
    Replies

I want to create a report which contain leads' information and the information of leads' owner ,how to do it?

Who can tell me? Thanks in advance

I've managed to extract information perfectly fine for one table...its quick and dynamic. Although one of the fields it returns is an index field for another table....is there an easy way to pull out a name field from a foreign table instead of just its id?

 

aka

 

table 1

 

IdNamePrimary_Account_Holder__c
a0C20000002uh8HEAQMCS-CLAIM-cvcvc001200000dfgfdgfdAAH

 

 

table2

 

IdName
001200000dfgfdgfdAAHVIVIENNE BLAKE

 

 

 

How can I return it so I have

 

 

table 1

 

IdNamePrimary_Account_Holder__c
a0C20000002uh8HEAQMCS-CLAIM-cvcvcVIVIENNE BLAKE

 

 

Hi All,
 
 
We are currently facing an issue regarding SMS integration. 
 
We need to send the SMS automatically when a case is saved/edited. For this we have an apex class which consists  of  HTTPS callouts to access the SMS gateway of Value first 
and a trigger which invokes this apex class when ever a case is saved/edited.
 
Now, when ever the trigger is fired i'm getting this exception     "System.CalloutException: Callout from triggers are currently not supported"
 
I think it can be possible by S-Control  but the process should automatic.  
 
And this is very urgent for our project 
 
Pls suggest any solution /workaround  for the same.
 

 
Any help is appreciable.
 
 
Thanks  
Jagan.
  • January 28, 2009
  • Like
  • 0
Hi,

I am trying to access Salesforce.com using its published webservices.

I have developed the entire code at my home internet connection and it workes fine there (as I didn't have any firewall blokcing there).
Now when I am trying to run the same code here on my company's LAN I am getting the following error: -
       javax.net.ssl.SSLException: Unrecognized SSL message, plaintext connection?

I have set the Proxy settings : -
            System.getProperties().put("proxySet", true);
            System.setProperty("http.proxyHost", <company-proxy>);
            System.setProperty("http.proxyPort", "8080");
            System.setProperty("https.proxyHost", <company-proxy>);
            System.setProperty("https.proxyPort", "8080");
            System.setProperty("java.protocol.handler.pkgs","com.sun.net.ssl.internal.www.protocol");
            Security.addProvider(new com.sun.net.ssl.internal.ssl.Provider());

I have gone through the previously posted threads regarding the same problem but couldn't get any solution regarding this.

Probably this has something to do with the ssl certificates. But I am not so familier with them and their installation.
I am using Axis1.3's jar files in my project, But I am not running axis server.

I am also able to access other https sites from my program. But not able to login in salesforce.

As my program is running perfect on my home's internet connection I am quite sure that there is something wrong with the proxy setting of my company, please guide me where am I going worng.


Thanks,
Piyush.

I made the mistake of clicking on the "Start DB Replication Monitor" button just to see what would happen, now Apex Explorer refuses to start. I get the following error when I attempt to login "ApexExplorer8.0.exe has stopped working."

I have uninstalled/reinstalled Apex Explorer a couple of  times after deleting whatever temp files I could find. I must be missing something though because even after reinstalling, it manages to find my default login/password from somewhere, and the replication monitor button is still clicked.

Where is this startup profile hiding?

Thanks!
BIll
  • December 23, 2008
  • Like
  • 0
I would like to schedule a block of Apex code to run several times a day to check an external web service and make updates to Salesforce objects based on the status of the call (this will be much more efficient than triggering calls based on use actions or data triggers). Reading docs and postings here, I've not come up with a clear picture of what options / alternatives and benefits exist for this scenario (but maybe I am overlooking something obvious). What are s the best approach to iniate scheduled Apex tasks?

Thanks!
Rick