No lookup or drilldown by code in web client? (NAV2013)

asmilie2basmilie2b Member Posts: 122
edited 2014-04-01 in NAV Three Tier
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 Anderson

Answers

  • thegunzothegunzo Member Posts: 274
    Will it work in AssistEdit ?
    ________________________________
    Gunnar Gestsson
    Microsoft Certified IT Professional
    Dynamics NAV MVP
    http://www.dynamics.is
    http://Objects4NAV.com
  • asmilie2basmilie2b Member Posts: 122
    Thanks for the reply. Nno, not if I call it from Assistedit either.
    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
  • asmilie2basmilie2b Member Posts: 122
    Noted that here, it does in fact appear to be a limitation of the client in 2013.

    http://dynamicsnav4u.wordpress.com/2013 ... mitations/

    Hopefully a feature in the future.

    Bruce Anderson
Sign In or Register to comment.