DBA Data[Home] [Help]

APPS.OE_RMA_WF dependencies on OE_RMA_WF

Line 1: package body OE_RMA_WF as

1: package body OE_RMA_WF as
2: /* $Header: OEXWRMAB.pls 120.0.12010000.3 2010/02/24 12:30:42 nshah ship $ */
3:
4: -- PROCEDURE Create_Outbound_Shipment
5: --

Line 28: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OE_RMA_WF';

24: -- will signal when this step is complete. Optional
25: -- return of notification ID and assigned user.
26: -- - ERROR[:]
27: -- function encountered an error.
28: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OE_RMA_WF';
29: procedure Create_Outbound_Shipment(
30: itemtype in varchar2,
31: itemkey in varchar2,
32: actid in number,

Line 80: oe_debug_pub.add( 'ENTERING OE_RMA_WF.CREATE_OUTBOUND_SHIPMENT' , 1 ) ;

76: -- RUN mode - normal process execution
77: --
78: if (funcmode = 'RUN') then
79: IF l_debug_level > 0 THEN
80: oe_debug_pub.add( 'ENTERING OE_RMA_WF.CREATE_OUTBOUND_SHIPMENT' , 1 ) ;
81: END IF;
82:
83: -- your run code goes here
84:

Line 218: wf_core.context('OE_RMA_WF', 'CREATE_OUTBOUND_SHIPMENT',

214: return;
215: EXCEPTION
216: WHEN OTHERS THEN
217: -- in the case of an exception.
218: wf_core.context('OE_RMA_WF', 'CREATE_OUTBOUND_SHIPMENT',
219: itemtype, itemkey, to_char(actid), funcmode);
220: raise;
221: end Create_Outbound_Shipment;
222:

Line 251: wf_core.context('OE_RMA_WF', 'Is_Return_Line',

247: -- item type is not a line
248: END IF;
249: Exception
250: when others then
251: wf_core.context('OE_RMA_WF', 'Is_Return_Line',
252: itemtype, itemkey, to_char(actid), funcmode);
253: raise;
254: END Is_Return_Line;
255:

Line 328: wf_core.context('OE_RMA_WF', 'Is_Line_Receivable',

324:
325:
326: Exception
327: when others then
328: wf_core.context('OE_RMA_WF', 'Is_Line_Receivable',
329: itemtype, itemkey, to_char(actid), funcmode);
330: raise;
331: END Is_Line_Receivable;
332:

Line 350: oe_debug_pub.add( 'ENTERING OE_RMA_WF.WAIT_FOR_RECEIVING '||ITEMTYPE||'/' ||ITEMKEY , 1 ) ;

346: --
347: BEGIN
348:
349: IF l_debug_level > 0 THEN
350: oe_debug_pub.add( 'ENTERING OE_RMA_WF.WAIT_FOR_RECEIVING '||ITEMTYPE||'/' ||ITEMKEY , 1 ) ;
351: END IF;
352:
353:
354: IF (funcmode = 'RUN') then

Line 435: oe_debug_pub.add( 'EXITING OE_RMA_WF.WAIT_FOR_RECEIVING ' , 1 ) ;

431: -- resultout := '';
432: -- return;
433:
434: IF l_debug_level > 0 THEN
435: oe_debug_pub.add( 'EXITING OE_RMA_WF.WAIT_FOR_RECEIVING ' , 1 ) ;
436: END IF;
437:
438: Exception
439: when others then

Line 440: wf_core.context('OE_RMA_WF', 'Wait_For_Receiving',

436: END IF;
437:
438: Exception
439: when others then
440: wf_core.context('OE_RMA_WF', 'Wait_For_Receiving',
441: itemtype, itemkey, to_char(actid), funcmode);
442: -- start data fix project
443: OE_STANDARD_WF.Add_Error_Activity_Msg(p_actid => actid,
444: p_itemtype => itemtype,

Line 531: wf_core.context('OE_RMA_WF', 'UPD_FLOW_STATUS_CODE_REJ',

527: EXCEPTION
528: WHEN OTHERS THEN
529: -- The line below records this function call in the error system
530: -- in the case of an exception.
531: wf_core.context('OE_RMA_WF', 'UPD_FLOW_STATUS_CODE_REJ',
532: itemtype, itemkey, to_char(actid), funcmode);
533: -- start data fix project
534: OE_STANDARD_WF.Add_Error_Activity_Msg(p_actid => actid,
535: p_itemtype => itemtype,

Line 622: wf_core.context('OE_RMA_WF', 'UPD_FLOW_STATUS_CODE_MIX_REJ',

618: EXCEPTION
619: WHEN OTHERS THEN
620: -- The line below records this function call in the error system
621: -- in the case of an exception.
622: wf_core.context('OE_RMA_WF', 'UPD_FLOW_STATUS_CODE_MIX_REJ',
623: itemtype, itemkey, to_char(actid), funcmode);
624: -- start data fix project
625: OE_STANDARD_WF.Add_Error_Activity_Msg(p_actid => actid,
626: p_itemtype => itemtype,

Line 634: end OE_RMA_WF;

630: -- end data fix project
631: RAISE;
632: END UPD_FLOW_STATUS_CODE_MIX_REJ;
633:
634: end OE_RMA_WF;