How can I efficiently loop through opportunities on a list of accounts?

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












1















Currently we have a few nested for loops in our codebase that are doing what is mentioned in the question, but if we data load a large amount of records we run into CPU time errors. I am wanting to optimize as much as possible by eliminating these nested for loops. How can I perform operations on each opportunity in a list of accounts efficiently? An example of the pattern I'm trying to change is below.



List<account> accounts = [
SELECT id, Name, (SELECT id, StageName, CloseDate, OwnerId from Opportunities)
FROM Account
WHERE id IN :accountIds
];

for (Account acc : accounts)
for (opportunity opp : acc.opportunities)
//Opportunity operations here;

//Want to optimize this logic









share|improve this question




























    1















    Currently we have a few nested for loops in our codebase that are doing what is mentioned in the question, but if we data load a large amount of records we run into CPU time errors. I am wanting to optimize as much as possible by eliminating these nested for loops. How can I perform operations on each opportunity in a list of accounts efficiently? An example of the pattern I'm trying to change is below.



    List<account> accounts = [
    SELECT id, Name, (SELECT id, StageName, CloseDate, OwnerId from Opportunities)
    FROM Account
    WHERE id IN :accountIds
    ];

    for (Account acc : accounts)
    for (opportunity opp : acc.opportunities)
    //Opportunity operations here;

    //Want to optimize this logic









    share|improve this question


























      1












      1








      1








      Currently we have a few nested for loops in our codebase that are doing what is mentioned in the question, but if we data load a large amount of records we run into CPU time errors. I am wanting to optimize as much as possible by eliminating these nested for loops. How can I perform operations on each opportunity in a list of accounts efficiently? An example of the pattern I'm trying to change is below.



      List<account> accounts = [
      SELECT id, Name, (SELECT id, StageName, CloseDate, OwnerId from Opportunities)
      FROM Account
      WHERE id IN :accountIds
      ];

      for (Account acc : accounts)
      for (opportunity opp : acc.opportunities)
      //Opportunity operations here;

      //Want to optimize this logic









      share|improve this question
















      Currently we have a few nested for loops in our codebase that are doing what is mentioned in the question, but if we data load a large amount of records we run into CPU time errors. I am wanting to optimize as much as possible by eliminating these nested for loops. How can I perform operations on each opportunity in a list of accounts efficiently? An example of the pattern I'm trying to change is below.



      List<account> accounts = [
      SELECT id, Name, (SELECT id, StageName, CloseDate, OwnerId from Opportunities)
      FROM Account
      WHERE id IN :accountIds
      ];

      for (Account acc : accounts)
      for (opportunity opp : acc.opportunities)
      //Opportunity operations here;

      //Want to optimize this logic






      apex performance loop






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 14 at 18:16









      Adrian Larson

      109k19115246




      109k19115246










      asked Feb 14 at 18:14









      JoshJosh

      1919




      1919




















          2 Answers
          2






          active

          oldest

          votes


















          3














          Nested loops are not inherently evil, and are required if you're working on a nested structure like this.



          You could rewrite this particular query to be on Opportunity instead of Account, but CPU limit issues usually run deeper than a simple nested loop or two.



          About the only answer I can give you here is that you need to spend a fair amount of time profiling your code so you can accurately characterize the overall performance, and identify the problem areas (which methods are being called most often? which methods consume the most CPU time/queries/etc...?)



          Turning up the debug log levels for the Apex category, and making use of the "Analysis" perspective in the dev console (With a debug log open in the dev console: Test -> Switch Perspective -> Analysis) will give you additional buttons and panels to play around with that should help you gather more information.






          share|improve this answer






























            0














            You could try querying the Opportunity table like so.



            List<Opportunity> opp = [Select Id From Opportunity Where 
            AccountId IN (Select Id From Account Where Id = :accountIds)];


            Otherwise if you are running into heap errors you might need to optimize your code before and after the query or move your code into batch.






            share|improve this answer
























              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%2f250387%2fhow-can-i-efficiently-loop-through-opportunities-on-a-list-of-accounts%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














              Nested loops are not inherently evil, and are required if you're working on a nested structure like this.



              You could rewrite this particular query to be on Opportunity instead of Account, but CPU limit issues usually run deeper than a simple nested loop or two.



              About the only answer I can give you here is that you need to spend a fair amount of time profiling your code so you can accurately characterize the overall performance, and identify the problem areas (which methods are being called most often? which methods consume the most CPU time/queries/etc...?)



              Turning up the debug log levels for the Apex category, and making use of the "Analysis" perspective in the dev console (With a debug log open in the dev console: Test -> Switch Perspective -> Analysis) will give you additional buttons and panels to play around with that should help you gather more information.






              share|improve this answer



























                3














                Nested loops are not inherently evil, and are required if you're working on a nested structure like this.



                You could rewrite this particular query to be on Opportunity instead of Account, but CPU limit issues usually run deeper than a simple nested loop or two.



                About the only answer I can give you here is that you need to spend a fair amount of time profiling your code so you can accurately characterize the overall performance, and identify the problem areas (which methods are being called most often? which methods consume the most CPU time/queries/etc...?)



                Turning up the debug log levels for the Apex category, and making use of the "Analysis" perspective in the dev console (With a debug log open in the dev console: Test -> Switch Perspective -> Analysis) will give you additional buttons and panels to play around with that should help you gather more information.






                share|improve this answer

























                  3












                  3








                  3







                  Nested loops are not inherently evil, and are required if you're working on a nested structure like this.



                  You could rewrite this particular query to be on Opportunity instead of Account, but CPU limit issues usually run deeper than a simple nested loop or two.



                  About the only answer I can give you here is that you need to spend a fair amount of time profiling your code so you can accurately characterize the overall performance, and identify the problem areas (which methods are being called most often? which methods consume the most CPU time/queries/etc...?)



                  Turning up the debug log levels for the Apex category, and making use of the "Analysis" perspective in the dev console (With a debug log open in the dev console: Test -> Switch Perspective -> Analysis) will give you additional buttons and panels to play around with that should help you gather more information.






                  share|improve this answer













                  Nested loops are not inherently evil, and are required if you're working on a nested structure like this.



                  You could rewrite this particular query to be on Opportunity instead of Account, but CPU limit issues usually run deeper than a simple nested loop or two.



                  About the only answer I can give you here is that you need to spend a fair amount of time profiling your code so you can accurately characterize the overall performance, and identify the problem areas (which methods are being called most often? which methods consume the most CPU time/queries/etc...?)



                  Turning up the debug log levels for the Apex category, and making use of the "Analysis" perspective in the dev console (With a debug log open in the dev console: Test -> Switch Perspective -> Analysis) will give you additional buttons and panels to play around with that should help you gather more information.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Feb 14 at 19:19









                  Derek FDerek F

                  20.3k32252




                  20.3k32252























                      0














                      You could try querying the Opportunity table like so.



                      List<Opportunity> opp = [Select Id From Opportunity Where 
                      AccountId IN (Select Id From Account Where Id = :accountIds)];


                      Otherwise if you are running into heap errors you might need to optimize your code before and after the query or move your code into batch.






                      share|improve this answer





























                        0














                        You could try querying the Opportunity table like so.



                        List<Opportunity> opp = [Select Id From Opportunity Where 
                        AccountId IN (Select Id From Account Where Id = :accountIds)];


                        Otherwise if you are running into heap errors you might need to optimize your code before and after the query or move your code into batch.






                        share|improve this answer



























                          0












                          0








                          0







                          You could try querying the Opportunity table like so.



                          List<Opportunity> opp = [Select Id From Opportunity Where 
                          AccountId IN (Select Id From Account Where Id = :accountIds)];


                          Otherwise if you are running into heap errors you might need to optimize your code before and after the query or move your code into batch.






                          share|improve this answer















                          You could try querying the Opportunity table like so.



                          List<Opportunity> opp = [Select Id From Opportunity Where 
                          AccountId IN (Select Id From Account Where Id = :accountIds)];


                          Otherwise if you are running into heap errors you might need to optimize your code before and after the query or move your code into batch.







                          share|improve this answer














                          share|improve this answer



                          share|improve this answer








                          edited Feb 14 at 21:43

























                          answered Feb 14 at 19:22









                          joshiijoshii

                          948




                          948



























                              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%2f250387%2fhow-can-i-efficiently-loop-through-opportunities-on-a-list-of-accounts%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

                              How to check contact read email or not when send email to Individual?

                              Bahrain

                              Postfix configuration issue with fips on centos 7; mailgun relay