I am trying to add a ListFolder to the Main menu of the Mobile app. All I am doing is trying to follow the directions in the attached 2019-R1-Mobile-Framework-Dev-Guide as published by Acumatica.
It does not work. What is very odd, is that I can add all of the HubFolder’s I want. That works perfectly. But I can NOT add a ListFolder.
Does anyone know why that would happen?
There are no errors. It just does not work.
Here are the published example directions from Acumatica.
Example: Adding a Screen to a Folder
Adding a screen to a folder consists of two actions:
• Adding a new screen to the mobile site map, as described in To Add a Screen to the Mobile Site
Map
• Adding the new screen shortcut to the main menu.
In this example, you will add a shortcut of the Controller screen to the Dashboards folder of the main
menu. Copy the code below to the Commands area of the Update: MENU page in the Customization
Project Editor.
update sitemap {
add folder "Folder_0" {
displayName = "Dashboards"
icon = "system://Folder"
add item "DB000015" {
displayName = "Controller"
icon = "system://Graph1"
}
| Configuring the Mobile Site Map | 14
}
}