How to open a specific list view or form screen in Now Mobile App using a QR codeIssue Users can view their defined list view or form screen by scanning a QR code generated from deep-linking. In classic SN mobile the QR code for the list view screen is directly generated by specifying the instance URL. In Native Apps the desired list view or form view screens can only be opened with the deep-link generator for the target QR code.ReleaseThe deeplinking feature is available from Rome onwards.Resolution1 - Define the desired list view screen in the instance. 2 - To generate the deeplink url for the list screen, go to scripts-background and run the below code:var deepLinkGenerator = new global.MobileDeepLinkGenerator('Agent').getScreenLink('<sys_id of list screen>')gs.info(deepLinkGenerator) 3 - Once the deeplink is generated, use any public domain QR code generator to get the QR code. 4 - Scan the QR code using QR code reader. This will open the list view of the specified sys_id directly.Related LinksThe getScreenLink method is one of the available ones, refer the following documentation for all available methods: Mobile deep link structure.