Nested Dynamic SOQL Query2019 Community Moderator ElectionSplit a single field into 2 columns for a VF pageJSON serialize is not handling aggregate results properly in Spring 13Getting error “System.LimitException: Too many query rows: 50001” what i do in this case.Best Approach/Way to Query Single SObject recordNeed help writing test Apex ClasseSearch by '.' causes non-selective query exceptionschema.getglobaldescribe needs test classNot able to escape quote in visualforce page?fault string: No such parameter param defined for the operation, please check the WSDL for the serviceUnable to query with cross-Object pick-list field filter on Custom Metadata SOQL

Why is "la Gestapo" feminine?

Hackerrank All Women's Codesprint 2019: Name the Product

Exposing a company lying about themselves in a tightly knit industry: Is my career at risk on the long run?

How to find the largest number(s) in a list of elements, possibly non-unique?

pipe commands inside find -exec?

What will the Frenchman say?

Air travel with refrigerated insulin

PTIJ: Which Dr. Seuss books should one obtain?

CLI: Get information Ubuntu releases

Print last inputted byte

Why is this tree refusing to shed its dead leaves?

What kind of footwear is suitable for walking in micro gravity environment?

Why didn’t Eve recognize the little cockroach as a living organism?

What (if any) is the reason to buy in small local stores?

How do you justify more code being written by following clean code practices?

Friend wants my recommendation but I don't want to

Does fire aspect on a sword, destroy mob drops?

Animating wave motion in water

Norwegian Refugee travel document

"Marked down as someone wanting to sell shares." What does that mean?

How do researchers send unsolicited emails asking for feedback on their works?

Did Nintendo change its mind about 68000 SNES?

How to test the sharpness of a knife?

Weird lines in Microsoft Word



Nested Dynamic SOQL Query



2019 Community Moderator ElectionSplit a single field into 2 columns for a VF pageJSON serialize is not handling aggregate results properly in Spring 13Getting error “System.LimitException: Too many query rows: 50001” what i do in this case.Best Approach/Way to Query Single SObject recordNeed help writing test Apex ClasseSearch by '.' causes non-selective query exceptionschema.getglobaldescribe needs test classNot able to escape quote in visualforce page?fault string: No such parameter param defined for the operation, please check the WSDL for the serviceUnable to query with cross-Object pick-list field filter on Custom Metadata SOQL










3















I am Trying to write a dynamic SOQL Query with a nested query.



@AuraEnabled
public static List<Books__c> filterRecords(String bookNumber, String PDCN, String Brand, String Type)
System.debug('bookNumber__c->'+bookNumber__c);
System.debug('PDCN->'+PDCN);
System.debug('Brand->'+Brand);

String query = 'SELECT Id,Content__c,ForecastWeekIndicator__c,Generic_PDCN__c,isExpired__c, '+
'BrandStandardName__c,DPForecast_BaseUnits__c,ForecastStatus__c,Generic_DateTime__c, '+
'Type__c,OperationalForecast_BaseUnits__c,PackageStandardName__c,bookNumber__c__c '+
'FROM Books__c WHERE Type__c =:Type '+
'AND Id NOT IN (SELECT Books__c FROM User_Specific_Books__c '+
'WHERE Books_Delete__c = TRUE AND User__c = : UserInfo.getUserId())';
if(string.isNotEmpty(bookNumber__c) && bookNumber__c!=null)
query = query + ' AND bookNumber__c__c =: bookNumber__c';

if(string.isNotEmpty(PDCN) && PDCN != null)
query = query + ' AND Generic_PDCN__c =: PDCN';

if(string.isNotEmpty(Brand) && Brand != null)
query = query + ' AND BrandStandardName__c =: Brand';

System.debug('query--->'+query);
List<Notification__c> lst;

try
lst = Database.query(query);
system.debug('List--->'+lst);

catch(Exception e)
system.debug(e.getMessage());


if(!lst.isEmpty())
return lst;

else
return null;

}


and, I am getting exception expecting a right parentheses, found '('.
Any explanation would be appreciated.










share|improve this question




























    3















    I am Trying to write a dynamic SOQL Query with a nested query.



    @AuraEnabled
    public static List<Books__c> filterRecords(String bookNumber, String PDCN, String Brand, String Type)
    System.debug('bookNumber__c->'+bookNumber__c);
    System.debug('PDCN->'+PDCN);
    System.debug('Brand->'+Brand);

    String query = 'SELECT Id,Content__c,ForecastWeekIndicator__c,Generic_PDCN__c,isExpired__c, '+
    'BrandStandardName__c,DPForecast_BaseUnits__c,ForecastStatus__c,Generic_DateTime__c, '+
    'Type__c,OperationalForecast_BaseUnits__c,PackageStandardName__c,bookNumber__c__c '+
    'FROM Books__c WHERE Type__c =:Type '+
    'AND Id NOT IN (SELECT Books__c FROM User_Specific_Books__c '+
    'WHERE Books_Delete__c = TRUE AND User__c = : UserInfo.getUserId())';
    if(string.isNotEmpty(bookNumber__c) && bookNumber__c!=null)
    query = query + ' AND bookNumber__c__c =: bookNumber__c';

    if(string.isNotEmpty(PDCN) && PDCN != null)
    query = query + ' AND Generic_PDCN__c =: PDCN';

    if(string.isNotEmpty(Brand) && Brand != null)
    query = query + ' AND BrandStandardName__c =: Brand';

    System.debug('query--->'+query);
    List<Notification__c> lst;

    try
    lst = Database.query(query);
    system.debug('List--->'+lst);

    catch(Exception e)
    system.debug(e.getMessage());


    if(!lst.isEmpty())
    return lst;

    else
    return null;

    }


    and, I am getting exception expecting a right parentheses, found '('.
    Any explanation would be appreciated.










    share|improve this question


























      3












      3








      3








      I am Trying to write a dynamic SOQL Query with a nested query.



      @AuraEnabled
      public static List<Books__c> filterRecords(String bookNumber, String PDCN, String Brand, String Type)
      System.debug('bookNumber__c->'+bookNumber__c);
      System.debug('PDCN->'+PDCN);
      System.debug('Brand->'+Brand);

      String query = 'SELECT Id,Content__c,ForecastWeekIndicator__c,Generic_PDCN__c,isExpired__c, '+
      'BrandStandardName__c,DPForecast_BaseUnits__c,ForecastStatus__c,Generic_DateTime__c, '+
      'Type__c,OperationalForecast_BaseUnits__c,PackageStandardName__c,bookNumber__c__c '+
      'FROM Books__c WHERE Type__c =:Type '+
      'AND Id NOT IN (SELECT Books__c FROM User_Specific_Books__c '+
      'WHERE Books_Delete__c = TRUE AND User__c = : UserInfo.getUserId())';
      if(string.isNotEmpty(bookNumber__c) && bookNumber__c!=null)
      query = query + ' AND bookNumber__c__c =: bookNumber__c';

      if(string.isNotEmpty(PDCN) && PDCN != null)
      query = query + ' AND Generic_PDCN__c =: PDCN';

      if(string.isNotEmpty(Brand) && Brand != null)
      query = query + ' AND BrandStandardName__c =: Brand';

      System.debug('query--->'+query);
      List<Notification__c> lst;

      try
      lst = Database.query(query);
      system.debug('List--->'+lst);

      catch(Exception e)
      system.debug(e.getMessage());


      if(!lst.isEmpty())
      return lst;

      else
      return null;

      }


      and, I am getting exception expecting a right parentheses, found '('.
      Any explanation would be appreciated.










      share|improve this question
















      I am Trying to write a dynamic SOQL Query with a nested query.



      @AuraEnabled
      public static List<Books__c> filterRecords(String bookNumber, String PDCN, String Brand, String Type)
      System.debug('bookNumber__c->'+bookNumber__c);
      System.debug('PDCN->'+PDCN);
      System.debug('Brand->'+Brand);

      String query = 'SELECT Id,Content__c,ForecastWeekIndicator__c,Generic_PDCN__c,isExpired__c, '+
      'BrandStandardName__c,DPForecast_BaseUnits__c,ForecastStatus__c,Generic_DateTime__c, '+
      'Type__c,OperationalForecast_BaseUnits__c,PackageStandardName__c,bookNumber__c__c '+
      'FROM Books__c WHERE Type__c =:Type '+
      'AND Id NOT IN (SELECT Books__c FROM User_Specific_Books__c '+
      'WHERE Books_Delete__c = TRUE AND User__c = : UserInfo.getUserId())';
      if(string.isNotEmpty(bookNumber__c) && bookNumber__c!=null)
      query = query + ' AND bookNumber__c__c =: bookNumber__c';

      if(string.isNotEmpty(PDCN) && PDCN != null)
      query = query + ' AND Generic_PDCN__c =: PDCN';

      if(string.isNotEmpty(Brand) && Brand != null)
      query = query + ' AND BrandStandardName__c =: Brand';

      System.debug('query--->'+query);
      List<Notification__c> lst;

      try
      lst = Database.query(query);
      system.debug('List--->'+lst);

      catch(Exception e)
      system.debug(e.getMessage());


      if(!lst.isEmpty())
      return lst;

      else
      return null;

      }


      and, I am getting exception expecting a right parentheses, found '('.
      Any explanation would be appreciated.







      apex soql






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited 8 hours ago









      Mark Pond

      18.5k13288




      18.5k13288










      asked 10 hours ago









      Thomas PeteThomas Pete

      457




      457




















          2 Answers
          2






          active

          oldest

          votes


















          6














          You can't use actual Apex in dynamic queries. Only "simple" variables are allowed. The problem is in the following line.



           'WHERE Books_Delete__c = TRUE AND User__c = : UserInfo.getUserId())';


          Assign the value to a variable first:



          Id userId = UserInfo.getUserId();
          ...
          'WHERE Books_Delete__c = TRUE AND User__c = :userId)';





          share|improve this answer























          • Worked! Thanks.

            – Thomas Pete
            10 hours ago











          • @ThomasPete you're welcome! P.S. String.isNotBlank also checks for null values, no need to check that separately in your code.

            – sfdcfox
            10 hours ago


















          5














          You can't use dot reference in dynamic query. Here is your problem:



          'WHERE Books_Delete__c = TRUE AND User__c = : UserInfo.getUserId())'


          You need to add some context variable to store the Id and then change it to:



          'WHERE Books_Delete__c = TRUE AND User__c = :runningUserId'





          share|improve this answer























          • Thanks, Adding a context variable did it!

            – Thomas Pete
            10 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%2f254321%2fnested-dynamic-soql-query%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









          6














          You can't use actual Apex in dynamic queries. Only "simple" variables are allowed. The problem is in the following line.



           'WHERE Books_Delete__c = TRUE AND User__c = : UserInfo.getUserId())';


          Assign the value to a variable first:



          Id userId = UserInfo.getUserId();
          ...
          'WHERE Books_Delete__c = TRUE AND User__c = :userId)';





          share|improve this answer























          • Worked! Thanks.

            – Thomas Pete
            10 hours ago











          • @ThomasPete you're welcome! P.S. String.isNotBlank also checks for null values, no need to check that separately in your code.

            – sfdcfox
            10 hours ago















          6














          You can't use actual Apex in dynamic queries. Only "simple" variables are allowed. The problem is in the following line.



           'WHERE Books_Delete__c = TRUE AND User__c = : UserInfo.getUserId())';


          Assign the value to a variable first:



          Id userId = UserInfo.getUserId();
          ...
          'WHERE Books_Delete__c = TRUE AND User__c = :userId)';





          share|improve this answer























          • Worked! Thanks.

            – Thomas Pete
            10 hours ago











          • @ThomasPete you're welcome! P.S. String.isNotBlank also checks for null values, no need to check that separately in your code.

            – sfdcfox
            10 hours ago













          6












          6








          6







          You can't use actual Apex in dynamic queries. Only "simple" variables are allowed. The problem is in the following line.



           'WHERE Books_Delete__c = TRUE AND User__c = : UserInfo.getUserId())';


          Assign the value to a variable first:



          Id userId = UserInfo.getUserId();
          ...
          'WHERE Books_Delete__c = TRUE AND User__c = :userId)';





          share|improve this answer













          You can't use actual Apex in dynamic queries. Only "simple" variables are allowed. The problem is in the following line.



           'WHERE Books_Delete__c = TRUE AND User__c = : UserInfo.getUserId())';


          Assign the value to a variable first:



          Id userId = UserInfo.getUserId();
          ...
          'WHERE Books_Delete__c = TRUE AND User__c = :userId)';






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 10 hours ago









          sfdcfoxsfdcfox

          259k12205449




          259k12205449












          • Worked! Thanks.

            – Thomas Pete
            10 hours ago











          • @ThomasPete you're welcome! P.S. String.isNotBlank also checks for null values, no need to check that separately in your code.

            – sfdcfox
            10 hours ago

















          • Worked! Thanks.

            – Thomas Pete
            10 hours ago











          • @ThomasPete you're welcome! P.S. String.isNotBlank also checks for null values, no need to check that separately in your code.

            – sfdcfox
            10 hours ago
















          Worked! Thanks.

          – Thomas Pete
          10 hours ago





          Worked! Thanks.

          – Thomas Pete
          10 hours ago













          @ThomasPete you're welcome! P.S. String.isNotBlank also checks for null values, no need to check that separately in your code.

          – sfdcfox
          10 hours ago





          @ThomasPete you're welcome! P.S. String.isNotBlank also checks for null values, no need to check that separately in your code.

          – sfdcfox
          10 hours ago













          5














          You can't use dot reference in dynamic query. Here is your problem:



          'WHERE Books_Delete__c = TRUE AND User__c = : UserInfo.getUserId())'


          You need to add some context variable to store the Id and then change it to:



          'WHERE Books_Delete__c = TRUE AND User__c = :runningUserId'





          share|improve this answer























          • Thanks, Adding a context variable did it!

            – Thomas Pete
            10 hours ago















          5














          You can't use dot reference in dynamic query. Here is your problem:



          'WHERE Books_Delete__c = TRUE AND User__c = : UserInfo.getUserId())'


          You need to add some context variable to store the Id and then change it to:



          'WHERE Books_Delete__c = TRUE AND User__c = :runningUserId'





          share|improve this answer























          • Thanks, Adding a context variable did it!

            – Thomas Pete
            10 hours ago













          5












          5








          5







          You can't use dot reference in dynamic query. Here is your problem:



          'WHERE Books_Delete__c = TRUE AND User__c = : UserInfo.getUserId())'


          You need to add some context variable to store the Id and then change it to:



          'WHERE Books_Delete__c = TRUE AND User__c = :runningUserId'





          share|improve this answer













          You can't use dot reference in dynamic query. Here is your problem:



          'WHERE Books_Delete__c = TRUE AND User__c = : UserInfo.getUserId())'


          You need to add some context variable to store the Id and then change it to:



          'WHERE Books_Delete__c = TRUE AND User__c = :runningUserId'






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered 10 hours ago









          Adrian LarsonAdrian Larson

          109k19115247




          109k19115247












          • Thanks, Adding a context variable did it!

            – Thomas Pete
            10 hours ago

















          • Thanks, Adding a context variable did it!

            – Thomas Pete
            10 hours ago
















          Thanks, Adding a context variable did it!

          – Thomas Pete
          10 hours ago





          Thanks, Adding a context variable did it!

          – Thomas Pete
          10 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%2f254321%2fnested-dynamic-soql-query%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 does Billy Russo acquire his 'Jigsaw' mask? Unicorn Meta Zoo #1: Why another podcast? Announcing the arrival of Valued Associate #679: Cesar Manara Favourite questions and answers from the 1st quarter of 2019Why does Bane wear the mask?Why does Kylo Ren wear a mask?Why did Captain America remove his mask while fighting Batroc the Leaper?How did the OA acquire her wisdom?Is Billy Breckenridge gay?How does Adrian Toomes hide his earnings from the IRS?What is the state of affairs on Nootka Sound by the end of season 1?How did Tia Dalma acquire Captain Barbossa's body?How is one “Deemed Worthy”, to acquire the Greatsword “Dawn”?How did Karen acquire the handgun?

          Личност Атрибути на личността | Литература и източници | НавигацияРаждането на личносттаредактиратередактирате

          A sequel to Domino's tragic life Why Christmas is for Friends Cold comfort at Charles' padSad farewell for Lady JanePS Most watched News videos