I rolled out our Job Site Safety Analysis application for the pilot this morning and users are reporting that menu items are not available to them. The menu has the following code in the table for the items: { Name: "New", Icon: Icon.People, Image: 'Hazard-Wheel-Clean', Description: "Submit a new JSSA", ScreenToGoTo: 'Header Info Screen', ShowForThisRole: "Admin;Developer;Tester;Issuer;Approver;User" } On the splash screen I have a timer with the onTimerEnd Property set to load a bunch of data in a Concurrent function: If( fxConnectionStatus, Concurrent( ClearCollect( colAppUsersData, ShowColumns( AppUsers, AreaID, Email, HeadquartersID, ID, IsActive, MirrorID, Phone, RoleID, SortOrder, Title ) ); If( !fxIsInStudioMode, SaveData( colAppUsersData, "SavedAppUsersData" ) ), ClearCollect( colAppRolesData, ShowColumns( AppRoles, ID, IsActive, MirrorID, Title ) ); If( !fxIsInStudioMode, SaveData( colAppRolesData, "SavedAppRolesData" ) ) ... In the Menu item's DisplayMode Property I have it look up the user's role from a collection by ID, and then lookup the Title of the role from another collection and then see if the Title is in ThisItem.ShowForThisRole The user I spoke with said that all the menu items are disabled. Should I move the creation of the collections for colAppUsersData and colAppRolesData to the onStart or onVisible for the screen? Any help would be appreciated...