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

แชร์
ฝัง
  • เผยแพร่เมื่อ 30 ก.ค. 2024
  • In this Video, I tried to explain what is a wrapper class and when to use it.

ความคิดเห็น • 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 :)

  • @kalpanagona7841
    @kalpanagona7841 ปีที่แล้ว

    Hi very nice explanation tq .

  • @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 :)

  • @manishamahapatra1677
    @manishamahapatra1677 11 หลายเดือนก่อน +1

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

    • @Mtripathi347
      @Mtripathi347  10 หลายเดือนก่อน

      feel free to call me at 9718872795

  • @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 )

    • @Mtripathi347
      @Mtripathi347  ปีที่แล้ว

      Sure, I Will surely add that.

  • @gauravkumar-kx6ik
    @gauravkumar-kx6ik ปีที่แล้ว

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

    • @yatin1370
      @yatin1370 5 หลายเดือนก่อน

      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.