DBA Data[Home] [Help]

APPS.AZW_UTIL dependencies on WF_ENGINE

Line 195: prod_name := wf_engine.GetActivityAttrText(itemtype, itemkey,actid, 'AZW_IA_WFPROD');

191: begin
192: yes_result := 'COMPLETE:Y';
193: no_result := 'COMPLETE:N';
194:
195: prod_name := wf_engine.GetActivityAttrText(itemtype, itemkey,actid, 'AZW_IA_WFPROD');
196: tmp_result := CheckProduct(prod_name);
197: if (tmp_result = 'TRUE') then
198: result := yes_result;
199: else

Line 377: task_ctxt_id_txt := wf_engine.GetItemAttrText(itemtype, itemkey,

373: BEGIN
374: result := 'TRUE';
375:
376: BEGIN
377: task_ctxt_id_txt := wf_engine.GetItemAttrText(itemtype, itemkey,
378: 'AZW_IA_CTXT_ID');
379: task_ctxt_id := to_number(task_ctxt_id_txt);
380: EXCEPTION
381: WHEN OTHERS THEN

Line 386: context_name := wf_engine.GetItemAttrText(itemtype, itemkey, 'AZW_IA_CTXTNAME');

382: task_ctxt_id := null;
383: END;
384:
385: --Get the context type and context name from workflow process
386: context_name := wf_engine.GetItemAttrText(itemtype, itemkey, 'AZW_IA_CTXTNAME');
387: --context_type := wf_engine.GetItemAttrText(itemtype, itemkey, 'AZW_IA_CTXTYP');
388:
389: select root_activity into act_name
390: from wf_items

Line 387: --context_type := wf_engine.GetItemAttrText(itemtype, itemkey, 'AZW_IA_CTXTYP');

383: END;
384:
385: --Get the context type and context name from workflow process
386: context_name := wf_engine.GetItemAttrText(itemtype, itemkey, 'AZW_IA_CTXTNAME');
387: --context_type := wf_engine.GetItemAttrText(itemtype, itemkey, 'AZW_IA_CTXTYP');
388:
389: select root_activity into act_name
390: from wf_items
391: where item_type = itemtype

Line 554: wf_engine.handleerror(itemtype, itemkey,pre_process_name||':'|| pre_act_label, 'RETRY');

550: where wn.notification_id = pre_notification_id;
551:
552: --Cancel the current message
553: --Deliver the previous message
554: wf_engine.handleerror(itemtype, itemkey,pre_process_name||':'|| pre_act_label, 'RETRY');
555:
556: --Store the comment into the new notification
557: close wf_act_c;
558: open wf_act_c;