DBA Data[Home] [Help]

APPS.EAM_EXECUTION_JSP dependencies on FND_MSG_PUB

Line 71: -- FND_MSG_PUB.Get. It is needed to access the call from

67:
68: ---------------------------------------------------------------
69: -- Procedure : Get_Encoded_Msg
70: -- This procedure serves as a wrapper to the function
71: -- FND_MSG_PUB.Get. It is needed to access the call from
72: -- client FORMS.
73: ---------------------------------------------------------------
74: Procedure Get_Encoded_Msg(p_index IN NUMBER,
75: p_msg_out IN OUT NOCOPY VARCHAR2 ) IS

Line 78: p_msg_out := fnd_msg_pub.get(p_msg_index => p_index,

74: Procedure Get_Encoded_Msg(p_index IN NUMBER,
75: p_msg_out IN OUT NOCOPY VARCHAR2 ) IS
76: l_message VARCHAR2(2000);
77: BEGIN
78: p_msg_out := fnd_msg_pub.get(p_msg_index => p_index,
79: p_encoded => FND_API.G_FALSE);
80:
81: END Get_Encoded_Msg;
82:

Line 122: FND_MSG_PUB.Add;

118: IF (p_token5 IS NOT NULL) THEN
119: FND_MESSAGE.Set_Token(p_token5, p_value5);
120: END IF;
121:
122: FND_MSG_PUB.Add;
123:
124: END Add_Message;
125:
126: ------------------------------------------------------------------

Line 143: l_msg_index := FND_MSG_PUB.G_NEXT;

139:
140: BEGIN
141:
142: IF p_msg_index IS NULL THEN
143: l_msg_index := FND_MSG_PUB.G_NEXT;
144: ELSE
145: l_msg_index := p_msg_index;
146: END IF;
147:

Line 152: FND_MSG_PUB.get (

148: IF p_msg_count = 1 THEN
149: FND_MESSAGE.SET_ENCODED (p_msg_data);
150: p_data := FND_MESSAGE.GET;
151: ELSE
152: FND_MSG_PUB.get (
153: p_msg_index => l_msg_index,
154: p_encoded => p_encoded,
155: p_data => p_data,
156: p_msg_index_out => p_msg_index_out );