Skip to main content

Notifications

URL Parameters And Values

The new Microsoft Dynamics AX runs in the browser and parts of the navigation through the UI are done via URL parameters. Since I wasn’t able to find a list of them in the official documentation (like the Help Wiki here’s a collection from my knowing.

Syntax

The first parameter gets prefixed with a question mark, all the others with ampersands.
As an example using the default local virtual machine URL (https://usnconeboxax1aos.cloud.onebox.dynamics.com/) you get an address looking like

https://usnconeboxax1aos.cloud.onebox.dynamics.com/?FirstParameter=FirstValue&SecondParameter=SecondValue&ThirdParameter=ThirdValue

Parameters / Values

This list surely is not complete but I will try to update it in future when I get to know new parameters. If you know any missing please let me know.

&prt=PartitionId
The use of prt allows you to pass the partition you want to use. You need to provide the partition Id – not the RecId. for example &prt=initial.

&cmp=CompanyId
cmp can be used to navigate to a certain company directly. Example: &cmp=USMF

&f=FormName
Use the parameter f to pass the name of the form you want to open directly. AX translates the call to a menu item and updates the URL automatically.

&mi=MenuItemName
mi is short for MenuItem and lets you open a menu item.

&debug=true
&debug=vs%2CconfirmExit
The debug parameter has different values that can be used. true and false do work. Enabling the debugging mode with the parameter leads to the display of the time that was consumed for opening a form, for example. If you use vs%2CconfirmExit there is an additional confirmation prompt when you try to close the page.

AX7 Debug Confirmation Prompt

&activityid=12345678-67dc-0003-b5f3-a9ab1337d101
The activity Id (parameter activityid) is used for internal purposes. I guess among other things it is used for logging. You might be asked for it when troubleshooting is needed.

&lng=LanguageId
I was very happy to find out about that one because we’re developing in both English and German. You do not need to open your user options and change the language there, save the record and refresh the browser necessarily. You can also use the parameter lng to switch the language by simply adding e. g. &lng=en-us or &lng=de manually to the current address.

&limitednav=true
This parameter (limitednav with fixed value true) leads to the client not showing the menu / navigation to the user and therefore holding them in the current form (afaik this is used with the Cloud POS).

Combined

There are parameters that need to get combined with others to work correctly.

&mi=SysClassRunner&cls=ClassName
If you use the menu item SysClassRunner (that enables you to run a class directly) you need to provide the (runnable) classes name by using the parameter cls.

&mi=output%3AReportName
If you want to run a report directly you can use a concatenated value as menu item. Use output%3AReportName to run a report directly.

Comments

*This post is locked for comments