OK button not visible in Lookup Mode

ottobeottobe Member Posts: 67
edited 2014-12-18 in NAV Three Tier
I have to look up a customer no in a field in a page. I am using standard Customer List as Lookup form.
I can not set TableRelation in table to Customer table, so I will use code on the OnLookup trigger in the page.
But whatever I do, I do not get OK button in Customer List when I look up.
There is no properties set on Lookup in either table field or in page field.
( If I use IF pCustomerList.RUNMODAL = ACTION::OK THEN.. instead it works, but also when user escapes list)

Is there some restrictions on this i RTC?
pCustomerList.LOOKUPMODE(TRUE);
pCustomerList.EDITABLE(TRUE);   // Does'nt matter
IF pCustomerList.RUNMODAL = ACTION::LookupOK THEN
BEGIN
  pCustomerList.GETRECORD(Customer);
  "Bill-to Customer No. MP" := Customer."No.";
END;

//IF PAGE.RUNMODAL(0, Customer) = ACTION::LookupOK THEN  .. Do not work either

Comments

  • skullaskulla Member Posts: 140
    I have tried your scenario and its working fine in all cases, what is your NAV version?
  • ottobeottobe Member Posts: 67
    skulla wrote:
    I have tried your scenario and its working fine in all cases, what is your NAV version?

    NAV 2013R2. build: 38455 (versjon Update 13).
  • JoshuaiJoshuai Member Posts: 1
    If the page that you are making the LookUp from is not editable, then you will not be able to do a lookup, and because of that, you will neither have OK or Cancel Buttons on the form you are trying to open.
Sign In or Register to comment.