Hi guys, I have a task with data management where I should update
Generated_opportunity__c (lookup on oppy)
Primary_Campairg_Source__c fields (Lookup on Campaign)
Those fields on Contact object, do you guys know any options, how can I get ID from those fields for the data loader except create new Id referenced fields, because we already use limit for formulas on this object
Most standard Reports can access the standard Salesforce ID fields. If you need the full 18 character Salesforce ID, you can create a custom Formula(Text) field like this
CASESAFEID( Id )
I would strongly recommend doing this on every object in your Salesforce org.
Also, if the standard Report Types are unable to return the Salesforce ID's you need. You can almost always access them via a Custom Report Type
These are all handy things to have on hand as a Salesforce Admin, so it's well worth the time to set them up (I use them all the time in my orgs)