Is it still possible to run objects directly off of the object designer the way it used to be prior to NAV2015? Now the RTC fires up whenever I want to do something as mundane as browse a table. It is too time consuming now.
This was also the case with 2013 (and R2) as the Development Environment (C/SIDE) is no code run time any more. All code is executed by the Service Tier.
Leave the RTC open, it's faster then. But not as fast as we were used to... By far.
Thanks, but that doesn't help, because NAV would open another Role Center instance for every new object I run regardless. So for example, I run the "Tracking Specification" table, NAV will open 2 windows in succession - the Role Center and the table view. Then I run the "Reservation Entry" table, NAV will yet again open another 2 windows - another Role Center instance and the table view. It fills up my taskbar very quickly. Why does it open a new Role Center instance everytime? Is there a way to change that behavior? It is just so cumbersome now, I can't imagine this as an improvement.
It's not supposed to start a new role center, assuming you are still in the same database. As long as you have a role center instance running, each table that you run should start within the context of the same role center.
Something is not right if you get a new one each time you run a table, although I don't know what is wrong.
I have discovered that often when it opens up a new RTC it is usually because the first RTC is waiting for user input or is locked in a certain window mode (Zooming).
Otherwise you can create your own table viewer in RTC by making a listpage on the virtual table object.
Add an action that has the following code:
CASE Type OF
Type::Page : PAGE.RUN(ID);
Type::Codeunit : CODEUNIT.RUN(ID);
Type::Report : REPORT.RUN(ID);
Type::XMLport : XMLPORT.RUN(ID);
Type::Table : HYPERLINK(GETURL(CLIENTTYPE::Current,COMPANYNAME,OBJECTTYPE::Table,ID)); //Tip from Gunnar (?)
Type::Query : HYPERLINK(GETURL(CLIENTTYPE::Current,COMPANYNAME,OBJECTTYPE::Query,ID));
END;
However, this doesn't work on ClickOnce clients.
Hello IT, have you tried to turn it off and on?
Have you checked the cables?
Have you released the filters? http://www.navfreak.com
Comments
http://www.epimatic.com
Never stop learning
Van Vugt's dynamiXs
Dutch Dynamics Community
Christer in Stockholm, Sweden
No PM,please use the forum. || May the <SOLVED>-attribute be in your title!
Thanks, but that doesn't help, because NAV would open another Role Center instance for every new object I run regardless. So for example, I run the "Tracking Specification" table, NAV will open 2 windows in succession - the Role Center and the table view. Then I run the "Reservation Entry" table, NAV will yet again open another 2 windows - another Role Center instance and the table view. It fills up my taskbar very quickly. Why does it open a new Role Center instance everytime? Is there a way to change that behavior? It is just so cumbersome now, I can't imagine this as an improvement.
Something is not right if you get a new one each time you run a table, although I don't know what is wrong.
RIS Plus, LLC
Otherwise you can create your own table viewer in RTC by making a listpage on the virtual table object.
Add an action that has the following code:
However, this doesn't work on ClickOnce clients.
Have you checked the cables?
Have you released the filters?
http://www.navfreak.com