DBA Data[Home] [Help]

APPS.PO_FBO_PKG dependencies on PO_WF_DEBUG_PKG

Line 64: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);

60:
61: END;
62:
63: x_progress := 'PO_FBO_PKG.IS_SOURCING_INSTALLED : ' || l_is_sourcing_installed;
64: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
65:
66: resultout := wf_engine.eng_completed || ':' || l_is_sourcing_installed;
67:
68: END IS_SOURCING_INSTALLED;

Line 110: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);

106: PON_FBO_PKG.backing_solicitation_info(l_document_id,l_solicitation_no,
107: l_solicitation_title);
108:
109: x_progress := 'PO_FBO_PKG.HAS_ASSOCIATED_SOLICITATION Solicitation No : ' || l_solicitation_no;
110: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
111:
112:
113: IF l_solicitation_no IS NOT NULL THEN
114: l_has_associated_solicitation := 'Y';

Line 158: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);

154:
155: BEGIN
156:
157: x_progress := 'PO_FBO_PKG.SUBMIT_AWARD_NOTICE';
158: PO_WF_DEBUG_PKG.insert_debug(itemtype,itemkey,x_progress);
159:
160:
161: l_document_id := wf_engine.GetItemAttrNumber (itemtype => itemtype,
162: itemkey => itemkey,

Line 183: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey, x_progress);

179: END IF;
180:
181:
182: x_progress := 'PO_FBO_PKG.SUBMIT_AWARD_NOTICE : Request id : ' || l_request_id;
183: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey, x_progress);
184:
185:
186: INSERT_IN_PON_FBO_POSTS(l_document_id,'FED_AWARD',l_request_id);
187:

Line 197: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey, x_progress);

193:
194: WHEN submission_error THEN
195:
196: x_progress := 'PO_FBO_PKG.SUBMIT_AWARD_NOTICE: Exception submitting concurrent request: ' || fnd_message.get;
197: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey, x_progress);
198:
199: wf_core.context('PO_FBO_PKG', 'SUBMIT_AWARD_NOTICE', x_progress);
200: RAISE;
201:

Line 205: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey, x_progress);

201:
202: WHEN OTHERS THEN
203:
204: x_progress := 'PO_FBO_PKG.SUBMIT_AWARD_NOTICE : In Exception handler';
205: PO_WF_DEBUG_PKG.insert_debug(itemtype, itemkey, x_progress);
206:
207: wf_core.context('PO_FBO_PKG', 'SUBMIT_AWARD_NOTICE', x_progress);
208: RAISE;
209: