DBA Data[Home] [Help]

APPS.PO_WF_PO_PRICAT_UPDATE dependencies on WF_ENGINE

Line 63: if (funcmode <> wf_engine.eng_run) then

59: END IF;
60:
61: -- Do nothing in cancel or timeout mode
62:
63: if (funcmode <> wf_engine.eng_run) then
64:
65: result := wf_engine.eng_null;
66: return;
67:

Line 65: result := wf_engine.eng_null;

61: -- Do nothing in cancel or timeout mode
62:
63: if (funcmode <> wf_engine.eng_run) then
64:
65: result := wf_engine.eng_null;
66: return;
67:
68: end if;
69:

Line 70: x_interface_header_id := wf_engine.GetItemAttrNumber ( itemtype => itemtype,

66: return;
67:
68: end if;
69:
70: x_interface_header_id := wf_engine.GetItemAttrNumber ( itemtype => itemtype,
71: itemkey => itemkey,
72: aname => 'INTERFACE_HEADER_ID');
73:
74: x_batch_id := wf_engine.GetItemAttrNumber ( itemtype => itemtype,

Line 74: x_batch_id := wf_engine.GetItemAttrNumber ( itemtype => itemtype,

70: x_interface_header_id := wf_engine.GetItemAttrNumber ( itemtype => itemtype,
71: itemkey => itemkey,
72: aname => 'INTERFACE_HEADER_ID');
73:
74: x_batch_id := wf_engine.GetItemAttrNumber ( itemtype => itemtype,
75: itemkey => itemkey,
76: aname => 'BATCH_ID');
77:
78: x_buyer_id := wf_engine.GetItemAttrNumber ( itemtype => itemtype,

Line 78: x_buyer_id := wf_engine.GetItemAttrNumber ( itemtype => itemtype,

74: x_batch_id := wf_engine.GetItemAttrNumber ( itemtype => itemtype,
75: itemkey => itemkey,
76: aname => 'BATCH_ID');
77:
78: x_buyer_id := wf_engine.GetItemAttrNumber ( itemtype => itemtype,
79: itemkey => itemkey,
80: aname => 'BUYER_ID');
81:
82: x_document_type := wf_engine.GetItemAttrText ( itemtype => itemtype,

Line 82: x_document_type := wf_engine.GetItemAttrText ( itemtype => itemtype,

78: x_buyer_id := wf_engine.GetItemAttrNumber ( itemtype => itemtype,
79: itemkey => itemkey,
80: aname => 'BUYER_ID');
81:
82: x_document_type := wf_engine.GetItemAttrText ( itemtype => itemtype,
83: itemkey => itemkey,
84: aname => 'DOCUMENT_TYPE_CODE');
85:
86: x_document_subtype := wf_engine.GetItemAttrText ( itemtype => itemtype,

Line 86: x_document_subtype := wf_engine.GetItemAttrText ( itemtype => itemtype,

82: x_document_type := wf_engine.GetItemAttrText ( itemtype => itemtype,
83: itemkey => itemkey,
84: aname => 'DOCUMENT_TYPE_CODE');
85:
86: x_document_subtype := wf_engine.GetItemAttrText ( itemtype => itemtype,
87: itemkey => itemkey,
88: aname => 'DOCUMENT_SUBTYPE');
89:
90: x_rel_gen_method := wf_engine.GetItemAttrText ( itemtype => itemtype,

Line 90: x_rel_gen_method := wf_engine.GetItemAttrText ( itemtype => itemtype,

86: x_document_subtype := wf_engine.GetItemAttrText ( itemtype => itemtype,
87: itemkey => itemkey,
88: aname => 'DOCUMENT_SUBTYPE');
89:
90: x_rel_gen_method := wf_engine.GetItemAttrText ( itemtype => itemtype,
91: itemkey => itemkey,
92: aname => 'RELEASE_GEN_METHOD');
93:
94: x_approval_status := wf_engine.GetItemAttrText ( itemtype => itemtype,

Line 94: x_approval_status := wf_engine.GetItemAttrText ( itemtype => itemtype,

90: x_rel_gen_method := wf_engine.GetItemAttrText ( itemtype => itemtype,
91: itemkey => itemkey,
92: aname => 'RELEASE_GEN_METHOD');
93:
94: x_approval_status := wf_engine.GetItemAttrText ( itemtype => itemtype,
95: itemkey => itemkey,
96: aname => 'APPROVAL_STATUS');
97:
98:

Line 175: x_interface_header_id := wf_engine.GetItemAttrText ( itemtype => itemtype,

171: x_interface_header_id number;
172: x_progress varchar2(100);
173: begin
174:
175: x_interface_header_id := wf_engine.GetItemAttrText ( itemtype => itemtype,
176: itemkey => itemkey,
177: aname => 'INTERFACE_HEADER_ID');
178:
179: result := 'COMPLETE:Y';

Line 213: x_interface_header_id := wf_engine.GetItemAttrText ( itemtype => itemtype,

209: x_interface_header_id number;
210: x_progress varchar2(100);
211: begin
212:
213: x_interface_header_id := wf_engine.GetItemAttrText ( itemtype => itemtype,
214: itemkey => itemkey,
215: aname => 'INTERFACE_HEADER_ID');
216:
217: result := 'COMPLETE:N';