How to create dialog in Dynamics AX 2012 Through X++


How to create dialog in Dynamics AX 2012 Through X++



    Dialog                      dialog = new Dialog("dialog caption");
    DialogField              fldInventJournalId;
    InventJournalId        inventJournalId;
    boolean                     result;
 
 
 
    fldInventJournalId  = dialog.addField(extendedTypeStr(InventJournalId));
 
    result = dialog.run();
 
    if(result)
    {
        inventJournalId     = fldInventJournalId.value();
     
        info(inventJournalId);
    }

Comments

  1. The Creative: A visionary SMM services provider, he designs scroll-stopping visuals and compelling copy. His creativity captures attention and turns passive viewers into active followers.
    best smm services​

    ReplyDelete

Post a Comment

Popular posts from this blog

How to override lookupReference for reference group in Dynamics Ax 2012 using X++

How to Create Transfer Journal in Dynamics AX 2012 Through X++

How to loop through enum in dynamics ax 2012 using x++