DBA Data[Home] [Help]

APPS.AMS_CT_RULE_PUB dependencies on FND_MSG_PUB

Line 53: FND_MSG_PUB.initialize;

49:
50: -- Initialize message list if p_init_msg_list is set to TRUE.
51: IF FND_API.to_Boolean( p_init_msg_list )
52: THEN
53: FND_MSG_PUB.initialize;
54: END IF;
55:
56: -- Debug Message
57: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 101: FND_MSG_PUB.Count_And_Get

97: -- Debug Message
98: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
99:
100: -- Standard call to get message count and if count is 1, get message info.
101: FND_MSG_PUB.Count_And_Get
102: (p_count => x_msg_count,
103: p_data => x_msg_data
104: );
105: EXCEPTION

Line 115: FND_MSG_PUB.Count_And_Get (

111: WHEN FND_API.G_EXC_ERROR THEN
112: ROLLBACK TO CREATE_Ct_Rule_PUB;
113: x_return_status := FND_API.G_RET_STS_ERROR;
114: -- Standard call to get message count and if count=1, get the message
115: FND_MSG_PUB.Count_And_Get (
116: p_encoded => FND_API.G_FALSE,
117: p_count => x_msg_count,
118: p_data => x_msg_data
119: );

Line 125: FND_MSG_PUB.Count_And_Get (

121: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
122: ROLLBACK TO CREATE_Ct_Rule_PUB;
123: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
124: -- Standard call to get message count and if count=1, get the message
125: FND_MSG_PUB.Count_And_Get (
126: p_encoded => FND_API.G_FALSE,
127: p_count => x_msg_count,
128: p_data => x_msg_data
129: );

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

130:
131: WHEN OTHERS THEN
132: ROLLBACK TO CREATE_Ct_Rule_PUB;
133: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
134: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
135: THEN
136: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
137: END IF;
138: -- Standard call to get message count and if count=1, get the message

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

132: ROLLBACK TO CREATE_Ct_Rule_PUB;
133: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
134: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
135: THEN
136: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
137: END IF;
138: -- Standard call to get message count and if count=1, get the message
139: FND_MSG_PUB.Count_And_Get (
140: p_encoded => FND_API.G_FALSE,

Line 139: FND_MSG_PUB.Count_And_Get (

135: THEN
136: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
137: END IF;
138: -- Standard call to get message count and if count=1, get the message
139: FND_MSG_PUB.Count_And_Get (
140: p_encoded => FND_API.G_FALSE,
141: p_count => x_msg_count,
142: p_data => x_msg_data
143: );

Line 181: FND_MSG_PUB.initialize;

177:
178: -- Initialize message list if p_init_msg_list is set to TRUE.
179: IF FND_API.to_Boolean( p_init_msg_list )
180: THEN
181: FND_MSG_PUB.initialize;
182: END IF;
183:
184: -- Debug Message
185: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 227: FND_MSG_PUB.Count_And_Get

223: -- Debug Message
224: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
225:
226: -- Standard call to get message count and if count is 1, get message info.
227: FND_MSG_PUB.Count_And_Get
228: (p_count => x_msg_count,
229: p_data => x_msg_data
230: );
231: EXCEPTION

Line 241: FND_MSG_PUB.Count_And_Get (

237: WHEN FND_API.G_EXC_ERROR THEN
238: ROLLBACK TO UPDATE_Ct_Rule_PUB;
239: x_return_status := FND_API.G_RET_STS_ERROR;
240: -- Standard call to get message count and if count=1, get the message
241: FND_MSG_PUB.Count_And_Get (
242: p_encoded => FND_API.G_FALSE,
243: p_count => x_msg_count,
244: p_data => x_msg_data
245: );

Line 251: FND_MSG_PUB.Count_And_Get (

247: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
248: ROLLBACK TO UPDATE_Ct_Rule_PUB;
249: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
250: -- Standard call to get message count and if count=1, get the message
251: FND_MSG_PUB.Count_And_Get (
252: p_encoded => FND_API.G_FALSE,
253: p_count => x_msg_count,
254: p_data => x_msg_data
255: );

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

256:
257: WHEN OTHERS THEN
258: ROLLBACK TO UPDATE_Ct_Rule_PUB;
259: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
260: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
261: THEN
262: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
263: END IF;
264: -- Standard call to get message count and if count=1, get the message

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

258: ROLLBACK TO UPDATE_Ct_Rule_PUB;
259: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
260: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
261: THEN
262: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
263: END IF;
264: -- Standard call to get message count and if count=1, get the message
265: FND_MSG_PUB.Count_And_Get (
266: p_encoded => FND_API.G_FALSE,

Line 265: FND_MSG_PUB.Count_And_Get (

261: THEN
262: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
263: END IF;
264: -- Standard call to get message count and if count=1, get the message
265: FND_MSG_PUB.Count_And_Get (
266: p_encoded => FND_API.G_FALSE,
267: p_count => x_msg_count,
268: p_data => x_msg_data
269: );

Line 306: FND_MSG_PUB.initialize;

302:
303: -- Initialize message list if p_init_msg_list is set to TRUE.
304: IF FND_API.to_Boolean( p_init_msg_list )
305: THEN
306: FND_MSG_PUB.initialize;
307: END IF;
308:
309: -- Debug Message
310: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 352: FND_MSG_PUB.Count_And_Get

348: -- Debug Message
349: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'end');
350:
351: -- Standard call to get message count and if count is 1, get message info.
352: FND_MSG_PUB.Count_And_Get
353: (p_count => x_msg_count,
354: p_data => x_msg_data
355: );
356: EXCEPTION

Line 366: FND_MSG_PUB.Count_And_Get (

362: WHEN FND_API.G_EXC_ERROR THEN
363: ROLLBACK TO DELETE_Ct_Rule_PUB;
364: x_return_status := FND_API.G_RET_STS_ERROR;
365: -- Standard call to get message count and if count=1, get the message
366: FND_MSG_PUB.Count_And_Get (
367: p_encoded => FND_API.G_FALSE,
368: p_count => x_msg_count,
369: p_data => x_msg_data
370: );

Line 376: FND_MSG_PUB.Count_And_Get (

372: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
373: ROLLBACK TO DELETE_Ct_Rule_PUB;
374: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
375: -- Standard call to get message count and if count=1, get the message
376: FND_MSG_PUB.Count_And_Get (
377: p_encoded => FND_API.G_FALSE,
378: p_count => x_msg_count,
379: p_data => x_msg_data
380: );

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

381:
382: WHEN OTHERS THEN
383: ROLLBACK TO DELETE_Ct_Rule_PUB;
384: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
385: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
386: THEN
387: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
388: END IF;
389: -- Standard call to get message count and if count=1, get the message

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

383: ROLLBACK TO DELETE_Ct_Rule_PUB;
384: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
385: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
386: THEN
387: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
388: END IF;
389: -- Standard call to get message count and if count=1, get the message
390: FND_MSG_PUB.Count_And_Get (
391: p_encoded => FND_API.G_FALSE,

Line 390: FND_MSG_PUB.Count_And_Get (

386: THEN
387: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
388: END IF;
389: -- Standard call to get message count and if count=1, get the message
390: FND_MSG_PUB.Count_And_Get (
391: p_encoded => FND_API.G_FALSE,
392: p_count => x_msg_count,
393: p_data => x_msg_data
394: );

Line 427: FND_MSG_PUB.initialize;

423:
424: -- Initialize message list if p_init_msg_list is set to TRUE.
425: IF FND_API.to_Boolean( p_init_msg_list )
426: THEN
427: FND_MSG_PUB.initialize;
428: END IF;
429:
430: -- Debug Message
431: AMS_UTILITY_PVT.debug_message('Public API: ' || l_api_name || 'start');

Line 475: FND_MSG_PUB.Count_And_Get (

471: WHEN FND_API.G_EXC_ERROR THEN
472: ROLLBACK TO LOCK_Ct_Rule_PUB;
473: x_return_status := FND_API.G_RET_STS_ERROR;
474: -- Standard call to get message count and if count=1, get the message
475: FND_MSG_PUB.Count_And_Get (
476: p_encoded => FND_API.G_FALSE,
477: p_count => x_msg_count,
478: p_data => x_msg_data
479: );

Line 485: FND_MSG_PUB.Count_And_Get (

481: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
482: ROLLBACK TO LOCK_Ct_Rule_PUB;
483: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
484: -- Standard call to get message count and if count=1, get the message
485: FND_MSG_PUB.Count_And_Get (
486: p_encoded => FND_API.G_FALSE,
487: p_count => x_msg_count,
488: p_data => x_msg_data
489: );

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

490:
491: WHEN OTHERS THEN
492: ROLLBACK TO LOCK_Ct_Rule_PUB;
493: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
494: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
495: THEN
496: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
497: END IF;
498: -- Standard call to get message count and if count=1, get the message

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

492: ROLLBACK TO LOCK_Ct_Rule_PUB;
493: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
494: IF FND_MSG_PUB.Check_Msg_Level ( FND_MSG_PUB.G_MSG_LVL_UNEXP_ERROR)
495: THEN
496: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
497: END IF;
498: -- Standard call to get message count and if count=1, get the message
499: FND_MSG_PUB.Count_And_Get (
500: p_encoded => FND_API.G_FALSE,

Line 499: FND_MSG_PUB.Count_And_Get (

495: THEN
496: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME,l_api_name);
497: END IF;
498: -- Standard call to get message count and if count=1, get the message
499: FND_MSG_PUB.Count_And_Get (
500: p_encoded => FND_API.G_FALSE,
501: p_count => x_msg_count,
502: p_data => x_msg_data
503: );