function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Vaibhab ShahVaibhab Shah 

List<list<map<string,string>>> values

Hi, 
I have a list of list of map.
List<list<map<string,string>>> customer

How to the retrieve the values of the map in Apex?
Thanks in adv.

Rgds,
Vai
 
Leo10Leo10
Hi Vaibhab,
You can use the Comparable Interface.
plz refer this link https://stackoverflow.com/questions/38334422/how-to-sort-listmapstring-string

Regards,
Leo
Vaibhab ShahVaibhab Shah
Hi Leo,

This link is telling something different. I have a list of list of map. signature as below

public static void insertData(List<List<Map<String,String>>> values) {

}

I want to loop through the values and insert it to one of the sobjects.

Thanks,
Vai
Leo10Leo10
Hi Vaibhab,

Can I get the sample values for tj\he list that you are using

Regards,
Leo