• Recapify Developer
  • NEWBIE
  • 0 Points
  • Member since 2016

  • Chatter
    Feed
  • 0
    Best Answers
  • 0
    Likes Received
  • 0
    Likes Given
  • 3
    Questions
  • 2
    Replies
I am trying to send the user an email every time the user uses my app to insert or update a record in salesforce.  

Is Fuel the SDK I should be using?

Also, when I am updating different tables, is there standard email format that will be sent out from Fuel?  or should I construct different message depending on each table?

thanks.
I have chagned my setting to be "Market user".  Still have this problem.  How should I debug now?

 
I am trying to upload a pdf file to chatter through iOS SDK. 

Getting error:    404 "the requested resource does not exist".

 Error Domain=CSFNetworkErrorDomain Code=404 "The requested resource does not exist" UserInfo={NSLocalizedFailureReason=NOT_FOUND, isAuthenticationFailure=false, NSLocalizedDescription=The requested resource does not exist, action=<SFRestAPISalesforceAction: 0x7fe9eda02bf0, POST "/chatter/users/me/files" (0.00)>}

here is my request:

    SFRestRequest * request = [[SFRestAPI sharedInstance] requestForUploadFile:pdfData name:nameString description:dataDescription mimeType:@"application/pdf"];

Can someone give me a clue?
Please help me getting open Activity list on visuaforce page..Here is my code.
// Page

<apex:pageBlock title="Open Activity" >
<apex:pageBlockTable value="{!ActivityList}" var="a">
<apex:column value="{!a.OpenActivities }"/>
</apex:pageBlockTable> </apex:pageBlock>

//Controller method

public List<Lead_Inspector__c>getActivityList(){ List<Lead_Inspector__c> lst =[SELECT (SELECT ActivityDate, Description FROM OpenActivities ORDER BY ActivityDate ASC NULLS LAST, LastModifiedDate DESC      LIMIT 500)FROM Lead_Inspector__c WHERE id = :leadId ];
return lst; }
 
I am trying to send the user an email every time the user uses my app to insert or update a record in salesforce.  

Is Fuel the SDK I should be using?

Also, when I am updating different tables, is there standard email format that will be sent out from Fuel?  or should I construct different message depending on each table?

thanks.