DBA Data[Home] [Help]

APPS.OE_REPRICE_WF dependencies on STANDARD

Line 29: OE_STANDARD_WF.Set_Msg_Context(actid);

25: oe_debug_pub.add( 'ENTERING OE_REPRICE_WF.START_REPRICING '||ITEMTYPE||'/'||ITEMKEY , 1 ) ;
26: END IF;
27: if (funcmode = 'RUN') then
28:
29: OE_STANDARD_WF.Set_Msg_Context(actid);
30:
31: l_line_id := to_number(itemkey);
32:
33: IF l_debug_level > 0 THEN

Line 50: OE_STANDARD_WF.Save_Messages;

46: IF l_debug_level > 0 THEN
47: oe_debug_pub.add( 'RETURNED FROM OE_LINE_REPRICE.PROCESS_REPRICING '||L_RETURN_STATUS , 2 ) ;
48: END IF;
49: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
50: OE_STANDARD_WF.Save_Messages;
51: OE_STANDARD_WF.Clear_Msg_Context;
52: -- app_exception.raise_exception;
53: END IF;
54:

Line 51: OE_STANDARD_WF.Clear_Msg_Context;

47: oe_debug_pub.add( 'RETURNED FROM OE_LINE_REPRICE.PROCESS_REPRICING '||L_RETURN_STATUS , 2 ) ;
48: END IF;
49: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
50: OE_STANDARD_WF.Save_Messages;
51: OE_STANDARD_WF.Clear_Msg_Context;
52: -- app_exception.raise_exception;
53: END IF;
54:
55: resultout := l_result_out;

Line 57: OE_STANDARD_WF.Clear_Msg_Context;

53: END IF;
54:
55: resultout := l_result_out;
56: -- resultout := 'COMPLETE';
57: OE_STANDARD_WF.Clear_Msg_Context;
58: return;
59:
60: end if; -- End for 'RUN' mode
61:

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

91: -- in the case of an exception.
92: wf_core.context('OE_Reprice_WF', 'Repricing',
93: itemtype, itemkey, to_char(actid), funcmode);
94: -- start data fix project
95: OE_STANDARD_WF.Add_Error_Activity_Msg(p_actid => actid,
96: p_itemtype => itemtype,
97: p_itemkey => itemkey);
98: OE_STANDARD_WF.Save_Messages;
99: OE_STANDARD_WF.Clear_Msg_Context;

Line 98: OE_STANDARD_WF.Save_Messages;

94: -- start data fix project
95: OE_STANDARD_WF.Add_Error_Activity_Msg(p_actid => actid,
96: p_itemtype => itemtype,
97: p_itemkey => itemkey);
98: OE_STANDARD_WF.Save_Messages;
99: OE_STANDARD_WF.Clear_Msg_Context;
100: -- end data fix project
101: raise;
102: END Start_Repricing;

Line 99: OE_STANDARD_WF.Clear_Msg_Context;

95: OE_STANDARD_WF.Add_Error_Activity_Msg(p_actid => actid,
96: p_itemtype => itemtype,
97: p_itemkey => itemkey);
98: OE_STANDARD_WF.Save_Messages;
99: OE_STANDARD_WF.Clear_Msg_Context;
100: -- end data fix project
101: raise;
102: END Start_Repricing;
103:

Line 126: OE_STANDARD_WF.Set_Msg_Context(actid);

122: oe_debug_pub.add( 'ENTERING OE_REPRICE_WF.START_REPRICING_HOLDS '||ITEMTYPE||'/'||ITEMKEY , 1 ) ;
123: END IF;
124: if (funcmode = 'RUN') then
125:
126: OE_STANDARD_WF.Set_Msg_Context(actid);
127:
128: -- check activity specific hold only
129: OE_HOLDS_PUB.CHECK_HOLDS(p_api_version => 1.0,
130: p_line_id => to_number(itemkey),

Line 140: OE_STANDARD_WF.Save_Messages;

136: x_msg_count => l_msg_count,
137: x_msg_data => l_msg_data);
138:
139: IF ( l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
140: OE_STANDARD_WF.Save_Messages;
141: OE_STANDARD_WF.Clear_Msg_Context;
142: resultout := 'INCOMPLETE';
143: RETURN;
144: ELSIF (l_result_out = FND_API.G_TRUE ) THEN

Line 141: OE_STANDARD_WF.Clear_Msg_Context;

137: x_msg_data => l_msg_data);
138:
139: IF ( l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
140: OE_STANDARD_WF.Save_Messages;
141: OE_STANDARD_WF.Clear_Msg_Context;
142: resultout := 'INCOMPLETE';
143: RETURN;
144: ELSIF (l_result_out = FND_API.G_TRUE ) THEN
145: resultout := 'ON_HOLD';

Line 147: OE_STANDARD_WF.Clear_Msg_Context;

143: RETURN;
144: ELSIF (l_result_out = FND_API.G_TRUE ) THEN
145: resultout := 'ON_HOLD';
146: oe_line_reprice.set_reprice_status('REPRICE_HOLD', to_number(itemkey));
147: OE_STANDARD_WF.Clear_Msg_Context;
148: RETURN;
149: END IF;
150:
151: -- call start_repricing to minimize dual maitainance of code

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

195: -- in the case of an exception.
196: wf_core.context('OE_Reprice_WF', 'Start_Repricing_Holds',
197: itemtype, itemkey, to_char(actid), funcmode);
198: -- start data fix project
199: OE_STANDARD_WF.Add_Error_Activity_Msg(p_actid => actid,
200: p_itemtype => itemtype,
201: p_itemkey => itemkey);
202: OE_STANDARD_WF.Save_Messages;
203: OE_STANDARD_WF.Clear_Msg_Context;

Line 202: OE_STANDARD_WF.Save_Messages;

198: -- start data fix project
199: OE_STANDARD_WF.Add_Error_Activity_Msg(p_actid => actid,
200: p_itemtype => itemtype,
201: p_itemkey => itemkey);
202: OE_STANDARD_WF.Save_Messages;
203: OE_STANDARD_WF.Clear_Msg_Context;
204: -- end data fix project
205: raise;
206: END Start_Repricing_Holds;

Line 203: OE_STANDARD_WF.Clear_Msg_Context;

199: OE_STANDARD_WF.Add_Error_Activity_Msg(p_actid => actid,
200: p_itemtype => itemtype,
201: p_itemkey => itemkey);
202: OE_STANDARD_WF.Save_Messages;
203: OE_STANDARD_WF.Clear_Msg_Context;
204: -- end data fix project
205: raise;
206: END Start_Repricing_Holds;
207: