/***************************************************
Created Date: 19 Jul 2013
Created By: Jimmy Xie (Tectura)
Helpdesk Ticket#: TB001613 - Accounts Payable Positive Pay
Description of Behavior: Pick class method
Expected Input:
Expected Output:
***************************************************/
public static SysMethodName pickClassMethod_DNT(classId _classId)
{
    #define.08 ('08')
    Object  formRun;
    Args    args;
    ;
    args = new Args(formstr(SysPick));
    args.parm(#08+int2str(_classId));
    formRun = classfactory.formRunClass(args);
    formRun.init();
    formRun.run();
    formRun.wait();
    if (formRun.selection())
        return formRun.selection();
    return '';
}

 

相关文章:

  • 2021-09-05
  • 2021-10-27
  • 2021-12-22
  • 2021-11-06
  • 2022-01-27
  • 2021-08-12
  • 2021-08-10
  • 2021-09-24
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-30
  • 2022-12-23
  • 2021-07-18
  • 2021-08-02
  • 2021-07-17
相关资源
相似解决方案