I need to know the allowed syntax for the StartupElementAction startup command for DynamicsAx 2012.
It is possible to start an AX client using a URL like
Dynamics://0/?DrillDown_12345
Where 0 refers to the database and 12345 is the Alert Event ID in the EventInbox table.
But I want to open a specific form rather than rely on an existing event. There are other options besides DrillDown, like ViewAlertRule and AutoRun
Each one of those options seems to have its specific syntax which is checked by some unknown process BEFORE the AX client is started. For example, if I use letters in the EventId, then the AX client never starts.
What I need to know is what pattern is validated for the StartupElementAction option so that I can call a specific menu item. I was expecting something like
Dynamics://0/?StartupElementAction_MenuItem%5cDisplay%5cCustTableListPage
But that is invalid so the AX client never starts.
Has anyone ever used this functionality?