DBA Data[Home] [Help]

APPS.IGF_SL_DL_PNOTE_ACK dependencies on WF_ENGINE

Line 608: wf_engine.CreateProcess

604: OPEN c_seq_num;
605: FETCH c_seq_num INTO l_seq_no;
606: CLOSE c_seq_num;
607:
608: wf_engine.CreateProcess
609: (itemtype => 'DLPNA',
610: itemkey => l_seq_no,
611: process => 'WF_DLPNOTE_REJ');
612:

Line 614: wf_engine.SetItemAttrNumber('DLPNA',

610: itemkey => l_seq_no,
611: process => 'WF_DLPNOTE_REJ');
612:
613:
614: wf_engine.SetItemAttrNumber('DLPNA',
615: l_seq_no,
616: 'VDBTHID',
617: l_dbth_id);
618:

Line 619: wf_engine.SetItemAttrNumber

615: l_seq_no,
616: 'VDBTHID',
617: l_dbth_id);
618:
619: wf_engine.SetItemAttrNumber
620: ('DLPNA',
621: l_seq_no,
622: 'VLOANID',
623: lcur_loanid.loan_id);

Line 625: wf_engine.StartProcess

621: l_seq_no,
622: 'VLOANID',
623: lcur_loanid.loan_id);
624:
625: wf_engine.StartProcess
626: (itemtype => 'DLPNA',
627: itemkey =>l_seq_no );
628:
629: END IF;