Wrapper Classes in Salesforce || LIVE DEMO || Salesforce developer Interview Questions

Поділитися
Вставка
  • Опубліковано 17 жов 2024

КОМЕНТАРІ • 13

  • @mayanksharma-to2ni
    @mayanksharma-to2ni Рік тому

    Nicely Explained.
    A concept cleared of mine.
    Thanks

  • @kashmirtokanyakumari8
    @kashmirtokanyakumari8 Рік тому

    This was what needed to me rn. Wrapper class concept can’t be more clear than this. Thanks a lot.

    • @Mtripathi347
      @Mtripathi347  Рік тому +1

      Glad you liked it, feel free to ping me on linkdin for any questions :)

  • @manishamahapatra1677
    @manishamahapatra1677 Рік тому +1

    Hi Mohit..could you please help me with report type concept..i have little bit confusion on that.

  • @divyanaredla2169
    @divyanaredla2169 Рік тому

    Hi nice explanation..really useful ..
    Please provide sample code for how to map json format field with salesforce api fields...
    And how Salesforce selectively send few parameters of the response rather than all response to the third party by using wrapper class?

    • @Mtripathi347
      @Mtripathi347  Рік тому

      Thanks Divya, Please ping me on linkdin, I Will surely provide :)

  • @kalpanagona7841
    @kalpanagona7841 Рік тому

    Hi very nice explanation tq .

  • @ApexProgramingBasics
    @ApexProgramingBasics Рік тому

    very nice can you please send me the sample code for how to do mapping with the (External Api json format fields with salesforce Api fileds )

  • @gauravkumar-kx6ik
    @gauravkumar-kx6ik Рік тому

    Why you are writing acclist[0].contacts/opp/cases
    Instead acclist.contacts only

    • @yatin1370
      @yatin1370 7 місяців тому

      The soql written returned a list of accounts. To get the results of a subquery i.e. to get contacts related to a specific account (as it is parent to child soql), he picked up the first account in the list at 0th index with acclist[0] , then accessed the related contacts to that account with dot operator and then using the 'contacts' child relationship name.
      You can write acclist.contacts if the query was assigned to a single Account variable along with LIMIT 1 clause.