DBA Data[Home] [Help]

APPS.BIS_UTIL dependencies on WF_ENGINE

Line 721: wf_engine.CreateProcess(itemtype=>p_item_type

717: FROM dual;
718:
719: -- create a new workflow process
720: --
721: wf_engine.CreateProcess(itemtype=>p_item_type
722: ,itemkey =>l_wf_item_key
723: ,process =>p_wf_process);
724:
725: -- set the workflow attributes

Line 727: wf_engine.SetItemAttrDate(itemtype=>p_item_type

723: ,process =>p_wf_process);
724:
725: -- set the workflow attributes
726: --
727: wf_engine.SetItemAttrDate(itemtype=>p_item_type
728: ,itemkey =>l_wf_item_key
729: ,aname=>'L_EXCEPTION_DATE'
730: ,avalue=>p_exception_date);
731: wf_engine.SetItemAttrText(itemtype=>p_item_type

Line 731: wf_engine.SetItemAttrText(itemtype=>p_item_type

727: wf_engine.SetItemAttrDate(itemtype=>p_item_type
728: ,itemkey =>l_wf_item_key
729: ,aname=>'L_EXCEPTION_DATE'
730: ,avalue=>p_exception_date);
731: wf_engine.SetItemAttrText(itemtype=>p_item_type
732: ,itemkey =>l_wf_item_key
733: ,aname=>'L_SUBJECT'
734: ,avalue=>P_MSG_SUBJECT);
735: wf_engine.SetItemAttrText(itemtype=>p_item_type

Line 735: wf_engine.SetItemAttrText(itemtype=>p_item_type

731: wf_engine.SetItemAttrText(itemtype=>p_item_type
732: ,itemkey =>l_wf_item_key
733: ,aname=>'L_SUBJECT'
734: ,avalue=>P_MSG_SUBJECT);
735: wf_engine.SetItemAttrText(itemtype=>p_item_type
736: ,itemkey =>l_wf_item_key
737: ,aname=>'L_EXCEPTION_MESSAGE'
738: ,avalue=>p_EXCEPTION_MESSAGE);
739: wf_engine.SetItemAttrText(itemtype=>p_item_type

Line 739: wf_engine.SetItemAttrText(itemtype=>p_item_type

735: wf_engine.SetItemAttrText(itemtype=>p_item_type
736: ,itemkey =>l_wf_item_key
737: ,aname=>'L_EXCEPTION_MESSAGE'
738: ,avalue=>p_EXCEPTION_MESSAGE);
739: wf_engine.SetItemAttrText(itemtype=>p_item_type
740: ,itemkey =>l_wf_item_key
741: ,aname=>'L_ROLE_NAME'
742: ,avalue=>L_ROLE_NAME);
743:

Line 752: wf_engine.SetItemAttrText

748: -- Sets url for live report
749: --
750: IF p_live_report_url_tbl(p_live_report_url_tbl.FIRST) IS NOT NULL THEN
751:
752: wf_engine.SetItemAttrText
753: ( itemtype =>p_item_type
754: , itemkey =>l_wf_item_key
755: , aname =>'L_URL'
756: , avalue =>p_live_report_url_tbl(p_live_report_url_tbl.FIRST)

Line 772: wf_engine.SetItemAttrText

768: -- Sets url for cached report
769: --
770: IF p_cached_report_url_tbl(p_cached_report_url_tbl.FIRST) IS NOT NULL THEN
771:
772: wf_engine.SetItemAttrText
773: ( itemtype =>p_item_type
774: , itemkey =>l_wf_item_key
775: , aname =>'L_URL2'
776: , avalue =>p_cached_report_url_tbl(p_cached_report_url_tbl.FIRST)

Line 783: wf_engine.StartProcess(itemtype=>p_item_type

779: END IF;
780:
781: END LOOP;
782:
783: wf_engine.StartProcess(itemtype=>p_item_type
784: ,itemkey => l_wf_item_key);
785:
786: commit;
787: