You need to sign in to do that
Don't have an account?

how to get all fields info includes parent records values for a particular record
I want to get all fields information which includes parent records details as well.
let suppose query is like, select * from contact.
Here contact is child object of Account, So i need account all feilds as well.
Is This Possiable?
Note: I wil have only recordID, based on i need all above info.
Any alternative soution other than Apex code?
Guys, please help me on this.
let suppose query is like, select * from contact.
Here contact is child object of Account, So i need account all feilds as well.
Is This Possiable?
Note: I wil have only recordID, based on i need all above info.
Any alternative soution other than Apex code?
Guys, please help me on this.
you can query all fileds of a object using apex and dynamic soql .but still you cant query all the parent fields without specifically mentioning them
http://salesforcecat.blogspot.com/2014/10/salesforce-soql-query-all-fields.html
1) http://amitsalesforce.blogspot.com/2016/03/dynamic-query-select-all-field-in-soql.html
Sample code for you