Easiest way to get all available country mappings
function getCountryMap(){
return query.runSuiteQL({query: 'select Nationality, uniquekey, name, id from country order by name'}).asMappedResults();
}
Easiest way to get all available country mappings
function getCountryMap(){
return query.runSuiteQL({query: 'select Nationality, uniquekey, name, id from country order by name'}).asMappedResults();
}
DK