1. I do not think I fully understand what you are asking. I probably have not tried this, so if you could explain the method a little more I could see if that fixes it.
2. I have checked to make sure I am not resetting the variables anywhere.
To give you a little more scope of the issue, this is my entire 'OnStart' code:
Set(ProjectTypesAllowed, ["", "Technology","Production Improvement - Maintenance & Repair","Production Improvement - Application & Operation","MEM Services [SAT,MSR,GAT,etc]","HSEC [Health,Safety,Environment,Community]","Cost Reduction - Maintenance & Repair","Cost Reduction - Application & Operation","Aftermarket CI - Undercarriage","Aftermarket CI - GET","Aftermarket CI - Hydraulics","Aftermarket CI - Parts Ordering","Aftermarket CI - Powertrain","Aftermarket CI - Demand Planning","Aftermarket CI - Upgrades & Retrofits","Command","Command with Cat SPM"]);
Set(MineAllowed, ["","Surface","Surface & Underground", "Underground"]);
Set(RegionsAllowed, ["","Australia Asia & Magnolia","Canada","China & India","Europe & CIS","Northern Africa & Middle East","Northern Latin America","Southern Africa","Southern Latin America","USA"]);
Set(AAMSubRegions, ["","Asia","Australia","Mongolia"]);
Set(CanadaSubRegions, [""]);
Set(CISubRegions, [""]);
Set(EuropeCISSubRegions, [""]);
Set(NAMESubRegions, [""]);
Set(NLASubRegions, ["","Colombia", "Mexico", "Peru", "Suriname"]);
Set(SouthernAfricaSubRegions, [""]);
Set(SLASubRegions, ["","Brazil", "Chile"]);
Set(USASubRegions, [""]);
Set(FunctionsAllowed, ["", "Other", "Project Lead", "Resource", "Sponsor"]);
Set(AdminToolAllowed, ["","Admin Message", "Project Types", "Mine Types", "Commodity Types", "Function Types", "Dealer Region", "Sub Region", "Dealer Location", "Customer", "Customer Site", "Account Manager", "Project Mgr by Employee", "Customer Project Manager", "Dealer Project Manager"]);
The last variable, 'AdminToolAllowed' is the only variable that is working. I would like to keep them global variables because I want the user to be able to add and remove things from the list in one of my Pages on my app. I do not receive any errors for the code above, but the variables are not being set.