Salesforce: Identifying Type of Object For Exported Event Record
April 4, 2014 /
Posted in Salesforce Corner
During data import, there is some object export that is related to another object. The object relationship is only referenced using ID, hence, it’s impossible to identify the object type that it’s related to.
Here we would like to share the parameter you should use to know the object type that is related to Event. The following is a data export of event record.
ID | WHOID | WHATID |
---|---|---|
00U9000000IYSMnEAP | 0039000000StCDiAAN | 0019000000qMsarAAC |
To get the associated object:
ID | WHOID | WHATID | WHO.TYPE | WHAT.TYPE |
---|---|---|---|---|
00U9000000IYSMnEAP | 0039…DiAAN | 0019…arAAC | Contact | Campaign |
From the above, you will see the event is related to the contact and campaign object.