DBA Data[Home] [Help]

APPS.OE_INVOICE_WF dependencies on WF_ENGINE

Line 23: -- step must be performed. A call to wf_engine.CompleteActivty

19: -- - DEFERED
20: -- execution should be defered to background
21: -- - NOTIFIED[::]
22: -- activity has notified an external entity that this
23: -- step must be performed. A call to wf_engine.CompleteActivty
24: -- will signal when this step is complete. Optional
25: -- return of notification ID and assigned user.
26: -- - ERROR[:]
27: -- function encountered an error.

Line 192: resultout := 'DEFERRED:'||to_char(sysdate+(TO_NUMBER(g_defer)/1440),wf_engine.date_format);

188: OE_STANDARD_WF.Clear_Msg_Context;
189: IF g_defer IS NOT NULL THEN -- 4343423
190: BEGIN
191: IF TO_NUMBER(g_defer) >= 0 THEN
192: resultout := 'DEFERRED:'||to_char(sysdate+(TO_NUMBER(g_defer)/1440),wf_engine.date_format);
193: ELSE
194: g_defer := NULL;
195: END IF;
196: EXCEPTION

Line 203: resultout := 'DEFERRED:'||to_char(sysdate+((1+g_defer_min)/1440), wf_engine.date_format);

199: END;
200: END IF;
201:
202: IF g_defer IS NULL THEN
203: resultout := 'DEFERRED:'||to_char(sysdate+((1+g_defer_min)/1440), wf_engine.date_format);
204: g_defer_min := mod(g_defer_min + 0.5, 4.5);
205: END IF;
206:
207: IF l_debug_level > 0 THEN