DBA Data[Home] [Help]

APPS.WIP_GLOBALS dependencies on FND_MSG_PUB

Line 109: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)

105: l_control_rec.clear_api_requests:= TRUE;
106:
107: ELSE
108:
109: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
110: THEN
111: FND_MSG_PUB.Add_Exc_Msg
112: ( G_PKG_NAME
113: , 'Init_Control_Rec'

Line 111: FND_MSG_PUB.Add_Exc_Msg

107: ELSE
108:
109: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
110: THEN
111: FND_MSG_PUB.Add_Exc_Msg
112: ( G_PKG_NAME
113: , 'Init_Control_Rec'
114: , 'Invalid action'
115: );

Line 192: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_ERROR) THEN

188:
189: IS
190: BEGIN
191:
192: IF FND_MSG_PUB.Check_Msg_Level(FND_MSG_PUB.G_MSG_LVL_ERROR) THEN
193:
194: FND_MESSAGE.SET_NAME(p_product,p_message_name);
195:
196: IF p_token1_name <> FND_API.G_MISS_CHAR

Line 217: FND_MSG_PUB.Add;

213: AND p_token5_value <> FND_API.G_MISS_CHAR THEN
214: FND_MESSAGE.SET_TOKEN(p_token5_name,p_token5_value);
215: END IF;
216:
217: FND_MSG_PUB.Add;
218:
219: END IF;
220:
221: END Add_Error_Message;

Line 232: fnd_msg_pub.reset;

228: i NUMBER;
229: cnt NUMBER;
230: msg_data VARCHAR2(240);
231: BEGIN
232: fnd_msg_pub.reset;
233: for i in 1..p_msg_count loop
234:
235: fnd_msg_pub.get (p_encoded => FND_API.G_FALSE,
236: p_data => msg_data,

Line 235: fnd_msg_pub.get (p_encoded => FND_API.G_FALSE,

231: BEGIN
232: fnd_msg_pub.reset;
233: for i in 1..p_msg_count loop
234:
235: fnd_msg_pub.get (p_encoded => FND_API.G_FALSE,
236: p_data => msg_data,
237: p_msg_index_out => cnt);
238:
239: -- dbms_output.put_line('error # ' || cnt || ': ' || msg_data);

Line 241: fnd_msg_pub.initialize;

237: p_msg_index_out => cnt);
238:
239: -- dbms_output.put_line('error # ' || cnt || ': ' || msg_data);
240: end loop ;
241: fnd_msg_pub.initialize;
242: END Display_all_msgs;
243:
244:
245: