Task 6:  
To display data from the data set in the Flash map, you need to map the territory values in the data set to the internal ID values used by World Map.
1  
2  
3  
1  
2  
3  
4  
Each case statement replaces a territory value with the corresponding internal ID used by the map.
switch(row["TERRITORY"]) {
  case "EMEA":
    name = "EU";
    break;
  case "APAC":
    name = "AS";
    break;
  case "Japan":
    name = "AS";
    break;
  case "NA":
    name = "NA";
    break;
}
5  
4  
Choose Preview Results. The data set returns the data shown in Figure 18-16. The Territory_ID values match Internal Id values in World Map.
Figure 18-16  
5  

Additional Links:

Copyright Actuate Corporation 2012