This was what needed to me rn. Wrapper class concept can’t be more clear than this. Thanks a lot.
@Mtripathi347 Жыл бұрын
Glad you liked it, feel free to ping me on linkdin for any questions :)
@mayanksharma-to2ni Жыл бұрын
Nicely Explained. A concept cleared of mine. Thanks
@kalpanagona7841 Жыл бұрын
Hi very nice explanation tq .
@Mtripathi347 Жыл бұрын
Keep watching Kalpana :)
@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 Жыл бұрын
Thanks Divya, Please ping me on linkdin, I Will surely provide :)
@manishamahapatra1677 Жыл бұрын
Hi Mohit..could you please help me with report type concept..i have little bit confusion on that.
@Mtripathi347 Жыл бұрын
feel free to call me at 9718872795
@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 Жыл бұрын
Sure, I Will surely add that.
@gauravkumar-kx6ik Жыл бұрын
Why you are writing acclist[0].contacts/opp/cases Instead acclist.contacts only
@yatin13708 ай бұрын
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.