문제

I am using the Salesforce Mobile SDK 2.0 to build a connected Salesforce Native iOS app, I would like to be able to run reports programatically using the SFRestRequest method (or some other method?), can you show code examples of how this might be done? Secondly, is it also possible to send filter parameters through to the report as well, such as account id? My code snippet in its current state:

SFRestRequest *request = [[SFRestAPI sharedInstance] requestForQuery:@"SELECT id, Image_Filename__c FROM product2 WHERE (Group__c !='Discontinued') ORDER BY name ASC"];
[[SFRestAPI sharedInstance] send:request delegate:self];
도움이 되었습니까?

해결책

try this answer, you will need to create some clone methods:

answer

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top