DBA Data[Home] [Help]

APPS.PO_XML_UTILS_GRP dependencies on WF_CORE

Line 89: wf_core.context('PO_XML_UTILS_GRP','splitforids',SQLERRM);

85: x_appl_id := to_number(substr(l_resp_appl, instr(l_resp_appl,':')+1));
86:
87: exception
88: when others then
89: wf_core.context('PO_XML_UTILS_GRP','splitforids',SQLERRM);
90: raise;
91:
92: end splitforids;
93:

Line 116: wf_core.context('PO_XML_UTILS_GRP','splitforids',SQLERRM);

112: end if;
113:
114: exception
115: when others then
116: wf_core.context('PO_XML_UTILS_GRP','splitforids',SQLERRM);
117: -- raise; we don't want to raise exception here as it will lead to failure in XML gen.
118:
119:
120: end getBlanketPONumber;

Line 250: wf_core.context('PO_ECX_UTIL_PKG','regenandsend',x_progress);

246: INVALID_TXN_TYPE EXCEPTION;
247: BEGIN
248:
249:
250: wf_core.context('PO_ECX_UTIL_PKG','regenandsend',x_progress);
251:
252: -- Create EVENT_KEY and EVENT_NAME
253: select PO_WF_ITEMKEY_S.nextval into l_wf_item_seq from dual;
254: l_event_key := to_char(p_po_header_id) || '-' || to_char(l_wf_item_seq);

Line 257: wf_core.context('POM_ECX_UTIL_PKG','regenandsend',x_progress);

253: select PO_WF_ITEMKEY_S.nextval into l_wf_item_seq from dual;
254: l_event_key := to_char(p_po_header_id) || '-' || to_char(l_wf_item_seq);
255:
256: x_progress := '001';
257: wf_core.context('POM_ECX_UTIL_PKG','regenandsend',x_progress);
258:
259: if (upper(p_po_type) = 'RELEASE') then
260: select pha.segment1, pha.org_id
261: into l_po_number, l_org_id

Line 279: wf_core.context('POM_ECX_UTIL_PKG','regenandsend',x_progress);

275:
276:
277: end if;
278: x_progress := '002';
279: wf_core.context('POM_ECX_UTIL_PKG','regenandsend',x_progress);
280:
281: -- Add Parameters
282: wf_event.AddParameterToList(p_name =>'DOCUMENT_ID',
283: p_value => p_po_header_id,

Line 319: wf_core.context('PO_ECX_UTIL_PKG','regenandsend',x_progress);

315:
316: -- dbms_output.put_line (l_event_key);
317:
318: x_progress := '002';
319: wf_core.context('PO_ECX_UTIL_PKG','regenandsend',x_progress);
320: wf_event.raise( p_event_name => l_event_name,
321: p_event_key => l_event_key,
322: p_parameters => l_parameter_list);
323: x_progress := '002';

Line 333: wf_core.context('PO_ECX_UTIL_PKG','regenandsend',x_progress);

329: commit;
330: EXCEPTION
331: when others then
332: x_progress := x_progress || SQLERRM;
333: wf_core.context('PO_ECX_UTIL_PKG','regenandsend',x_progress);
334:
335: --dbms_output.put_line (SQLERRM);
336: raise;
337: