Master Object query failed: ID column not included in SOQL select statement. Please add it. (Release 7)
Issue
Master Object query failed: ID column not included in SOQL select statement. Please add it. (Release 7).
This is best explained with an example. Below, Conga Mail Merge is expecting the first value to be "ID" rather than "Product__c.ID".
SELECT Product__c.IDProduct__c.Name,Product__c.Type,FROM Purchase_Order_Product__cWHERE Product__c.Vendor='001T000000mABSn'
What to do
This error would be corrected by using the following:
SELECT IDProduct__c.NamFROM Purchase_Order_Product__WHERE Product__c.Vendor='001T000000mABSn'
