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

CreatedDate field is hidden ? *Noob Alert*
The following query works perfectly fine and returns all of these fields but when i checked Account objects fields i could not find CreatedDate field there. What is the reason for that , is this field hidden or something ?
SELECT ID,
Name,
Industry,
CreatedById,
CreatedDate,
LastMOdifiedByID
FROM Account
SELECT ID,
Name,
Industry,
CreatedById,
CreatedDate,
LastMOdifiedByID
FROM Account
please refer below link for your answer :
https://help.salesforce.com/articleView?id=000175936&type=1
you can find all hidden fields (system fields) with there API name here:
https://developer.salesforce.com/docs/atlas.en-us.sfFieldRef.meta/sfFieldRef/salesforce_field_reference_Account.htm
i hope it helps you.
Let me inform if it helps you and kindly mark it best answer if it helps you so it make proper solution for others
thanks
sfdcmonkey.com
CreatedById, CreatedDate, LastMOdifiedByID are all standard system fields on any object.Those fields are created automatically by system to provide more information about any record of that object like when a record is modified?who created it? etc. This fields will be seen in the record detail page when a record is created for that object.