DBA Data[Home] [Help]

APPS.OKL_STREAMS_WF dependencies on WF_CORE

Line 87: wf_core.token('OKL_TRANSACTION_NUMBER','NULL');

83: -- We need to determine which parameters are required and which are optional
84: --
85: l_transaction_number := Wf_Engine.GetActivityAttrText(itemtype, itemkey, actid, 'PARAMETER1');
86: IF ( l_transaction_number IS NULL ) THEN
87: wf_core.token('OKL_TRANSACTION_NUMBER','NULL');
88: wf_core.RAISE('WFSQL_ARGS');
89: END IF;
90:
91: --

Line 88: wf_core.RAISE('WFSQL_ARGS');

84: --
85: l_transaction_number := Wf_Engine.GetActivityAttrText(itemtype, itemkey, actid, 'PARAMETER1');
86: IF ( l_transaction_number IS NULL ) THEN
87: wf_core.token('OKL_TRANSACTION_NUMBER','NULL');
88: wf_core.RAISE('WFSQL_ARGS');
89: END IF;
90:
91: --
92: -- params2..10 optional

Line 216: Wf_Core.Context('OKL_PROCESS_STREAMS', 'process_streams', itemtype, itemkey, TO_CHAR(actid), funcmode);

212: END IF;
213:
214: EXCEPTION
215: WHEN OTHERS THEN
216: Wf_Core.Context('OKL_PROCESS_STREAMS', 'process_streams', itemtype, itemkey, TO_CHAR(actid), funcmode);
217: RAISE;
218:
219: END process;
220:

Line 259: wf_core.token('OKL_REQUEST_ID','NULL');

255: END IF;
256:
257: l_document_id := Wf_Engine.GetActivityAttrText(itemtype, itemkey, actid, 'OKL_REQUEST_ID');
258: IF ( l_document_id IS NULL ) THEN
259: wf_core.token('OKL_REQUEST_ID','NULL');
260: wf_core.RAISE('WFSQL_ARGS');
261: END IF;
262:
263: l_msg_name := Wf_Engine.GetActivityAttrText(itemtype, itemkey, actid, 'OKL_ERROR_MSG');

Line 260: wf_core.RAISE('WFSQL_ARGS');

256:
257: l_document_id := Wf_Engine.GetActivityAttrText(itemtype, itemkey, actid, 'OKL_REQUEST_ID');
258: IF ( l_document_id IS NULL ) THEN
259: wf_core.token('OKL_REQUEST_ID','NULL');
260: wf_core.RAISE('WFSQL_ARGS');
261: END IF;
262:
263: l_msg_name := Wf_Engine.GetActivityAttrText(itemtype, itemkey, actid, 'OKL_ERROR_MSG');
264: IF ( l_document_id IS NULL ) THEN

Line 265: wf_core.token('OKL_DOCUMENT_ID','NULL');

261: END IF;
262:
263: l_msg_name := Wf_Engine.GetActivityAttrText(itemtype, itemkey, actid, 'OKL_ERROR_MSG');
264: IF ( l_document_id IS NULL ) THEN
265: wf_core.token('OKL_DOCUMENT_ID','NULL');
266: wf_core.RAISE('WFSQL_ARGS');
267: END IF;
268:
269:

Line 266: wf_core.RAISE('WFSQL_ARGS');

262:
263: l_msg_name := Wf_Engine.GetActivityAttrText(itemtype, itemkey, actid, 'OKL_ERROR_MSG');
264: IF ( l_document_id IS NULL ) THEN
265: wf_core.token('OKL_DOCUMENT_ID','NULL');
266: wf_core.RAISE('WFSQL_ARGS');
267: END IF;
268:
269:
270: -- WHAT IS THIS????

Line 308: Wf_Core.Context('report_error', 'report_error', itemtype, itemkey, TO_CHAR(actid), funcmode);

304: END IF;
305:
306: EXCEPTION
307: WHEN OTHERS THEN
308: Wf_Core.Context('report_error', 'report_error', itemtype, itemkey, TO_CHAR(actid), funcmode);
309: RAISE;
310: END REPORT_ERROR;
311:
312: