DBA Data[Home] [Help]

APPS.OE_MSG_PUB dependencies on FND_MSG_PUB

Line 25: FND_MSG_PUB.Initialize;

21: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
22: --
23: BEGIN
24:
25: FND_MSG_PUB.Initialize;
26:
27: G_msg_tbl.DELETE;
28: G_msg_count := 0;
29: G_msg_index := 0;

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

2204: BEGIN
2205:
2206: IF p_msg_index IS NOT NULL THEN
2207:
2208: l_message := fnd_msg_pub.get(p_msg_index,'F');
2209: add_text(p_message_text => l_message,
2210: p_type => p_type);
2211:
2212: ELSE

Line 2214: l_count := fnd_msg_pub.count_msg;

2210: p_type => p_type);
2211:
2212: ELSE
2213:
2214: l_count := fnd_msg_pub.count_msg;
2215:
2216: FOR i in 1..l_count LOOP
2217:
2218: l_message := fnd_msg_pub.get(i,'F');

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

2214: l_count := fnd_msg_pub.count_msg;
2215:
2216: FOR i in 1..l_count LOOP
2217:
2218: l_message := fnd_msg_pub.get(i,'F');
2219: add_text(p_message_text => l_message,
2220: p_type => p_type);
2221:
2222:

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

2223: END LOOP;
2224:
2225: END IF; -- p_msg_index
2226:
2227: fnd_msg_pub.delete_msg; -- Adding this call to fix 4642102.
2228: EXCEPTION
2229: WHEN OTHERS THEN
2230: IF l_debug_level > 0 THEN
2231: oe_debug_pub.add('Error in Procedure Transfer_Msg_Stack ' || sqlerrm);