DBA Data[Home] [Help]

APPS.PA_MESSAGE_UTILS dependencies on FND_MSG_PUB

Line 50: l_msg_count := FND_MSG_PUB.Count_Msg;

46: -----------------------------------------------------------------
47: -- IF p_use_fnd_msg ='Y', loop through fng_msg stack to get msgs
48: -----------------------------------------------------------------
49: IF p_use_fnd_msg = 'Y' THEN
50: l_msg_count := FND_MSG_PUB.Count_Msg;
51:
52: FOR I in 1..l_msg_count LOOP
53: FND_MSG_PUB.get (
54: p_encoded => p_encode,

Line 53: FND_MSG_PUB.get (

49: IF p_use_fnd_msg = 'Y' THEN
50: l_msg_count := FND_MSG_PUB.Count_Msg;
51:
52: FOR I in 1..l_msg_count LOOP
53: FND_MSG_PUB.get (
54: p_encoded => p_encode,
55: p_msg_index => I,
56: p_data => l_encoded_message_text,
57: p_msg_index_out => l_msg_index_out);

Line 157: fnd_msg_pub.initialize;

153: COMMIT;
154: END IF;
155:
156: IF p_init_msg_list = FND_API.G_TRUE THEN
157: fnd_msg_pub.initialize;
158: END IF;
159:
160:
161: EXCEPTION