DBA Data[Home] [Help]

APPS.OKL_ACCOUNTING_UTIL dependencies on FND_MSG_PUB

Line 232: p_msg_count := fnd_msg_pub.count_msg;

228: p_msg_text OUT NOCOPY VARCHAR2)
229: IS
230: l_msg_text VARCHAR2(1000);
231: BEGIN
232: p_msg_count := fnd_msg_pub.count_msg;
233: FOR i IN 1..p_msg_count
234: LOOP
235: fnd_msg_pub.get
236: (p_data => l_msg_text,

Line 235: fnd_msg_pub.get

231: BEGIN
232: p_msg_count := fnd_msg_pub.count_msg;
233: FOR i IN 1..p_msg_count
234: LOOP
235: fnd_msg_pub.get
236: (p_data => l_msg_text,
237: p_msg_index_out => p_msg_count,
238: p_encoded => fnd_api.g_false,
239: p_msg_index => fnd_msg_pub.g_next

Line 239: p_msg_index => fnd_msg_pub.g_next

235: fnd_msg_pub.get
236: (p_data => l_msg_text,
237: p_msg_index_out => p_msg_count,
238: p_encoded => fnd_api.g_false,
239: p_msg_index => fnd_msg_pub.g_next
240: );
241: IF i = 1 THEN
242: p_msg_text := l_msg_text;
243: ELSE

Line 259: l_msg_count := fnd_msg_pub.count_msg;

255: IS
256: l_msg_text VARCHAR2(2000);
257: l_msg_count NUMBER ;
258: BEGIN
259: l_msg_count := fnd_msg_pub.count_msg;
260: FOR i IN 1..l_msg_count
261: LOOP
262: fnd_msg_pub.get
263: (p_data => p_all_message(i),

Line 262: fnd_msg_pub.get

258: BEGIN
259: l_msg_count := fnd_msg_pub.count_msg;
260: FOR i IN 1..l_msg_count
261: LOOP
262: fnd_msg_pub.get
263: (p_data => p_all_message(i),
264: p_msg_index_out => l_msg_count,
265: p_encoded => fnd_api.g_false,
266: p_msg_index => fnd_msg_pub.g_next

Line 266: p_msg_index => fnd_msg_pub.g_next

262: fnd_msg_pub.get
263: (p_data => p_all_message(i),
264: p_msg_index_out => l_msg_count,
265: p_encoded => fnd_api.g_false,
266: p_msg_index => fnd_msg_pub.g_next
267: );
268: END LOOP;
269: EXCEPTION
270: WHEN OTHERS THEN

Line 276: -- fnd procedure above. fnd_msg_pub.g_next does not return first msg in stack.

272: END get_error_message;
273:
274: /**************************************************************************/
275: --Bug 4700150. SGIYER. Wrote new procedure as first msg is not printing using std
276: -- fnd procedure above. fnd_msg_pub.g_next does not return first msg in stack.
277: -- For below procedure, stack must be cleared if processing within a loop.
278: PROCEDURE get_error_msg(p_all_message OUT NOCOPY error_message_type)
279: IS
280: l_msg_text VARCHAR2(2000);

Line 285: l_msg_count := fnd_msg_pub.count_msg;

281: l_msg_count NUMBER ;
282: l_msg_index_out NUMBER;
283: l_counter NUMBER := 1;
284: BEGIN
285: l_msg_count := fnd_msg_pub.count_msg;
286:
287: FOR i IN 1..l_msg_count
288: LOOP
289: l_msg_text := NULL;

Line 291: fnd_msg_pub.get

287: FOR i IN 1..l_msg_count
288: LOOP
289: l_msg_text := NULL;
290: IF i = 1 THEN
291: fnd_msg_pub.get
292: (p_data => l_msg_text,
293: p_msg_index_out => l_msg_index_out,
294: p_encoded => fnd_api.g_false,
295: p_msg_index => fnd_msg_pub.g_first

Line 295: p_msg_index => fnd_msg_pub.g_first

291: fnd_msg_pub.get
292: (p_data => l_msg_text,
293: p_msg_index_out => l_msg_index_out,
294: p_encoded => fnd_api.g_false,
295: p_msg_index => fnd_msg_pub.g_first
296: );
297: ELSE
298: fnd_msg_pub.get
299: (p_data => l_msg_text,

Line 298: fnd_msg_pub.get

294: p_encoded => fnd_api.g_false,
295: p_msg_index => fnd_msg_pub.g_first
296: );
297: ELSE
298: fnd_msg_pub.get
299: (p_data => l_msg_text,
300: p_msg_index_out => l_msg_index_out,
301: p_encoded => fnd_api.g_false,
302: p_msg_index => fnd_msg_pub.g_next

Line 302: p_msg_index => fnd_msg_pub.g_next

298: fnd_msg_pub.get
299: (p_data => l_msg_text,
300: p_msg_index_out => l_msg_index_out,
301: p_encoded => fnd_api.g_false,
302: p_msg_index => fnd_msg_pub.g_next
303: );
304: END IF;
305: IF l_msg_text IS NOT NULL THEN
306: p_all_message(l_counter) := l_msg_text;