Thursday, January 24, 2019

Show the table browser in D365


I just wanted to share this tip I have picked up from Marc Hugelshofer in a forum.

In your browser you can open the table browser by entering an URL that looks something like this:

https://(the url of your ax instance)/Default.htm?mi=SysTableBrowser&prt=initial&cmp=USMF&tablename=CustGroup&limitednav=true 


the "prt=initial" and "limitednav=true" are optional and can probably be left out. So for example:

https://(the url of your ax instance)/Default.htm?mi=SysTableBrowser&cmp=USMF&tablename=CustGroup

prt is for (deprecated) partition functionality, and limitednav gets rid of filters and the navigation pane (which you might want, but probably not). On the other hand, you can also add lng=[language] to the URL if needed.

No comments:

Post a Comment

D365 Extensions: Extend the validateField Method on a Table

In this post I will going to show you, how to extend the validateField method on a table. As example I used the SalesLine, where I will ...