function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
DL-ebay-apd-APT-sae@ebay.comDL-ebay-apd-APT-sae@ebay.com 

Download SalesForce Report using SOAP

I have received wsdl file using which I am successful in login into salesforce account at URLhttps://login.salesforce.com/services/Soap/c/34.0/0DF200000000gOK using username, password and organizationid.I am using SOAPUI.The response contains serverURL and sessionid.
I use this information to make query all request which fetch me metadata of the report.
I am looking for ways to download the report data using SOAP call. Please guide me how to do that
UC InnovationUC Innovation
You will have to query for reports using SOAP's query call. Here's the list of fields you can query from report:

http://​https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_objects_report.htm

Here's some more documentation on how to query using SOAP:

https://developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_calls_query.htm

Please mark as best answer if this helped!
DL-ebay-apd-APT-sae@ebay.comDL-ebay-apd-APT-sae@ebay.com
Thanks for sharing the obove links.
But in queryALL SOAP response, i found Description,DeveloperName,FolderName,Format,IsDeleted,LastReferencedDate,LastRunDate,LastViewedDate,Name,NamespacePrefix,OwnerId.
I am still looking out a way by which i retreive or download the data in the report.
Which java object can be used for retreiving the report data along with the headers .
Header of the reports are :
Platform (RSD)    Day (RSD)    Billing Category (RSD)    Opportunity Name    Product (RSD): Product Name    Ad Id (RSD)    Order Id (RSD)    Delivered AI (RSD)    Clicks Recorded (RSD)    Invoice Quantity (RSD)    Invoice amount (Delivered) (RSD) Currency    Invoice amount (Delivered) (RSD)

Please advice.
UC InnovationUC Innovation
It looks like there's some REST api available for this case. Here's the full documentation for this REST API:

https://developer.salesforce.com/docs/atlas.en-us.api_analytics.meta/api_analytics/sforce_analytics_rest_api_intro.htm
DL-ebay-apd-APT-sae@ebay.comDL-ebay-apd-APT-sae@ebay.com
I tried to follow the above documentation for REST API but with no success.
i followed below documentation to generate oAuth token but did not found consumer key for my user id DL-ebay-apd-APT-sae@ebay.com
https://developer.salesforce.com/page/Digging_Deeper_into_OAuth_2.0_on_Force.com

please guide with examples.