• paradise
  • NEWBIE
  • 0 Points
  • Member since 2008

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 2
    Questions
  • 2
    Replies
Hi all salesforce experts,
 
    need your help.
 
   In my perl script (using WWW.Salesforce-0.083 module), login and select succeeds, but update operation fails.
 
   Here is my perl codes:
 
   my $sforce = WWW::Salesforce::Simple->new(username,password);  #succeeds
  
   my $result = $sforce->do_query("select .....");   #succeeds
 
   .............   
    my %update_Hash;
    $update_Hash{type} = "Account";
    $update_Hash{Id} = "0017000000LKqSuAAL";  #a real ID gotten from query
    $update_Hash{"Site"} = "Testing sites";
 
    my $res = $sforce->update(%update_Hash);  #fails here with error message "Expected a hash with key 'type' .....
    print "Update result = $res\n";
 
Why ?
How to solve ?
 
 
Hi,
 
    Need your help.
 
    After installing Eclipse3.3.2 + Force.com IDE,
 
    (1) I successfully create a Force.com project using my developer account
 
    (2) However, when I try to create my second Force.com project using my company's account
          (Salesforce Enterprise Edition), an error says:
 
                    Unable to create connection to Salesforce:
                    sObject type 'Project' is not suported
               
    What does it means ?
    
    How to solve it ?
 
 
Regards,
 
Hi all salesforce experts,
 
    need your help.
 
   In my perl script (using WWW.Salesforce-0.083 module), login and select succeeds, but update operation fails.
 
   Here is my perl codes:
 
   my $sforce = WWW::Salesforce::Simple->new(username,password);  #succeeds
  
   my $result = $sforce->do_query("select .....");   #succeeds
 
   .............   
    my %update_Hash;
    $update_Hash{type} = "Account";
    $update_Hash{Id} = "0017000000LKqSuAAL";  #a real ID gotten from query
    $update_Hash{"Site"} = "Testing sites";
 
    my $res = $sforce->update(%update_Hash);  #fails here with error message "Expected a hash with key 'type' .....
    print "Update result = $res\n";
 
Why ?
How to solve ?
 
 
Hi,
 
    Need your help.
 
    After installing Eclipse3.3.2 + Force.com IDE,
 
    (1) I successfully create a Force.com project using my developer account
 
    (2) However, when I try to create my second Force.com project using my company's account
          (Salesforce Enterprise Edition), an error says:
 
                    Unable to create connection to Salesforce:
                    sObject type 'Project' is not suported
               
    What does it means ?
    
    How to solve it ?
 
 
Regards,