I realized today that in the web client, none of my coded lookups or drilldowns are working.
I have the below code, which should open the Item Ledger Entries, and does fine in the RTC, but nothing happens in the web client. Does the web client only do lookups/drilldowns from properties?
ShowILE()
ILE.SETRANGE("Item Category Code",ModelNo);
ILE.SETRANGE("Location Code",Code);
ILE.SETFILTER("Remaining Quantity",'>0');
CLEAR(ILEPage);
ILEPage.LOOKUPMODE(TRUE);
ILEPage.SETTABLEVIEW(ILE);
IF ILEPage.RUNMODAL = ACTION::LookupOK THEN;
Bruce Anderson0
Answers
Gunnar Gestsson
Microsoft Certified IT Professional
Dynamics NAV MVP
http://www.dynamics.is
http://Objects4NAV.com
It's a huge shame, as I only just realized this limitation after making a new inventory checking screen that depends on drill downs and the target is for our sales team on the road. Not something that a rollup add's functionality for?
Bruce Anderson
http://dynamicsnav4u.wordpress.com/2013 ... mitations/
Hopefully a feature in the future.
Bruce Anderson