Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I am Ashish Sharma. I am trying to download the data in Qlikview using the Salesforce Connector.
No issues with the Standard fields.
But, how to retrieve data from Custom Tables of Salesforce using Qlikview Connector.
It is urgent. Can someone guide me regarding this.
The Name of the Table is "
Thanks in Advance
CustomObject_SQL:
SQL SELECT
*
FROM CustomObject__c;
CustomObject:
LOAD DISTINCT
Id,
CustomField1__c as Contact.Id,
CreatedById,
CreatedDate,
LastActivityDate,
LastModifiedById,
LastModifiedDate,
Name
RESIDENT CustomObject_SQL;
DROP TABLE CustomObject_SQL;