DBA Data[Home] [Help]

APPS.OE_RMA_WF dependencies on OE_STANDARD_WF

Line 367: OE_STANDARD_WF.Set_Msg_Context(actid);

363:
364: IF resultout = 'COMPLETE:Y' THEN
365: resultout := 'NOTIFIED';
366:
367: OE_STANDARD_WF.Set_Msg_Context(actid);
368:
369: IF l_debug_level > 0 THEN
370: oe_debug_pub.add( 'CALLING FLOW STATUS API ' , 1 ) ;
371: END IF;

Line 373: IF OE_STANDARD_WF.G_UPGRADE_MODE <> TRUE THEN

369: IF l_debug_level > 0 THEN
370: oe_debug_pub.add( 'CALLING FLOW STATUS API ' , 1 ) ;
371: END IF;
372:
373: IF OE_STANDARD_WF.G_UPGRADE_MODE <> TRUE THEN
374:
375: OE_Order_WF_Util.Update_Flow_Status_Code
376: (p_line_id => to_number(itemkey),
377: p_flow_status_code => 'AWAITING_RETURN',

Line 385: -- OE_STANDARD_WF.Save_Messages;

381: oe_debug_pub.add( 'RETURN STATUS FROM FLOW STATUS API '|| L_RETURN_STATUS , 1 ) ;
382: END IF;
383: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
384: -- start data fix project
385: -- OE_STANDARD_WF.Save_Messages;
386: -- OE_STANDARD_WF.Clear_Msg_Context;
387: -- end data fix project
388: app_exception.raise_exception;
389: END IF;

Line 386: -- OE_STANDARD_WF.Clear_Msg_Context;

382: END IF;
383: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
384: -- start data fix project
385: -- OE_STANDARD_WF.Save_Messages;
386: -- OE_STANDARD_WF.Clear_Msg_Context;
387: -- end data fix project
388: app_exception.raise_exception;
389: END IF;
390: ELSE

Line 397: OE_STANDARD_WF.Clear_Msg_Context;

393: WHERE line_id = to_number(itemkey);
394:
395: END IF;
396:
397: OE_STANDARD_WF.Clear_Msg_Context;
398:
399: ELSE
400: resultout := 'COMPLETE:NOT_ELIGIBLE';
401: END IF;

Line 443: OE_STANDARD_WF.Add_Error_Activity_Msg(p_actid => actid,

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,
445: p_itemkey => itemkey);
446: OE_STANDARD_WF.Save_Messages;
447: OE_STANDARD_WF.Clear_Msg_Context;

Line 446: OE_STANDARD_WF.Save_Messages;

442: -- start data fix project
443: OE_STANDARD_WF.Add_Error_Activity_Msg(p_actid => actid,
444: p_itemtype => itemtype,
445: p_itemkey => itemkey);
446: OE_STANDARD_WF.Save_Messages;
447: OE_STANDARD_WF.Clear_Msg_Context;
448: -- end data fix project
449: raise;
450: END Wait_For_Receiving;

Line 447: OE_STANDARD_WF.Clear_Msg_Context;

443: OE_STANDARD_WF.Add_Error_Activity_Msg(p_actid => actid,
444: p_itemtype => itemtype,
445: p_itemkey => itemkey);
446: OE_STANDARD_WF.Save_Messages;
447: OE_STANDARD_WF.Clear_Msg_Context;
448: -- end data fix project
449: raise;
450: END Wait_For_Receiving;
451: