DBA Data[Home] [Help]

APPS.IGF_AW_FISAP_PKG dependencies on WF_ENGINE

Line 824: ln_batch_id := wf_engine.getitemattrtext ( itemtype, itemkey, 'BATCH_ID_PARAMETER');

820: lv_cal_type VARCHAR2(30);
821: param VARCHAR2(1000);
822: loc NUMBER(15);
823: BEGIN
824: ln_batch_id := wf_engine.getitemattrtext ( itemtype, itemkey, 'BATCH_ID_PARAMETER');
825: param := wf_engine.getitemattrtext ( itemtype, itemkey, 'FISAP_DATA');
826:
827: loc := instr(param, ':');
828: lv_cal_type := substr(param, 1, loc - 1);

Line 825: param := wf_engine.getitemattrtext ( itemtype, itemkey, 'FISAP_DATA');

821: param VARCHAR2(1000);
822: loc NUMBER(15);
823: BEGIN
824: ln_batch_id := wf_engine.getitemattrtext ( itemtype, itemkey, 'BATCH_ID_PARAMETER');
825: param := wf_engine.getitemattrtext ( itemtype, itemkey, 'FISAP_DATA');
826:
827: loc := instr(param, ':');
828: lv_cal_type := substr(param, 1, loc - 1);
829: param := substr(param, loc + 1);

Line 833: wf_engine.SetItemAttrText ( itemtype => itemtype,

829: param := substr(param, loc + 1);
830: ln_seq_number := param;
831:
832: IF (funcmode = 'RUN') THEN
833: wf_engine.SetItemAttrText ( itemtype => itemtype,
834: itemkey => itemkey,
835: aname => 'FISAP_DATA',
836: avalue => 'PLSQLCLOB:igf_aw_fisap_pkg.generate_partII/'|| ln_batch_id || ':' || lv_cal_type || ':' || ln_seq_number);
837: resultout:= 'COMPLETE:';