Options

Selecting Pop up modal dialogs - Testing

DevoNAVDevoNAV Member Posts: 1
Hi all.

I am page testing the Sales Order Post method in NAV 2017. I am having trouble activating the pop up modal dialogs.

1. When I create a new Item, the "Select an item template" dialog appears, prompting me to select a template. I need to know how to do that in C/AL.
2. When I post the Sales Order, the "Ship - Invoice - Ship and Invoice" dialog appears, same as above.

Really the problem is how to access the dialogs themselves. I know I can use the <testpage>.OK.INVOKE method, but How do I get access to the dialog?

Any help would be greatly appreciated as I can't find much documentation on this

Answers

  • Options
    Jan_VeenendaalJan_Veenendaal Member Posts: 206
    edited 2017-03-02
    Either use PAGE.RUNMODAL (for the Select an Item Template style, see function NewItemFromTemplate in table 1301)
    Or use the STRMENU function (for the Ship/Invoice/Ship and Invoice style, see function Code in codeunit 81)

    Edit - oops, I see you are running tests. Can't help you with that.
    Jan Veenendaal
  • Options
    vnhackvnhack Member Posts: 9
    Page 684 Date-Time Dialog

    Date0 Date
    Time0 Time

    SetDateTime(DateTime : DateTime)
    Date0 := DT2DATE(DateTime);
    Time0 := DT2TIME(DateTime);

    GetDateTime() : DateTime
    EXIT(CREATEDATETIME(Date0,Time0));

Sign In or Register to comment.