Don't have an account?
Search for an answer or ask a question of the zone or Customer Support.
You need to sign in to do that
Sign in to start searching questions
Signup for a Developer Edition
Sign in to start a discussion
Hi,
Is there any difference in: between System.trigger.new and Trigger.new
-Kaity.
Hello Kaity,
I think System namespace is the default namespace in apex. So System.Trigger.new or Trigger.new are both equivalent.
They're the same thing.
Trigger Context variables are contained in theSystem.Triggerclass....All triggers define implicit variables(Context variables) that allow developers to access runtime context..
Syste,trigger.new is same as trigger.new
Hit Kudos!!:)
Hello Kaity,
I think System namespace is the default namespace in apex. So System.Trigger.new or Trigger.new are both equivalent.
They're the same thing.
Trigger Context variables are contained in theSystem.Triggerclass....All triggers define implicit variables(Context variables) that allow developers to access runtime context..
Syste,trigger.new is same as trigger.new
Hit Kudos!!:)
for(Lead Led:System.Trigger.new)
is same as using
for(Lead Led: Trigger.New)