DBA Data[Home] [Help]

APPS.OE_MSG_PUB dependencies on FND_MSG_PUB

Line 33: FND_MSG_PUB.Initialize;

29: G_msg_init_with_timer := TRUE;
30: END IF;
31: END IF;
32: --Bug 8514085 Ends
33: FND_MSG_PUB.Initialize;
34:
35: G_msg_tbl.DELETE;
36: G_msg_count := 0;
37: G_msg_index := 0;

Line 2247: l_message := fnd_msg_pub.get(p_msg_index,'F');

2243: BEGIN
2244:
2245: IF p_msg_index IS NOT NULL THEN
2246:
2247: l_message := fnd_msg_pub.get(p_msg_index,'F');
2248: add_text(p_message_text => l_message,
2249: p_type => p_type);
2250:
2251: ELSE

Line 2253: l_count := fnd_msg_pub.count_msg;

2249: p_type => p_type);
2250:
2251: ELSE
2252:
2253: l_count := fnd_msg_pub.count_msg;
2254:
2255: FOR i in 1..l_count LOOP
2256:
2257: l_message := fnd_msg_pub.get(i,'F');

Line 2257: l_message := fnd_msg_pub.get(i,'F');

2253: l_count := fnd_msg_pub.count_msg;
2254:
2255: FOR i in 1..l_count LOOP
2256:
2257: l_message := fnd_msg_pub.get(i,'F');
2258: add_text(p_message_text => l_message,
2259: p_type => p_type);
2260:
2261:

Line 2266: fnd_msg_pub.delete_msg; -- Adding this call to fix 4642102.

2262: END LOOP;
2263:
2264: END IF; -- p_msg_index
2265:
2266: fnd_msg_pub.delete_msg; -- Adding this call to fix 4642102.
2267: EXCEPTION
2268: WHEN OTHERS THEN
2269: IF l_debug_level > 0 THEN
2270: oe_debug_pub.add('Error in Procedure Transfer_Msg_Stack ' || sqlerrm);