DBA Data[Home] [Help]

APPS.ASO_ORDER_INT dependencies on OE_MSG_PUB

Line 164: OE_MSG_PUB.Count_And_Get

160: l_msg_type VARCHAR2(30);
161:
162: BEGIN
163:
164: OE_MSG_PUB.Count_And_Get
165: ( p_count => l_msg_count,
166: p_data => l_msg_data
167: );
168:

Line 180: aso_debug_pub.add('before calling oe_msg_pub.get',1,'N');

176:
177: i:=1;
178:
179: IF aso_debug_pub.g_debug_flag = 'Y' THEN
180: aso_debug_pub.add('before calling oe_msg_pub.get',1,'N');
181: END IF;
182: oe_msg_pub.get (
183: p_msg_index => k
184: ,p_encoded => FND_API.G_FALSE

Line 182: oe_msg_pub.get (

178:
179: IF aso_debug_pub.g_debug_flag = 'Y' THEN
180: aso_debug_pub.add('before calling oe_msg_pub.get',1,'N');
181: END IF;
182: oe_msg_pub.get (
183: p_msg_index => k
184: ,p_encoded => FND_API.G_FALSE
185: ,p_data => l_msg_data
186: ,p_msg_index_out => l_msg_index);

Line 194: oe_msg_pub.get_msg_context (

190: BEGIN
191: IF aso_debug_pub.g_debug_flag = 'Y' THEN
192: aso_debug_pub.add('before calling get_msg_context l_msg_index:'||l_msg_index,1,'N');
193: END IF;
194: oe_msg_pub.get_msg_context (
195: p_msg_index => l_msg_index
196: ,x_entity_code => l_msg_entity_code
197: ,x_entity_ref => l_msg_entity_ref
198: ,x_entity_id => l_msg_entity_id

Line 232: IF oe_msg_pub.g_msg_tbl(l_msg_index).message_text IS NULL THEN

228: IF aso_debug_pub.g_debug_flag = 'Y' THEN
229: aso_debug_pub.add('after calling get_msg_context',1,'N');
230: END IF;
231:
232: IF oe_msg_pub.g_msg_tbl(l_msg_index).message_text IS NULL THEN
233: IF aso_debug_pub.g_debug_flag = 'Y' THEN
234: aso_debug_pub.add('In index.message_text is null',1,'N');
235: END IF;
236: x_msg_data := oe_msg_pub.get(l_msg_index, 'F');

Line 236: x_msg_data := oe_msg_pub.get(l_msg_index, 'F');

232: IF oe_msg_pub.g_msg_tbl(l_msg_index).message_text IS NULL THEN
233: IF aso_debug_pub.g_debug_flag = 'Y' THEN
234: aso_debug_pub.add('In index.message_text is null',1,'N');
235: END IF;
236: x_msg_data := oe_msg_pub.get(l_msg_index, 'F');
237: END IF;
238:
239: IF aso_debug_pub.g_debug_flag = 'Y' THEN
240: aso_debug_pub.add('l_msg_orig_sys_line_ref'||l_msg_orig_sys_line_ref,1,'N');