Can someone clarify when a Trigger executes on a single record vs. multiple in one context?Is there a simple way to serialize execution of Batchable class?@future and triggersHow can I communicate a trigger exception to user in a bulk upsert for each record?How to detect the name or id of currently running batch job from trigger?Trigger Execution order/contextCalling executeBatch() method of two Batchable classes in execute method of a Schedule class, Will this hit governor limits?Trigger Using The Incorrect Account ID in Bulk UpdatesWhy is this ContentNote trigger receiving 1 record at a time even though multiple records are being inserted?Delete Records before UpdateCan a Change Event Trigger include the same record multiple times?

Importance of moon phases for Apollo missions

Why are Oscar, India, and X-Ray (O, I, and X) not used as taxiway identifiers?

Has Iron Man made any suit for underwater combat?

Do I have to mention my main character's age?

Can "Taking algebraic closure" be made into a functor?

Which dice game has a board with 9x9 squares that has different colors on the diagonals and midway on some edges?

Is there an English word to describe when a sound "protrudes"?

Why was Quirrell said to be in the Black Forest if Voldemort was actually in Albania?

How much did NASA help with the making of "First Man"?

Why can't a country print its own money to spend it only abroad?

Can I make Ubuntu 18.04 switch between multiple windows of the program by just clicking the icon?

What are "the high ends of castles" called?

Why is a PhD thesis typically 150 pages?

Does a "melee spell attack" use my spellcasting ability, or my Strength?

Considerations when providing money to only one child out of two

Can someone clarify when a Trigger executes on a single record vs. multiple in one context?

How does mathematics work?

Is there any direct train from LHR Airport to Newcastle Gateshead?

My current job follows "worst practices". How can I talk about my experience in an interview without giving off red flags?

Impact of throwing away fruit waste on a peak > 3200 m above a glacier

Why is there an extra "t" in Lemmatization?

Why Lie algebras if what we care about in physics are groups?

Do I care if the housing market has gone up or down, if I'm moving from one house to another?

1025th term of the given sequence.



Can someone clarify when a Trigger executes on a single record vs. multiple in one context?


Is there a simple way to serialize execution of Batchable class?@future and triggersHow can I communicate a trigger exception to user in a bulk upsert for each record?How to detect the name or id of currently running batch job from trigger?Trigger Execution order/contextCalling executeBatch() method of two Batchable classes in execute method of a Schedule class, Will this hit governor limits?Trigger Using The Incorrect Account ID in Bulk UpdatesWhy is this ContentNote trigger receiving 1 record at a time even though multiple records are being inserted?Delete Records before UpdateCan a Change Event Trigger include the same record multiple times?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















This may be a silly question, but I've been surprised by Salesforce enough to potentially look foolish for confirmation! Apologies, the question itself was difficult to phrase.



Fundamentally, since a trigger can execute once and include multiple records, the structure of it includes a list of records triggering it (rather than one context being just for one record). One obvious example of this being the case (multiple records opposed to one) is a bulk update where, of course, it's many records in one update rather than individually.



What I'm wondering is if there are multiple records in one context just because records were updated close enough to each other, rather than in a "bulk" update, even if technically under different create/update calls.



For context, we have an integration that takes a large, bulk batch of records from our source system, and upserts to SFDC. The way our integration member explained the upsert is that, yes, it's a bulk batch, but technically each record is sent out individually (but, of course, this moves fast so they are all created virtually at the same time). I am wondering if this would mean each record has its own trigger execution (so the "list" is just one record") since it's not technically a batch, or if salesforce receives them quick enough and considers them all together (and putting them all in the same context)...(or if maybe it's just asynchronous but still considered "batch" by salesforce). Regardless...



I suppose the root of my question has to do with how Salesforce establishes if something is in bulk to include in one context for the trigger, vs.
an individual execution. Is it just within a small time frame, or exclusively "batch" updates?



Again, apologies if this question is silly or confusing. Trying to establish the nature of our use case and how our trigger is processing it.










share|improve this question

















  • 4





    If they're being sent as individual API calls, then they would each be in their own execution context. That would generally be considered a very poor design though - passing multiple records to the APIs for insert or update, to conserve API calls by using 1 call per 200 (or fewer) records rather than an API call per record is one of, if not the primary reason for making triggers bulkified.

    – Thomas Taylor
    8 hours ago











  • It's interesting to consider poor vs good design from two angles (the way I see it). Poor design in regards to API calls would be individual; poor design for a trigger would be bulk because you could reach your SOQL query limit so easily even if you only have one query. That's actually the root of a problem I'm trying to solve with an existing trigger I just encountered that's reaching its limit, and I'm trying to figure out if its due to a bulk job (it has 5 queries in it - that won't take long to break in bulk!!) I understand generally you shouldn't have queries in triggers, but "never"?

    – Natalie Paige
    8 hours ago






  • 1





    @NataliePaige You just have to query smartly. Your SOQL queries should be able to bring up all the records you would possibly need. Never SOQL query within a for loop and use Map<Id, My_Custom_SObject__c> liberally and you should be fine

    – Brian Miller
    8 hours ago






  • 1





    If a SOQL query is running more than once per trigger execution, the trigger is not properly bulkified. Getting close to the limit with well-written triggers usually means triggers cascading across several objects.

    – Thomas Taylor
    7 hours ago







  • 1





    This is a great conversation to prime my continued investigation to my issue. Thank you both!!

    – Natalie Paige
    7 hours ago

















1















This may be a silly question, but I've been surprised by Salesforce enough to potentially look foolish for confirmation! Apologies, the question itself was difficult to phrase.



Fundamentally, since a trigger can execute once and include multiple records, the structure of it includes a list of records triggering it (rather than one context being just for one record). One obvious example of this being the case (multiple records opposed to one) is a bulk update where, of course, it's many records in one update rather than individually.



What I'm wondering is if there are multiple records in one context just because records were updated close enough to each other, rather than in a "bulk" update, even if technically under different create/update calls.



For context, we have an integration that takes a large, bulk batch of records from our source system, and upserts to SFDC. The way our integration member explained the upsert is that, yes, it's a bulk batch, but technically each record is sent out individually (but, of course, this moves fast so they are all created virtually at the same time). I am wondering if this would mean each record has its own trigger execution (so the "list" is just one record") since it's not technically a batch, or if salesforce receives them quick enough and considers them all together (and putting them all in the same context)...(or if maybe it's just asynchronous but still considered "batch" by salesforce). Regardless...



I suppose the root of my question has to do with how Salesforce establishes if something is in bulk to include in one context for the trigger, vs.
an individual execution. Is it just within a small time frame, or exclusively "batch" updates?



Again, apologies if this question is silly or confusing. Trying to establish the nature of our use case and how our trigger is processing it.










share|improve this question

















  • 4





    If they're being sent as individual API calls, then they would each be in their own execution context. That would generally be considered a very poor design though - passing multiple records to the APIs for insert or update, to conserve API calls by using 1 call per 200 (or fewer) records rather than an API call per record is one of, if not the primary reason for making triggers bulkified.

    – Thomas Taylor
    8 hours ago











  • It's interesting to consider poor vs good design from two angles (the way I see it). Poor design in regards to API calls would be individual; poor design for a trigger would be bulk because you could reach your SOQL query limit so easily even if you only have one query. That's actually the root of a problem I'm trying to solve with an existing trigger I just encountered that's reaching its limit, and I'm trying to figure out if its due to a bulk job (it has 5 queries in it - that won't take long to break in bulk!!) I understand generally you shouldn't have queries in triggers, but "never"?

    – Natalie Paige
    8 hours ago






  • 1





    @NataliePaige You just have to query smartly. Your SOQL queries should be able to bring up all the records you would possibly need. Never SOQL query within a for loop and use Map<Id, My_Custom_SObject__c> liberally and you should be fine

    – Brian Miller
    8 hours ago






  • 1





    If a SOQL query is running more than once per trigger execution, the trigger is not properly bulkified. Getting close to the limit with well-written triggers usually means triggers cascading across several objects.

    – Thomas Taylor
    7 hours ago







  • 1





    This is a great conversation to prime my continued investigation to my issue. Thank you both!!

    – Natalie Paige
    7 hours ago













1












1








1








This may be a silly question, but I've been surprised by Salesforce enough to potentially look foolish for confirmation! Apologies, the question itself was difficult to phrase.



Fundamentally, since a trigger can execute once and include multiple records, the structure of it includes a list of records triggering it (rather than one context being just for one record). One obvious example of this being the case (multiple records opposed to one) is a bulk update where, of course, it's many records in one update rather than individually.



What I'm wondering is if there are multiple records in one context just because records were updated close enough to each other, rather than in a "bulk" update, even if technically under different create/update calls.



For context, we have an integration that takes a large, bulk batch of records from our source system, and upserts to SFDC. The way our integration member explained the upsert is that, yes, it's a bulk batch, but technically each record is sent out individually (but, of course, this moves fast so they are all created virtually at the same time). I am wondering if this would mean each record has its own trigger execution (so the "list" is just one record") since it's not technically a batch, or if salesforce receives them quick enough and considers them all together (and putting them all in the same context)...(or if maybe it's just asynchronous but still considered "batch" by salesforce). Regardless...



I suppose the root of my question has to do with how Salesforce establishes if something is in bulk to include in one context for the trigger, vs.
an individual execution. Is it just within a small time frame, or exclusively "batch" updates?



Again, apologies if this question is silly or confusing. Trying to establish the nature of our use case and how our trigger is processing it.










share|improve this question














This may be a silly question, but I've been surprised by Salesforce enough to potentially look foolish for confirmation! Apologies, the question itself was difficult to phrase.



Fundamentally, since a trigger can execute once and include multiple records, the structure of it includes a list of records triggering it (rather than one context being just for one record). One obvious example of this being the case (multiple records opposed to one) is a bulk update where, of course, it's many records in one update rather than individually.



What I'm wondering is if there are multiple records in one context just because records were updated close enough to each other, rather than in a "bulk" update, even if technically under different create/update calls.



For context, we have an integration that takes a large, bulk batch of records from our source system, and upserts to SFDC. The way our integration member explained the upsert is that, yes, it's a bulk batch, but technically each record is sent out individually (but, of course, this moves fast so they are all created virtually at the same time). I am wondering if this would mean each record has its own trigger execution (so the "list" is just one record") since it's not technically a batch, or if salesforce receives them quick enough and considers them all together (and putting them all in the same context)...(or if maybe it's just asynchronous but still considered "batch" by salesforce). Regardless...



I suppose the root of my question has to do with how Salesforce establishes if something is in bulk to include in one context for the trigger, vs.
an individual execution. Is it just within a small time frame, or exclusively "batch" updates?



Again, apologies if this question is silly or confusing. Trying to establish the nature of our use case and how our trigger is processing it.







apex trigger batch triggercontext executioncontext






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 8 hours ago









Natalie PaigeNatalie Paige

11510 bronze badges




11510 bronze badges







  • 4





    If they're being sent as individual API calls, then they would each be in their own execution context. That would generally be considered a very poor design though - passing multiple records to the APIs for insert or update, to conserve API calls by using 1 call per 200 (or fewer) records rather than an API call per record is one of, if not the primary reason for making triggers bulkified.

    – Thomas Taylor
    8 hours ago











  • It's interesting to consider poor vs good design from two angles (the way I see it). Poor design in regards to API calls would be individual; poor design for a trigger would be bulk because you could reach your SOQL query limit so easily even if you only have one query. That's actually the root of a problem I'm trying to solve with an existing trigger I just encountered that's reaching its limit, and I'm trying to figure out if its due to a bulk job (it has 5 queries in it - that won't take long to break in bulk!!) I understand generally you shouldn't have queries in triggers, but "never"?

    – Natalie Paige
    8 hours ago






  • 1





    @NataliePaige You just have to query smartly. Your SOQL queries should be able to bring up all the records you would possibly need. Never SOQL query within a for loop and use Map<Id, My_Custom_SObject__c> liberally and you should be fine

    – Brian Miller
    8 hours ago






  • 1





    If a SOQL query is running more than once per trigger execution, the trigger is not properly bulkified. Getting close to the limit with well-written triggers usually means triggers cascading across several objects.

    – Thomas Taylor
    7 hours ago







  • 1





    This is a great conversation to prime my continued investigation to my issue. Thank you both!!

    – Natalie Paige
    7 hours ago












  • 4





    If they're being sent as individual API calls, then they would each be in their own execution context. That would generally be considered a very poor design though - passing multiple records to the APIs for insert or update, to conserve API calls by using 1 call per 200 (or fewer) records rather than an API call per record is one of, if not the primary reason for making triggers bulkified.

    – Thomas Taylor
    8 hours ago











  • It's interesting to consider poor vs good design from two angles (the way I see it). Poor design in regards to API calls would be individual; poor design for a trigger would be bulk because you could reach your SOQL query limit so easily even if you only have one query. That's actually the root of a problem I'm trying to solve with an existing trigger I just encountered that's reaching its limit, and I'm trying to figure out if its due to a bulk job (it has 5 queries in it - that won't take long to break in bulk!!) I understand generally you shouldn't have queries in triggers, but "never"?

    – Natalie Paige
    8 hours ago






  • 1





    @NataliePaige You just have to query smartly. Your SOQL queries should be able to bring up all the records you would possibly need. Never SOQL query within a for loop and use Map<Id, My_Custom_SObject__c> liberally and you should be fine

    – Brian Miller
    8 hours ago






  • 1





    If a SOQL query is running more than once per trigger execution, the trigger is not properly bulkified. Getting close to the limit with well-written triggers usually means triggers cascading across several objects.

    – Thomas Taylor
    7 hours ago







  • 1





    This is a great conversation to prime my continued investigation to my issue. Thank you both!!

    – Natalie Paige
    7 hours ago







4




4





If they're being sent as individual API calls, then they would each be in their own execution context. That would generally be considered a very poor design though - passing multiple records to the APIs for insert or update, to conserve API calls by using 1 call per 200 (or fewer) records rather than an API call per record is one of, if not the primary reason for making triggers bulkified.

– Thomas Taylor
8 hours ago





If they're being sent as individual API calls, then they would each be in their own execution context. That would generally be considered a very poor design though - passing multiple records to the APIs for insert or update, to conserve API calls by using 1 call per 200 (or fewer) records rather than an API call per record is one of, if not the primary reason for making triggers bulkified.

– Thomas Taylor
8 hours ago













It's interesting to consider poor vs good design from two angles (the way I see it). Poor design in regards to API calls would be individual; poor design for a trigger would be bulk because you could reach your SOQL query limit so easily even if you only have one query. That's actually the root of a problem I'm trying to solve with an existing trigger I just encountered that's reaching its limit, and I'm trying to figure out if its due to a bulk job (it has 5 queries in it - that won't take long to break in bulk!!) I understand generally you shouldn't have queries in triggers, but "never"?

– Natalie Paige
8 hours ago





It's interesting to consider poor vs good design from two angles (the way I see it). Poor design in regards to API calls would be individual; poor design for a trigger would be bulk because you could reach your SOQL query limit so easily even if you only have one query. That's actually the root of a problem I'm trying to solve with an existing trigger I just encountered that's reaching its limit, and I'm trying to figure out if its due to a bulk job (it has 5 queries in it - that won't take long to break in bulk!!) I understand generally you shouldn't have queries in triggers, but "never"?

– Natalie Paige
8 hours ago




1




1





@NataliePaige You just have to query smartly. Your SOQL queries should be able to bring up all the records you would possibly need. Never SOQL query within a for loop and use Map<Id, My_Custom_SObject__c> liberally and you should be fine

– Brian Miller
8 hours ago





@NataliePaige You just have to query smartly. Your SOQL queries should be able to bring up all the records you would possibly need. Never SOQL query within a for loop and use Map<Id, My_Custom_SObject__c> liberally and you should be fine

– Brian Miller
8 hours ago




1




1





If a SOQL query is running more than once per trigger execution, the trigger is not properly bulkified. Getting close to the limit with well-written triggers usually means triggers cascading across several objects.

– Thomas Taylor
7 hours ago






If a SOQL query is running more than once per trigger execution, the trigger is not properly bulkified. Getting close to the limit with well-written triggers usually means triggers cascading across several objects.

– Thomas Taylor
7 hours ago





1




1





This is a great conversation to prime my continued investigation to my issue. Thank you both!!

– Natalie Paige
7 hours ago





This is a great conversation to prime my continued investigation to my issue. Thank you both!!

– Natalie Paige
7 hours ago










2 Answers
2






active

oldest

votes


















3














If the external system is doing a simple REST API call into Salesforce (albeit many of them very quickly together, even in parallel), Salesforce will treat each call as a separate Transaction, and triggers will run on each item separately.



In general, multiple records are only processed together if a singular action was called on multiple records at once (like mass edit on a list view, uploads from a CSV, or custom VF / Aura / LWC components that intentionally call an insert/update on multiple SObject records at once).



There are a number of API protocols though that will ensure that bulk records will come into Salesforce, and thereby the trigger will handle them in bulk appropriately. See the Bulk API trailhead and REST API Composite documentation for some guidance.






share|improve this answer






























    2














    In addition to @BrianMiller answer,



    If one or more publishers publish Platform Event Foo__e as follows



    • T(0) - publish 10 Foo__e

    • T(1) - publish 3 Foo__e

    • T(2) - publish 6 Foo__e

    then the trigger that subscribes to Foo__e could see anywhere from:



    1 to all 19 (and anything in between) Foo__e in a single transaction as SFDC Platform Event subscription code will "batch" Platform Events into a single transaction using rules that are opaque.






    share|improve this answer























    • This is wonderful - I didn't know Platform Events operate in this fashion

      – Brian Miller
      7 hours ago













    Your Answer








    StackExchange.ready(function()
    var channelOptions =
    tags: "".split(" "),
    id: "459"
    ;
    initTagRenderer("".split(" "), "".split(" "), channelOptions);

    StackExchange.using("externalEditor", function()
    // Have to fire editor after snippets, if snippets enabled
    if (StackExchange.settings.snippets.snippetsEnabled)
    StackExchange.using("snippets", function()
    createEditor();
    );

    else
    createEditor();

    );

    function createEditor()
    StackExchange.prepareEditor(
    heartbeatType: 'answer',
    autoActivateHeartbeat: false,
    convertImagesToLinks: false,
    noModals: true,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    imageUploader:
    brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
    contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
    allowUrls: true
    ,
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













    draft saved

    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f270452%2fcan-someone-clarify-when-a-trigger-executes-on-a-single-record-vs-multiple-in-o%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3














    If the external system is doing a simple REST API call into Salesforce (albeit many of them very quickly together, even in parallel), Salesforce will treat each call as a separate Transaction, and triggers will run on each item separately.



    In general, multiple records are only processed together if a singular action was called on multiple records at once (like mass edit on a list view, uploads from a CSV, or custom VF / Aura / LWC components that intentionally call an insert/update on multiple SObject records at once).



    There are a number of API protocols though that will ensure that bulk records will come into Salesforce, and thereby the trigger will handle them in bulk appropriately. See the Bulk API trailhead and REST API Composite documentation for some guidance.






    share|improve this answer



























      3














      If the external system is doing a simple REST API call into Salesforce (albeit many of them very quickly together, even in parallel), Salesforce will treat each call as a separate Transaction, and triggers will run on each item separately.



      In general, multiple records are only processed together if a singular action was called on multiple records at once (like mass edit on a list view, uploads from a CSV, or custom VF / Aura / LWC components that intentionally call an insert/update on multiple SObject records at once).



      There are a number of API protocols though that will ensure that bulk records will come into Salesforce, and thereby the trigger will handle them in bulk appropriately. See the Bulk API trailhead and REST API Composite documentation for some guidance.






      share|improve this answer

























        3












        3








        3







        If the external system is doing a simple REST API call into Salesforce (albeit many of them very quickly together, even in parallel), Salesforce will treat each call as a separate Transaction, and triggers will run on each item separately.



        In general, multiple records are only processed together if a singular action was called on multiple records at once (like mass edit on a list view, uploads from a CSV, or custom VF / Aura / LWC components that intentionally call an insert/update on multiple SObject records at once).



        There are a number of API protocols though that will ensure that bulk records will come into Salesforce, and thereby the trigger will handle them in bulk appropriately. See the Bulk API trailhead and REST API Composite documentation for some guidance.






        share|improve this answer













        If the external system is doing a simple REST API call into Salesforce (albeit many of them very quickly together, even in parallel), Salesforce will treat each call as a separate Transaction, and triggers will run on each item separately.



        In general, multiple records are only processed together if a singular action was called on multiple records at once (like mass edit on a list view, uploads from a CSV, or custom VF / Aura / LWC components that intentionally call an insert/update on multiple SObject records at once).



        There are a number of API protocols though that will ensure that bulk records will come into Salesforce, and thereby the trigger will handle them in bulk appropriately. See the Bulk API trailhead and REST API Composite documentation for some guidance.







        share|improve this answer












        share|improve this answer



        share|improve this answer










        answered 8 hours ago









        Brian MillerBrian Miller

        1,4465 silver badges21 bronze badges




        1,4465 silver badges21 bronze badges























            2














            In addition to @BrianMiller answer,



            If one or more publishers publish Platform Event Foo__e as follows



            • T(0) - publish 10 Foo__e

            • T(1) - publish 3 Foo__e

            • T(2) - publish 6 Foo__e

            then the trigger that subscribes to Foo__e could see anywhere from:



            1 to all 19 (and anything in between) Foo__e in a single transaction as SFDC Platform Event subscription code will "batch" Platform Events into a single transaction using rules that are opaque.






            share|improve this answer























            • This is wonderful - I didn't know Platform Events operate in this fashion

              – Brian Miller
              7 hours ago















            2














            In addition to @BrianMiller answer,



            If one or more publishers publish Platform Event Foo__e as follows



            • T(0) - publish 10 Foo__e

            • T(1) - publish 3 Foo__e

            • T(2) - publish 6 Foo__e

            then the trigger that subscribes to Foo__e could see anywhere from:



            1 to all 19 (and anything in between) Foo__e in a single transaction as SFDC Platform Event subscription code will "batch" Platform Events into a single transaction using rules that are opaque.






            share|improve this answer























            • This is wonderful - I didn't know Platform Events operate in this fashion

              – Brian Miller
              7 hours ago













            2












            2








            2







            In addition to @BrianMiller answer,



            If one or more publishers publish Platform Event Foo__e as follows



            • T(0) - publish 10 Foo__e

            • T(1) - publish 3 Foo__e

            • T(2) - publish 6 Foo__e

            then the trigger that subscribes to Foo__e could see anywhere from:



            1 to all 19 (and anything in between) Foo__e in a single transaction as SFDC Platform Event subscription code will "batch" Platform Events into a single transaction using rules that are opaque.






            share|improve this answer













            In addition to @BrianMiller answer,



            If one or more publishers publish Platform Event Foo__e as follows



            • T(0) - publish 10 Foo__e

            • T(1) - publish 3 Foo__e

            • T(2) - publish 6 Foo__e

            then the trigger that subscribes to Foo__e could see anywhere from:



            1 to all 19 (and anything in between) Foo__e in a single transaction as SFDC Platform Event subscription code will "batch" Platform Events into a single transaction using rules that are opaque.







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered 7 hours ago









            cropredycropredy

            38.4k4 gold badges45 silver badges133 bronze badges




            38.4k4 gold badges45 silver badges133 bronze badges












            • This is wonderful - I didn't know Platform Events operate in this fashion

              – Brian Miller
              7 hours ago

















            • This is wonderful - I didn't know Platform Events operate in this fashion

              – Brian Miller
              7 hours ago
















            This is wonderful - I didn't know Platform Events operate in this fashion

            – Brian Miller
            7 hours ago





            This is wonderful - I didn't know Platform Events operate in this fashion

            – Brian Miller
            7 hours ago

















            draft saved

            draft discarded
















































            Thanks for contributing an answer to Salesforce Stack Exchange!


            • Please be sure to answer the question. Provide details and share your research!

            But avoid


            • Asking for help, clarification, or responding to other answers.

            • Making statements based on opinion; back them up with references or personal experience.

            To learn more, see our tips on writing great answers.




            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsalesforce.stackexchange.com%2fquestions%2f270452%2fcan-someone-clarify-when-a-trigger-executes-on-a-single-record-vs-multiple-in-o%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown





















































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown

































            Required, but never shown














            Required, but never shown












            Required, but never shown







            Required, but never shown







            Popular posts from this blog

            Invision Community Contents History See also References External links Navigation menuProprietaryinvisioncommunity.comIPS Community ForumsIPS Community Forumsthis blog entry"License Changes, IP.Board 3.4, and the Future""Interview -- Matt Mecham of Ibforums""CEO Invision Power Board, Matt Mecham Is a Liar, Thief!"IPB License Explanation 1.3, 1.3.1, 2.0, and 2.1ArchivedSecurity Fixes, Updates And Enhancements For IPB 1.3.1Archived"New Demo Accounts - Invision Power Services"the original"New Default Skin"the original"Invision Power Board 3.0.0 and Applications Released"the original"Archived copy"the original"Perpetual licenses being done away with""Release Notes - Invision Power Services""Introducing: IPS Community Suite 4!"Invision Community Release Notes

            Canceling a color specificationRandomly assigning color to Graphics3D objects?Default color for Filling in Mathematica 9Coloring specific elements of sets with a prime modified order in an array plotHow to pick a color differing significantly from the colors already in a given color list?Detection of the text colorColor numbers based on their valueCan color schemes for use with ColorData include opacity specification?My dynamic color schemes

            Tom Holland Mục lục Đầu đời và giáo dục | Sự nghiệp | Cuộc sống cá nhân | Phim tham gia | Giải thưởng và đề cử | Chú thích | Liên kết ngoài | Trình đơn chuyển hướngProfile“Person Details for Thomas Stanley Holland, "England and Wales Birth Registration Index, 1837-2008" — FamilySearch.org”"Meet Tom Holland... the 16-year-old star of The Impossible""Schoolboy actor Tom Holland finds himself in Oscar contention for role in tsunami drama"“Naomi Watts on the Prince William and Harry's reaction to her film about the late Princess Diana”lưu trữ"Holland and Pflueger Are West End's Two New 'Billy Elliots'""I'm so envious of my son, the movie star! British writer Dominic Holland's spent 20 years trying to crack Hollywood - but he's been beaten to it by a very unlikely rival"“Richard and Margaret Povey of Jersey, Channel Islands, UK: Information about Thomas Stanley Holland”"Tom Holland to play Billy Elliot""New Billy Elliot leaving the garage"Billy Elliot the Musical - Tom Holland - Billy"A Tale of four Billys: Tom Holland""The Feel Good Factor""Thames Christian College schoolboys join Myleene Klass for The Feelgood Factor""Government launches £600,000 arts bursaries pilot""BILLY's Chapman, Holland, Gardner & Jackson-Keen Visit Prime Minister""Elton John 'blown away' by Billy Elliot fifth birthday" (video with John's interview and fragments of Holland's performance)"First News interviews Arrietty's Tom Holland"“33rd Critics' Circle Film Awards winners”“National Board of Review Current Awards”Bản gốc"Ron Howard Whaling Tale 'In The Heart Of The Sea' Casts Tom Holland"“'Spider-Man' Finds Tom Holland to Star as New Web-Slinger”lưu trữ“Captain America: Civil War (2016)”“Film Review: ‘Captain America: Civil War’”lưu trữ“‘Captain America: Civil War’ review: Choose your own avenger”lưu trữ“The Lost City of Z reviews”“Sony Pictures and Marvel Studios Find Their 'Spider-Man' Star and Director”“‘Mary Magdalene’, ‘Current War’ & ‘Wind River’ Get 2017 Release Dates From Weinstein”“Lionsgate Unleashing Daisy Ridley & Tom Holland Starrer ‘Chaos Walking’ In Cannes”“PTA's 'Master' Leads Chicago Film Critics Nominations, UPDATED: Houston and Indiana Critics Nominations”“Nominaciones Goya 2013 Telecinco Cinema – ENG”“Jameson Empire Film Awards: Martin Freeman wins best actor for performance in The Hobbit”“34th Annual Young Artist Awards”Bản gốc“Teen Choice Awards 2016—Captain America: Civil War Leads Second Wave of Nominations”“BAFTA Film Award Nominations: ‘La La Land’ Leads Race”“Saturn Awards Nominations 2017: 'Rogue One,' 'Walking Dead' Lead”Tom HollandTom HollandTom HollandTom Hollandmedia.gettyimages.comWorldCat Identities300279794no20130442900000 0004 0355 42791085670554170004732cb16706349t(data)XX5557367