Salesforce Scenario Based Questions | 0 - 3 Years Experience | Freshers |

Поделиться
HTML-код
  • Опубликовано: 3 дек 2024

Комментарии • 21

  • @gopidevatha3984
    @gopidevatha3984 14 дней назад +3

    Hi sir Because of your interview preparation playlist I got offer with 70% hike having 3YOE in short span of time able to revise all my past work topics in your videos.❤❤❤❤❤❤ Thank you very much for the content.

    • @TechJourneyWithAnkit
      @TechJourneyWithAnkit  13 дней назад

      Congratulations😊 Best of luck for your future journey

    • @awesomekj5812
      @awesomekj5812 12 дней назад

      70% hike ...lolz ...that means you were underpaid to start off with.

    • @gopidevatha3984
      @gopidevatha3984 12 дней назад

      @@awesomekj5812 still looking for the opportunities, will see if I get more then my current offer, Thank you

  • @Mucherlasivaji-z4y
    @Mucherlasivaji-z4y 14 дней назад

    Really helpful this video ,tqqq Ankit. some scenarios i never encountered .

  • @SandeepKumar-n1r7s
    @SandeepKumar-n1r7s 14 дней назад

    For Field Level Security,we can implement SOQL Query in User Context as follows
    List acc = [SELECT Id,Custom_field__c FROM Account WITH USER_MODE];

  • @awesomekj5812
    @awesomekj5812 12 дней назад

    What would be the use case where we need LWC to invoke the batch class ?
    I feel like that inherited sharing APEX requires a separate video on how it will look like in real.
    I looked at couple of order of execution diagrams but they don't mention about these queueable / batch runs ---> under which category on diagrams will they fall in ?

    • @TechJourneyWithAnkit
      @TechJourneyWithAnkit  12 дней назад +1

      1. To submit bulk processing
      2. Will plan for it
      3. Look for last step in order of execution

    • @awesomekj5812
      @awesomekj5812 12 дней назад

      @@TechJourneyWithAnkit For # 3 , you mean logic automation thats runs after data is finally committed to database ?

    • @TechJourneyWithAnkit
      @TechJourneyWithAnkit  День назад

      @@awesomekj5812 yes all aysnc operations like sending email , async apex and flows

  • @SolitudeStar2226
    @SolitudeStar2226 День назад

    Since class B explicitly having without sharing keyword, it will run in the system context. Class A will not override the explicitly used keyword.

    • @SolitudeStar2226
      @SolitudeStar2226 День назад

      I think we cannot chain the wire method directly. But if we use refresh apex we can do so.
      I listened to your solution after being given an answer but that is not chaining i guess because whenever system load all wire method called but yes because of properties change the other wire method called

    • @TechJourneyWithAnkit
      @TechJourneyWithAnkit  День назад

      @@SolitudeStar2226 yes, however, on the first call, your parameter will be blank, so the wire method will not return anything (you need to take care in your apex class for this), and when the parameter value changes, then again the wire decorator will be called.

  • @trippy_angel08
    @trippy_angel08 9 дней назад

    SOQL query
    1)
    SELECT id ,Max(Amount) from Opportunity
    2)
    SELECT Id, Name, CreatedDate
    FROM Account
    WHERE CreatedDate = YESTERDAY

  • @padavalavenudurgaprasad834
    @padavalavenudurgaprasad834 14 дней назад

    1.SELECT id,amount from opportunity Order By amount desc LIMIT 1
    2.SELECT id,Name,createdDate from Account WHERE createdDate = YESTERDAY