DBA Data[Home] [Help]

APPS.PO_WFDS_PUB dependencies on WF_ENGINE

Line 40: l_event_reason := wf_engine.GetItemAttrText (itemtype => itemtype,

36:
37: begin
38:
39: /* Get vendor_id, vendor_site_id etc., from workflow item attributes */
40: l_event_reason := wf_engine.GetItemAttrText (itemtype => itemtype,
41: itemkey => itemkey,
42: aname => 'ECX_TP_MOD_TYPE');
43:
44: if (l_event_reason = 'DELETE') then

Line 48: l_vendor_id := wf_engine.GetItemAttrNumber (itemtype => itemtype,

44: if (l_event_reason = 'DELETE') then
45: return; /* we don't want to do anything in case of delete */
46: end if;
47:
48: l_vendor_id := wf_engine.GetItemAttrNumber (itemtype => itemtype,
49: itemkey => itemkey,
50: aname => 'ECX_PARTY_ID');
51:
52: l_vendor_site_id := wf_engine.GetItemAttrNumber (itemtype => itemtype,

Line 52: l_vendor_site_id := wf_engine.GetItemAttrNumber (itemtype => itemtype,

48: l_vendor_id := wf_engine.GetItemAttrNumber (itemtype => itemtype,
49: itemkey => itemkey,
50: aname => 'ECX_PARTY_ID');
51:
52: l_vendor_site_id := wf_engine.GetItemAttrNumber (itemtype => itemtype,
53: itemkey => itemkey,
54: aname => 'ECX_PARTY_SITE_ID');
55:
56: l_party_type := wf_engine.GetItemAttrText (itemtype => itemtype,

Line 56: l_party_type := wf_engine.GetItemAttrText (itemtype => itemtype,

52: l_vendor_site_id := wf_engine.GetItemAttrNumber (itemtype => itemtype,
53: itemkey => itemkey,
54: aname => 'ECX_PARTY_SITE_ID');
55:
56: l_party_type := wf_engine.GetItemAttrText (itemtype => itemtype,
57: itemkey => itemkey,
58: aname => 'ECX_PARTY_TYPE');
59:
60: l_email := wf_engine.GetItemAttrText (itemtype => itemtype,

Line 60: l_email := wf_engine.GetItemAttrText (itemtype => itemtype,

56: l_party_type := wf_engine.GetItemAttrText (itemtype => itemtype,
57: itemkey => itemkey,
58: aname => 'ECX_PARTY_TYPE');
59:
60: l_email := wf_engine.GetItemAttrText (itemtype => itemtype,
61: itemkey => itemkey,
62: aname => 'ECX_COMPANY_ADMIN_EMAIL');
63:
64: /* Get all the necessary data from po_vendors_all and po_vendors */