DBA Data[Home] [Help]

APPS.OZF_TP_ACCRUAL_PVT dependencies on FND_MSG_PUB

Line 17: OZF_DEBUG_HIGH_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);

13: G_PRICING_EVENT CONSTANT VARCHAR2(30) := 'PRICING';
14:
15: G_TP_ACCRUAL_UTIL_TYPE CONSTANT VARCHAR2(30) :='ADJUSTMENT';
16:
17: OZF_DEBUG_HIGH_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
18: OZF_DEBUG_LOW_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_low);
19:
20: G_PRC_DIFF_BUDGET NUMBER := FND_PROFILE.value('OZF_THRDPTY_PRCDIFF_BUDGET');
21: G_TP_DEFAULT_PRICE_LIST NUMBER := FND_PROFILE.value('OZF_TP_ACCRUAL_PRICE_LIST');

Line 18: OZF_DEBUG_LOW_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_low);

14:
15: G_TP_ACCRUAL_UTIL_TYPE CONSTANT VARCHAR2(30) :='ADJUSTMENT';
16:
17: OZF_DEBUG_HIGH_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
18: OZF_DEBUG_LOW_ON BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_low);
19:
20: G_PRC_DIFF_BUDGET NUMBER := FND_PROFILE.value('OZF_THRDPTY_PRCDIFF_BUDGET');
21: G_TP_DEFAULT_PRICE_LIST NUMBER := FND_PROFILE.value('OZF_TP_ACCRUAL_PRICE_LIST');
22: G_PRICING_SIM_EVENT VARCHAR2(30) := FND_PROFILE.value('OZF_PRICING_SIMULATION_EVENT');

Line 155: FND_MSG_PUB.initialize;

151: x_return_status := FND_API.G_RET_STS_SUCCESS;
152:
153: --Initialize message list if p_init_msg_list is TRUE.
154: IF FND_API.To_Boolean (p_init_msg_list) THEN
155: FND_MSG_PUB.initialize;
156: END IF;
157:
158: -- Debug Message
159: IF OZF_DEBUG_HIGH_ON THEN

Line 203: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN

199: AND a.error_code = 'OZF_BATCH_STATUS_WNG'
200: );
201: EXCEPTION
202: WHEN OTHERS THEN
203: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
204: FND_MESSAGE.set_name('OZF', 'OZF_INS_RESALE_LOG_WRG');
205: FND_MESSAGE.Set_Token('TEXT',l_full_name||': End');
206: FND_MSG_PUB.add;
207: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;

Line 206: FND_MSG_PUB.add;

202: WHEN OTHERS THEN
203: IF FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_error) THEN
204: FND_MESSAGE.set_name('OZF', 'OZF_INS_RESALE_LOG_WRG');
205: FND_MESSAGE.Set_Token('TEXT',l_full_name||': End');
206: FND_MSG_PUB.add;
207: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
208: END IF;
209: END;
210: END IF;

Line 218: FND_MSG_PUB.Count_And_Get (

214: OZF_UTILITY_PVT.debug_message(p_message_text => l_full_name||': End');
215: END IF;
216:
217: --Standard call to get message count and if count=1, get the message
218: FND_MSG_PUB.Count_And_Get (
219: p_encoded => FND_API.G_FALSE,
220: p_count => x_msg_count,
221: p_data => x_msg_data
222: );

Line 227: FND_MSG_PUB.Count_And_Get (

223: EXCEPTION
224: WHEN FND_API.G_EXC_ERROR THEN
225: x_return_status := FND_API.G_RET_STS_ERROR;
226: -- Standard call to get message count and if count=1, get the message
227: FND_MSG_PUB.Count_And_Get (
228: p_encoded => FND_API.G_FALSE,
229: p_count => x_msg_count,
230: p_data => x_msg_data
231: );

Line 235: FND_MSG_PUB.Count_And_Get (

231: );
232: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
233: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
234: -- Standard call to get message count and if count=1, get the message
235: FND_MSG_PUB.Count_And_Get (
236: p_encoded => FND_API.G_FALSE,
237: p_count => x_msg_count,
238: p_data => x_msg_data
239: );

Line 244: FND_MSG_PUB.Count_And_Get (

240: WHEN OTHERS THEN
241: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
242:
243: -- Standard call to get message count and if count=1, get the message
244: FND_MSG_PUB.Count_And_Get (
245: p_encoded => FND_API.G_FALSE,
246: p_count => x_msg_count,
247: p_data => x_msg_data
248: );

Line 294: FND_MSG_PUB.initialize;

290: END IF;
291:
292: --Initialize message list if p_init_msg_list is TRUE.
293: IF FND_API.To_Boolean (p_init_msg_list) THEN
294: FND_MSG_PUB.initialize;
295: END IF;
296:
297: -- Debug Message
298: IF OZF_DEBUG_HIGH_ON THEN

Line 402: FND_MSG_PUB.Count_And_Get (

398: IF OZF_DEBUG_HIGH_ON THEN
399: OZF_UTILITY_PVT.debug_message(p_message_text => l_full_name||': End');
400: END IF;
401: --Standard call to get message count and if count=1, get the message
402: FND_MSG_PUB.Count_And_Get (
403: p_encoded => FND_API.G_FALSE,
404: p_count => x_msg_count,
405: p_data => x_msg_data
406: );

Line 411: FND_MSG_PUB.Count_And_Get (

407: EXCEPTION
408: WHEN FND_API.G_EXC_ERROR THEN
409: x_return_status := FND_API.G_RET_STS_ERROR;
410: -- Standard call to get message count and if count=1, get the message
411: FND_MSG_PUB.Count_And_Get (
412: p_encoded => FND_API.G_FALSE,
413: p_count => x_msg_count,
414: p_data => x_msg_data
415: );

Line 419: FND_MSG_PUB.Count_And_Get (

415: );
416: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
417: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
418: -- Standard call to get message count and if count=1, get the message
419: FND_MSG_PUB.Count_And_Get (
420: p_encoded => FND_API.G_FALSE,
421: p_count => x_msg_count,
422: p_data => x_msg_data
423: );

Line 428: FND_MSG_PUB.Count_And_Get (

424: WHEN OTHERS THEN
425: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
426:
427: -- Standard call to get message count and if count=1, get the message
428: FND_MSG_PUB.Count_And_Get (
429: p_encoded => FND_API.G_FALSE,
430: p_count => x_msg_count,
431: p_data => x_msg_data
432: );

Line 1895: FND_MSG_PUB.initialize;

1891: END IF;
1892:
1893: --Initialize message list if p_init_msg_list is TRUE.
1894: IF FND_API.To_Boolean (p_init_msg_list) THEN
1895: FND_MSG_PUB.initialize;
1896: END IF;
1897:
1898: -- Debug Message
1899: IF OZF_DEBUG_HIGH_ON THEN

Line 2296: FND_MSG_PUB.Count_And_Get (

2292: p_caller_type => G_RESALE_CALLER,
2293: x_return_status => l_return_status
2294: );
2295: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
2296: FND_MSG_PUB.Count_And_Get (
2297: p_encoded => FND_API.G_FALSE,
2298: p_count => l_temp_count,
2299: p_data => l_temp_data
2300: );

Line 2302: fnd_msg_pub.Get(

2298: p_count => l_temp_count,
2299: p_data => l_temp_data
2300: );
2301:
2302: fnd_msg_pub.Get(
2303: p_msg_index => l_temp_count,
2304: p_encoded => FND_API.G_FALSE,
2305: p_data => l_temp_data,
2306: p_msg_index_out => l_temp_count

Line 2364: FND_MSG_PUB.Count_And_Get (

2360: IF OZF_DEBUG_HIGH_ON THEN
2361: OZF_UTILITY_PVT.debug_message(l_full_name||': End'|| x_return_status);
2362: END IF;
2363: --Standard call to get message count and if count=1, get the message
2364: FND_MSG_PUB.Count_And_Get (
2365: p_encoded => FND_API.G_FALSE,
2366: p_count => x_msg_count,
2367: p_data => x_msg_data
2368: );

Line 2374: FND_MSG_PUB.Count_And_Get (

2370: WHEN FND_API.G_EXC_ERROR THEN
2371: ROLLBACK TO Process_Resale_Order;
2372: x_return_status := FND_API.G_RET_STS_ERROR;
2373: -- Standard call to get message count and if count=1, get the message
2374: FND_MSG_PUB.Count_And_Get (
2375: p_encoded => FND_API.G_FALSE,
2376: p_count => x_msg_count,
2377: p_data => x_msg_data
2378: );

Line 2384: FND_MSG_PUB.Count_And_Get (

2380: ROLLBACK TO Process_Resale_Order;
2381: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2382:
2383: -- Standard call to get message count and if count=1, get the message
2384: FND_MSG_PUB.Count_And_Get (
2385: p_encoded => FND_API.G_FALSE,
2386: p_count => x_msg_count,
2387: p_data => x_msg_data
2388: );

Line 2394: FND_MSG_PUB.Count_And_Get (

2390: ROLLBACK TO Process_Resale_Order;
2391: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2392:
2393: -- Standard call to get message count and if count=1, get the message
2394: FND_MSG_PUB.Count_And_Get (
2395: p_encoded => FND_API.G_FALSE,
2396: p_count => x_msg_count,
2397: p_data => x_msg_data
2398: );

Line 2446: FND_MSG_PUB.initialize;

2442: END IF;
2443:
2444: --Initialize message lISt if p_init_msg_list IS TRUE.
2445: IF FND_API.To_BOOLEAN (p_init_msg_list) THEN
2446: FND_MSG_PUB.initialize;
2447: END IF;
2448:
2449: -- Debug Message
2450: IF OZF_DEBUG_LOW_ON THEN

Line 2516: FND_MSG_PUB.Count_And_Get (

2512: IF OZF_DEBUG_HIGH_ON THEN
2513: OZF_UTILITY_PVT.debug_message(p_message_text => l_full_name||': End');
2514: END IF;
2515: --Standard call to get message count and if count=1, get the message
2516: FND_MSG_PUB.Count_And_Get (
2517: p_encoded => FND_API.G_FALSE,
2518: p_count => x_msg_count,
2519: p_data => x_msg_data
2520: );

Line 2527: FND_MSG_PUB.Count_And_Get (

2523: WHEN FND_API.G_EXC_ERROR THEN
2524: ROLLBACK TO PROCESS_TP_RESALE;
2525: x_return_status := FND_API.G_RET_STS_ERROR;
2526: -- Standard call to get message count and if count=1, get the message
2527: FND_MSG_PUB.Count_And_Get (
2528: p_encoded => FND_API.G_FALSE,
2529: p_count => x_msg_count,
2530: p_data => x_msg_data
2531: );

Line 2537: FND_MSG_PUB.Count_And_Get (

2533: ROLLBACK TO PROCESS_TP_RESALE;
2534: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2535:
2536: -- Standard call to get message count and if count=1, get the message
2537: FND_MSG_PUB.Count_And_Get (
2538: p_encoded => FND_API.G_FALSE,
2539: p_count => x_msg_count,
2540: p_data => x_msg_data
2541: );

Line 2547: FND_MSG_PUB.Count_And_Get (

2543: ROLLBACK TO PROCESS_TP_RESALE;
2544: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2545:
2546: -- Standard call to get message count and if count=1, get the message
2547: FND_MSG_PUB.Count_And_Get (
2548: p_encoded => FND_API.G_FALSE,
2549: p_count => x_msg_count,
2550: p_data => x_msg_data
2551: );

Line 2653: FND_MSG_PUB.initialize;

2649: END IF;
2650:
2651: --Initialize message list if p_init_msg_list is TRUE.
2652: IF FND_API.To_Boolean (p_init_msg_list) THEN
2653: FND_MSG_PUB.initialize;
2654: END IF;
2655:
2656: -- Debug Message
2657: IF OZF_DEBUG_HIGH_ON THEN

Line 2788: FND_MSG_PUB.Count_And_Get (

2784: OZF_UTILITY_PVT.debug_message(p_message_text => l_full_name||': End');
2785: END IF;
2786:
2787: --Standard call to get message count and if count=1, get the message
2788: FND_MSG_PUB.Count_And_Get (
2789: p_encoded => FND_API.G_FALSE,
2790: p_count => x_msg_count,
2791: p_data => x_msg_data
2792: );

Line 2797: FND_MSG_PUB.Count_And_Get (

2793: EXCEPTION
2794: WHEN FND_API.G_EXC_ERROR THEN
2795: x_return_status := FND_API.G_RET_STS_ERROR;
2796: -- Standard call to get message count and if count=1, get the message
2797: FND_MSG_PUB.Count_And_Get (
2798: p_encoded => FND_API.G_FALSE,
2799: p_count => x_msg_count,
2800: p_data => x_msg_data
2801: );

Line 2806: FND_MSG_PUB.Count_And_Get (

2802: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
2803: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2804:
2805: -- Standard call to get message count and if count=1, get the message
2806: FND_MSG_PUB.Count_And_Get (
2807: p_encoded => FND_API.G_FALSE,
2808: p_count => x_msg_count,
2809: p_data => x_msg_data
2810: );

Line 2816: FND_MSG_PUB.Count_And_Get (

2812: ROLLBACK TO TP_ACCRUAL_MV_IC;
2813: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2814:
2815: -- Standard call to get message count and if count=1, get the message
2816: FND_MSG_PUB.Count_And_Get (
2817: p_encoded => FND_API.G_FALSE,
2818: p_count => x_msg_count,
2819: p_data => x_msg_data
2820: );

Line 3033: FND_MSG_PUB.initialize;

3029: END IF;
3030:
3031: --Initialize message list if p_init_msg_list is TRUE.
3032: IF FND_API.To_Boolean (p_init_msg_list) THEN
3033: FND_MSG_PUB.initialize;
3034: END IF;
3035:
3036: -- Debug Message
3037: IF OZF_DEBUG_HIGH_ON THEN

Line 3552: FND_MSG_PUB.Count_And_Get (

3548: p_caller_type => 'IFACE',
3549: x_return_status => l_return_status
3550: );
3551: IF l_return_status <> FND_API.G_RET_STS_SUCCESS THEN
3552: FND_MSG_PUB.Count_And_Get (
3553: p_encoded => FND_API.G_FALSE,
3554: p_count => l_temp_count,
3555: p_data => l_temp_data
3556: );

Line 3558: FND_MSG_PUB.Get(

3554: p_count => l_temp_count,
3555: p_data => l_temp_data
3556: );
3557:
3558: FND_MSG_PUB.Get(
3559: p_msg_index => l_temp_count,
3560: p_encoded => FND_API.G_FALSE,
3561: p_data => l_temp_data,
3562: p_msg_index_out => l_temp_count

Line 3738: FND_MSG_PUB.Count_And_Get (

3734: IF OZF_DEBUG_HIGH_ON THEN
3735: OZF_UTILITY_PVT.debug_message(p_message_text => l_full_name||': end');
3736: END IF;
3737: --Standard call to get message count and if count=1, get the message
3738: FND_MSG_PUB.Count_And_Get (
3739: p_encoded => FND_API.G_FALSE,
3740: p_count => x_msg_count,
3741: p_data => x_msg_data
3742: );

Line 3748: FND_MSG_PUB.Count_And_Get (

3744: EXCEPTION
3745: WHEN FND_API.G_EXC_ERROR THEN
3746: x_return_status := FND_API.G_RET_STS_ERROR;
3747: -- Standard call to get message count and if count=1, get the message
3748: FND_MSG_PUB.Count_And_Get (
3749: p_encoded => FND_API.G_FALSE,
3750: p_count => x_msg_count,
3751: p_data => x_msg_data
3752: );

Line 3758: FND_MSG_PUB.Count_And_Get (

3754: ROLLBACK TO Process_Order;
3755: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3756:
3757: -- Standard call to get message count and if count=1, get the message
3758: FND_MSG_PUB.Count_And_Get (
3759: p_encoded => FND_API.G_FALSE,
3760: p_count => x_msg_count,
3761: p_data => x_msg_data
3762: );

Line 3768: FND_MSG_PUB.Count_And_Get (

3764: ROLLBACK TO Process_Order;
3765: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
3766:
3767: -- Standard call to get message count and if count=1, get the message
3768: FND_MSG_PUB.Count_And_Get (
3769: p_encoded => FND_API.G_FALSE,
3770: p_count => x_msg_count,
3771: p_data => x_msg_data
3772: );

Line 3929: FND_MSG_PUB.initialize;

3925: END IF;
3926:
3927: --Initialize message list if p_init_msg_list is TRUE.
3928: IF FND_API.To_Boolean (p_init_msg_list) THEN
3929: FND_MSG_PUB.initialize;
3930: END IF;
3931:
3932: -- Debug Message
3933: IF OZF_DEBUG_HIGH_ON THEN

Line 4158: FND_MSG_PUB.Count_And_Get (

4154: IF OZF_DEBUG_HIGH_ON THEN
4155: OZF_UTILITY_PVT.debug_message(p_message_text => l_full_name||': End');
4156: END IF;
4157: --Standard call to get message count and if count=1, get the message
4158: FND_MSG_PUB.Count_And_Get (
4159: p_encoded => FND_API.G_FALSE,
4160: p_count => x_msg_count,
4161: p_data => x_msg_data
4162: );

Line 4168: FND_MSG_PUB.Count_And_Get (

4164: EXCEPTION
4165: WHEN FND_API.G_EXC_ERROR THEN
4166: x_return_status := FND_API.G_RET_STS_ERROR;
4167: -- Standard call to get message count and if count=1, get the message
4168: FND_MSG_PUB.Count_And_Get (
4169: p_encoded => FND_API.G_FALSE,
4170: p_count => x_msg_count,
4171: p_data => x_msg_data
4172: );

Line 4177: FND_MSG_PUB.Count_And_Get (

4173: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
4174: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
4175:
4176: -- Standard call to get message count and if count=1, get the message
4177: FND_MSG_PUB.Count_And_Get (
4178: p_encoded => FND_API.G_FALSE,
4179: p_count => x_msg_count,
4180: p_data => x_msg_data
4181: );

Line 4187: FND_MSG_PUB.Count_And_Get (

4183: ROLLBACK TO Process_TP_ACCRUAL;
4184: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
4185:
4186: -- Standard call to get message count and if count=1, get the message
4187: FND_MSG_PUB.Count_And_Get (
4188: p_encoded => FND_API.G_FALSE,
4189: p_count => x_msg_count,
4190: p_data => x_msg_data
4191: );