Step by step: end to end solution to add a new step in WHMS mobile app
Wassup guys?!!! I am back with a brand new topic for WHMS: how to add a new screen in your WHMS mobile app, from the scratch. You might be wondering, what is new in it: we already have one in place from Microsoft, that aptly explains the process to add a new screen to mobile app: https://learn.microsoft.com/en-us/dynamics365/supply-chain/supply-chain-dev/process-guide-framework The above solution tells you to create a controller class, that contains a method called: initializeNavigationRoute , that contains the sequence of the step of classes/navigatiion for your screens: protected ProcessGuideNavigationRoute initializeNavigationRoute ( ) { ProcessGuideNavigationRoute navigationRoute = new ProcessGuideNavigationRoute(); navigationRoute.addFollowingStep(classStr(ProdProcessGuidePromptProductionIdStep), classStr(ProdProcessGuideConfirmProductionOrderStep)); navigationRoute.addFollowingStep(classStr(ProdProcessGuideConfirmProductionOrderStep...