DBA Data[Home] [Help]

APPS.AMS_UPGRADE_TRACK_ERROR_PVT dependencies on FND_MSG_PUB

Line 50: FND_MSG_PUB.initialize;

46:
47: -- Initialize message list if p_init_msg_list is set to TRUE.
48: IF FND_API.to_Boolean( p_init_msg_list )
49: THEN
50: FND_MSG_PUB.initialize;
51: END IF;
52:
53: -- Invoke table handler(AMS_UPGRADE_TRACK_ERROR_PKG.Insert_Row)
54: AMS_UPGRADE_TRACK_ERROR_PKG.Insert_Row(

Line 78: FND_MSG_PUB.Count_And_Get

74: END IF;
75:
76:
77: -- Standard call to get message count and if count is 1, get message info.
78: FND_MSG_PUB.Count_And_Get
79: (p_count => x_msg_count,
80: p_data => x_msg_data
81: );
82: EXCEPTION

Line 88: FND_MSG_PUB.Count_And_Get (

84: WHEN FND_API.G_EXC_ERROR THEN
85: ROLLBACK TO CREATE_Upgrade_Track_Error_PVT;
86: x_return_status := FND_API.G_RET_STS_ERROR;
87: -- Standard call to get message count and if count=1, get the message
88: FND_MSG_PUB.Count_And_Get (
89: p_encoded => FND_API.G_FALSE,
90: p_count => x_msg_count,
91: p_data => x_msg_data
92: );

Line 98: FND_MSG_PUB.Count_And_Get (

94: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
95: ROLLBACK TO CREATE_Upgrade_Track_Error_PVT;
96: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
97: -- Standard call to get message count and if count=1, get the message
98: FND_MSG_PUB.Count_And_Get (
99: p_encoded => FND_API.G_FALSE,
100: p_count => x_msg_count,
101: p_data => x_msg_data
102: );

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

103:
104: WHEN OTHERS THEN
105: ROLLBACK TO CREATE_Upgrade_Track_Error_PVT;
106: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
107: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
108: THEN
109: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
110: END IF;
111: -- Standard call to get message count and if count=1, get the message

Line 109: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

105: ROLLBACK TO CREATE_Upgrade_Track_Error_PVT;
106: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
107: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
108: THEN
109: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
110: END IF;
111: -- Standard call to get message count and if count=1, get the message
112: FND_MSG_PUB.Count_And_Get (
113: p_encoded => FND_API.G_FALSE,

Line 112: FND_MSG_PUB.Count_And_Get (

108: THEN
109: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
110: END IF;
111: -- Standard call to get message count and if count=1, get the message
112: FND_MSG_PUB.Count_And_Get (
113: p_encoded => FND_API.G_FALSE,
114: p_count => x_msg_count,
115: p_data => x_msg_data
116: );

Line 147: FND_MSG_PUB.initialize;

143:
144: -- Initialize message list if p_init_msg_list is set to TRUE.
145: IF FND_API.to_Boolean( p_init_msg_list )
146: THEN
147: FND_MSG_PUB.initialize;
148: END IF;
149:
150:
151: -- Initialize API return status to SUCCESS

Line 177: FND_MSG_PUB.Count_And_Get

173: END IF;
174:
175:
176: -- Standard call to get message count and if count is 1, get message info.
177: FND_MSG_PUB.Count_And_Get
178: (p_count => x_msg_count,
179: p_data => x_msg_data
180: );
181: EXCEPTION

Line 187: FND_MSG_PUB.Count_And_Get (

183: WHEN FND_API.G_EXC_ERROR THEN
184: ROLLBACK TO UPDATE_Upgrade_Track_Error_PVT;
185: x_return_status := FND_API.G_RET_STS_ERROR;
186: -- Standard call to get message count and if count=1, get the message
187: FND_MSG_PUB.Count_And_Get (
188: p_encoded => FND_API.G_FALSE,
189: p_count => x_msg_count,
190: p_data => x_msg_data
191: );

Line 197: FND_MSG_PUB.Count_And_Get (

193: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
194: ROLLBACK TO UPDATE_Upgrade_Track_Error_PVT;
195: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
196: -- Standard call to get message count and if count=1, get the message
197: FND_MSG_PUB.Count_And_Get (
198: p_encoded => FND_API.G_FALSE,
199: p_count => x_msg_count,
200: p_data => x_msg_data
201: );

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

202:
203: WHEN OTHERS THEN
204: ROLLBACK TO UPDATE_Upgrade_Track_Error_PVT;
205: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
206: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
207: THEN
208: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
209: END IF;
210: -- Standard call to get message count and if count=1, get the message

Line 208: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

204: ROLLBACK TO UPDATE_Upgrade_Track_Error_PVT;
205: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
206: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
207: THEN
208: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
209: END IF;
210: -- Standard call to get message count and if count=1, get the message
211: FND_MSG_PUB.Count_And_Get (
212: p_encoded => FND_API.G_FALSE,

Line 211: FND_MSG_PUB.Count_And_Get (

207: THEN
208: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
209: END IF;
210: -- Standard call to get message count and if count=1, get the message
211: FND_MSG_PUB.Count_And_Get (
212: p_encoded => FND_API.G_FALSE,
213: p_count => x_msg_count,
214: p_data => x_msg_data
215: );

Line 243: FND_MSG_PUB.initialize;

239:
240: -- Initialize message list if p_init_msg_list is set to TRUE.
241: IF FND_API.to_Boolean( p_init_msg_list )
242: THEN
243: FND_MSG_PUB.initialize;
244: END IF;
245:
246: -- Initialize API return status to SUCCESS
247: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 269: FND_MSG_PUB.Count_And_Get

265: END IF;
266:
267:
268: -- Standard call to get message count and if count is 1, get message info.
269: FND_MSG_PUB.Count_And_Get
270: (p_count => x_msg_count,
271: p_data => x_msg_data
272: );
273: EXCEPTION

Line 279: FND_MSG_PUB.Count_And_Get (

275: WHEN FND_API.G_EXC_ERROR THEN
276: ROLLBACK TO DELETE_Upgrade_Track_Error_PVT;
277: x_return_status := FND_API.G_RET_STS_ERROR;
278: -- Standard call to get message count and if count=1, get the message
279: FND_MSG_PUB.Count_And_Get (
280: p_encoded => FND_API.G_FALSE,
281: p_count => x_msg_count,
282: p_data => x_msg_data
283: );

Line 289: FND_MSG_PUB.Count_And_Get (

285: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
286: ROLLBACK TO DELETE_Upgrade_Track_Error_PVT;
287: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
288: -- Standard call to get message count and if count=1, get the message
289: FND_MSG_PUB.Count_And_Get (
290: p_encoded => FND_API.G_FALSE,
291: p_count => x_msg_count,
292: p_data => x_msg_data
293: );

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

294:
295: WHEN OTHERS THEN
296: ROLLBACK TO DELETE_Upgrade_Track_Error_PVT;
297: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
298: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
299: THEN
300: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
301: END IF;
302: -- Standard call to get message count and if count=1, get the message

Line 300: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);

296: ROLLBACK TO DELETE_Upgrade_Track_Error_PVT;
297: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
298: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
299: THEN
300: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
301: END IF;
302: -- Standard call to get message count and if count=1, get the message
303: FND_MSG_PUB.Count_And_Get (
304: p_encoded => FND_API.G_FALSE,

Line 303: FND_MSG_PUB.Count_And_Get (

299: THEN
300: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
301: END IF;
302: -- Standard call to get message count and if count=1, get the message
303: FND_MSG_PUB.Count_And_Get (
304: p_encoded => FND_API.G_FALSE,
305: p_count => x_msg_count,
306: p_data => x_msg_data
307: );