DBA Data[Home] [Help]

APPS.CAC_AVLBLTY_PUB dependencies on FND_MSG_PUB

Line 68: fnd_msg_pub.initialize;

64:
65: -- Initialize message list
66: IF fnd_api.to_boolean( p_init_msg_list )
67: THEN
68: fnd_msg_pub.initialize;
69: END IF;
70:
71: -- Initialize return status to SUCCESS
72: x_return_status := fnd_api.g_ret_sts_success;

Line 93: fnd_msg_pub.count_and_get( p_encoded => 'F'

89:
90: WHEN fnd_api.g_exc_error
91: THEN
92: x_return_status := fnd_api.g_ret_sts_error;
93: fnd_msg_pub.count_and_get( p_encoded => 'F'
94: , p_count => x_msg_count
95: , p_data => x_msg_data
96: );
97:

Line 101: fnd_msg_pub.count_and_get( p_encoded => 'F'

97:
98: WHEN fnd_api.g_exc_unexpected_error
99: THEN
100: x_return_status := fnd_api.g_ret_sts_unexp_error;
101: fnd_msg_pub.count_and_get( p_encoded => 'F'
102: , p_count => x_msg_count
103: , p_data => x_msg_data
104: );
105:

Line 116: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME

112:
113: --
114: -- Push message onto CRM stack
115: --
116: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME
117: , l_api_name
118: , SQLERRM
119: );
120: --

Line 123: x_msg_count := FND_MSG_PUB.COUNT_MSG;

119: );
120: --
121: -- Count the messages on the CRM stack
122: --
123: x_msg_count := FND_MSG_PUB.COUNT_MSG;
124:
125: END GET_SCHEDULE;
126:
127:

Line 185: fnd_msg_pub.initialize;

181:
182: -- Initialize message list
183: IF fnd_api.to_boolean( p_init_msg_list )
184: THEN
185: fnd_msg_pub.initialize;
186: END IF;
187:
188: -- Initialize return status to SUCCESS
189: x_return_status := fnd_api.g_ret_sts_success;

Line 210: fnd_msg_pub.count_and_get( p_encoded => 'F'

206:
207: WHEN fnd_api.g_exc_error
208: THEN
209: x_return_status := fnd_api.g_ret_sts_error;
210: fnd_msg_pub.count_and_get( p_encoded => 'F'
211: , p_count => x_msg_count
212: , p_data => x_msg_data
213: );
214:

Line 218: fnd_msg_pub.count_and_get( p_encoded => 'F'

214:
215: WHEN fnd_api.g_exc_unexpected_error
216: THEN
217: x_return_status := fnd_api.g_ret_sts_unexp_error;
218: fnd_msg_pub.count_and_get( p_encoded => 'F'
219: , p_count => x_msg_count
220: , p_data => x_msg_data
221: );
222:

Line 233: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME

229:
230: --
231: -- Push message onto CRM stack
232: --
233: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME
234: , l_api_name
235: , SQLERRM
236: );
237: --

Line 240: x_msg_count := FND_MSG_PUB.COUNT_MSG;

236: );
237: --
238: -- Count the messages on the CRM stack
239: --
240: x_msg_count := FND_MSG_PUB.COUNT_MSG;
241:
242: END GET_SCHEDULE_SUMMARY;
243:
244:

Line 345: fnd_msg_pub.initialize;

341:
342: -- Initialize message list
343: IF fnd_api.to_boolean( p_init_msg_list )
344: THEN
345: fnd_msg_pub.initialize;
346: END IF;
347:
348: -- Initialize return status to SUCCESS
349: x_return_status := fnd_api.g_ret_sts_success;

Line 377: fnd_msg_pub.count_and_get( p_encoded => 'F'

373:
374: WHEN fnd_api.g_exc_unexpected_error
375: THEN
376: x_return_status := fnd_api.g_ret_sts_unexp_error;
377: fnd_msg_pub.count_and_get( p_encoded => 'F'
378: , p_count => x_msg_count
379: , p_data => x_msg_data
380: );
381:

Line 392: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME

388:
389: --
390: -- Push message onto CRM stack
391: --
392: FND_MSG_PUB.Add_Exc_Msg( G_PKG_NAME
393: , l_api_name
394: , SQLERRM
395: );
396: --

Line 399: x_msg_count := FND_MSG_PUB.COUNT_MSG;

395: );
396: --
397: -- Count the messages on the CRM stack
398: --
399: x_msg_count := FND_MSG_PUB.COUNT_MSG;
400:
401: END IS_AVAILABLE;
402:
403: