
Announcements
Hello,
Would it be possible to link directly to sales order inside NAV?
For example in a gallery with listed sales order would it be possible to add a direct link to each sales order to re-redirect to NAV?
Thank you
Hi @Anonymous ,
Could you please share a bit more about your scenario?
Do you want to list all available Sales orders within a Gallery, then add a direct link to each Gallery Item, click it to redirect to NAV?
Based on the needs that you mentioned, I think the Launch function in PowerApps could achieve you needs. Firstly, you need to generate a Sales Order Web Access URL based on the following article:
Then within your app, add a ">" icon in your Gallery, set the OnSelect property of the ">" icon to following example formula:
Launch(
"http://MyWebServer:8080/nav_server_instance/?company=CRONUS%20International%20Ltd.&page=9305&filter='Order ID' IS '" & ThisItem.'Order ID' & "'"
)
Please consider take a try with above solution, check if the issue is solved.
Best regards,