DBA Data[Home] [Help]

APPS.XDPCORE_OM dependencies on XDP_OM_UTIL

Line 75: resultout := xdp_om_util.HandleOtherWFFuncmode(funcmode);

71: CreateFulfillmentOrder(itemtype, itemkey, actid, l_resultout);
72: resultout := l_resultout ;
73: return;
74: ELSE
75: resultout := xdp_om_util.HandleOtherWFFuncmode(funcmode);
76: return;
77: END IF;
78:
79: EXCEPTION

Line 107: resultout := xdp_om_util.HandleOtherWFFuncmode(funcmode);

103: WaitForFulfillment(itemtype, itemkey, actid, l_resultout);
104: resultout := l_resultout ;
105: return;
106: ELSE
107: resultout := xdp_om_util.HandleOtherWFFuncmode(funcmode);
108: return;
109: END IF;
110:
111: EXCEPTION

Line 141: resultout := xdp_om_util.HandleOtherWFFuncmode(funcmode);

137: IsFulfillmentCompleted(itemtype, itemkey, actid , l_resultout);
138: resultout := 'COMPLETE' ;
139: return;
140: ELSE
141: resultout := xdp_om_util.HandleOtherWFFuncmode(funcmode);
142: return;
143: END IF;
144:
145: EXCEPTION

Line 173: resultout := xdp_om_util.HandleOtherWFFuncmode(funcmode);

169: ProvisionLine(itemtype, itemkey,actid,resultout);
170: resultout := resultout ;
171: return;
172: ELSE
173: resultout := xdp_om_util.HandleOtherWFFuncmode(funcmode);
174: return;
175: END IF;
176:
177: EXCEPTION

Line 205: resultout := xdp_om_util.HandleOtherWFFuncmode(funcmode);

201: PublishXDPFulfillDone(itemtype, itemkey);
202: resultout := 'COMPLETE:ACTIVITY_PERFORMED';
203: return;
204: ELSE
205: resultout := xdp_om_util.HandleOtherWFFuncmode(funcmode);
206: return;
207: END IF;
208:
209: EXCEPTION

Line 242: resultout := xdp_om_util.HandleOtherWFFuncmode(funcmode);

238: resultout => l_resultout );
239: resultout := l_resultout ; -- 'COMPLETE' ;
240: return;
241: ELSE
242: resultout := xdp_om_util.HandleOtherWFFuncmode(funcmode);
243: return;
244: END IF;
245:
246:

Line 303: resultout := xdp_om_util.HandleOtherWFFuncmode(funcmode);

299: END IF ;
300:
301:
302: ELSE
303: resultout := xdp_om_util.HandleOtherWFFuncmode(funcmode);
304: return;
305: END IF;
306:
307:

Line 669: IF xdp_om_util.Is_Activation_Reqd(p_line_id => c_top_rec.line_id) THEN

665: x_error_description := null;
666:
667: FOR c_top_rec IN c_top_lines
668: LOOP
669: IF xdp_om_util.Is_Activation_Reqd(p_line_id => c_top_rec.line_id) THEN
670:
671: -- The top line is not a package and needs activation.
672:
673: g_order_line_list(l_line_count).line_number := c_top_rec.line_id ;

Line 700: IF xdp_om_util.Is_Activation_Reqd(p_line_id => c_child_rec.line_id) THEN

696:
697: FOR c_child_rec IN c_child_lines(c_top_rec.line_id)
698: LOOP
699:
700: IF xdp_om_util.Is_Activation_Reqd(p_line_id => c_child_rec.line_id) THEN
701:
702: IF l_prev_sort_order <> c_child_rec.sort_order THEN
703: l_next_seq := l_next_seq + 10;
704: l_prev_sort_order := c_child_rec.sort_order ;

Line 757: IF XDP_OM_UTIL.IS_ACTIVATION_REQD(p_line_id => l_line_id) THEN

753: l_org_id NUMBER ;
754:
755: BEGIN
756:
757: IF XDP_OM_UTIL.IS_ACTIVATION_REQD(p_line_id => l_line_id) THEN
758:
759:
760: -- Publish SFM Fulfillment Start Event to start an SFM - OM Interface WF Process.
761:

Line 794: XDP_OM_UTIL.SUBSCRIBE_SRV_FULFILLMENT_DONE

790: itemkey => WaitForFulfillment.itemkey );
791:
792: -- Subscribe to Fulfillment Done Event with reference Id as OM order line_id
793:
794: XDP_OM_UTIL.SUBSCRIBE_SRV_FULFILLMENT_DONE
795: (itemtype => itemtype ,
796: itemkey => itemkey ,
797: actid => actid ,
798: resultout=> l_resultout) ;

Line 896: XDP_OM_UTIL.SUBSCRIBE_XDP_LINE_DONE

892: END IF ;
893:
894: -- Subscribe to XDP_LINE_DONE event to be published by SFM order line
895:
896: XDP_OM_UTIL.SUBSCRIBE_XDP_LINE_DONE
897: (itemtype => ProvisionLine.itemtype,
898: itemkey => ProvisionLine.itemkey ,
899: actid => ProvisionLine.actid ,
900: resultout => l_resultout );