public void jumpRef()
{
Args args;
MenuFunction menuFunction;
;
args = new Args();
menuFunction = new MenuFunction(menuitemDisplayStr(“FORM NAME”), MenuItemType::Display);
args = new Args(menuFunction.object());
args.caller(element);
menuFunction.run(args);
}
{
Args args;
MenuFunction menuFunction;
;
args = new Args();
menuFunction = new MenuFunction(menuitemDisplayStr(“FORM NAME”), MenuItemType::Display);
args = new Args(menuFunction.object());
args.caller(element);
menuFunction.run(args);
}
//Jumpref method - Go to that particular journal ID
public void jumpRef()
{
LedgerJournalTable _LedgerJournalTable;
Args args;
MenuFunction menuFunction;
;
breakpoint;
_LedgerJournalTable = LedgerJournalTable::find(this.text());
if(!_LedgerJournalTable)
return;
args = new Args();
args.caller(element);
args.record(_LedgerJournalTable);
menuFunction = new MenuFunction(menuitemdisplaystr(LedgerJournalTable),MenuItemType::Display);
menuFunction.run(args);
}
{
LedgerJournalTable _LedgerJournalTable;
Args args;
MenuFunction menuFunction;
;
breakpoint;
_LedgerJournalTable = LedgerJournalTable::find(this.text());
if(!_LedgerJournalTable)
return;
args = new Args();
args.caller(element);
args.record(_LedgerJournalTable);
menuFunction = new MenuFunction(menuitemdisplaystr(LedgerJournalTable),MenuItemType::Display);
menuFunction.run(args);
}
No comments:
Post a Comment