There are two fields on a particular form: geography and country. There can be multiple values for the geography field and the country field dialog box needs to display the countries within the geographies selected. Right now I am using @DBLookup to populate the list with the proper countries that are in a view, but this only works if one geography is selected. →
@If(IBMgeographies = “Latin America”;
@DbLookup(“”:“NoCache”;“”; “countryList”;“Latin America”;“countries”);
IBMgeographies = “North America”;
@DbLookup(“”:“NoCache”;“”; “countryList”;“North America”;“countries”);
IBMgeographies = “EMEA”;
@DbLookup(“”:“NoCache”;“”; “countryList”;“EMEA”;“countries”);
IBMgeographies = “Asia-Pacific”;
@DbLookup(“”:“NoCache”;“”; “countryList”;“Asia-Pacific”;“countries”);“”)
How do I dynamically generate the country list to represent multiple geographies selected? Is there a way to populate a choice list and then pass the choice list to a dialog box function?
Thanks in advance!