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

How to determined if record is coming from apex data load?
Im creating trigger , inside this i want to add condition if i am manipulating record is from apex data load or from user interface. how can i achieved this without creating field that will act as a flag that will set to true if coming from data load. thanks
Hi
In trigger Just Ckeck the Currentpage.gerurl();
and check if url Contains salesforce.com then it is coming from Standard ui
if not then it wiil be from dataloader
just put this condition in trigger
if any query then ask me