DBA Data[Home] [Help]

APPS.OZF_ACCRUAL_ENGINE dependencies on OZF_ACCRUAL_ENGINE

Line 1: PACKAGE BODY OZF_ACCRUAL_ENGINE AS

1: PACKAGE BODY OZF_ACCRUAL_ENGINE AS
2: /* $Header: ozfacreb.pls 120.56.12010000.5 2009/02/18 07:08:48 psomyaju ship $ */
3: ----------------------------------------------------------------------------------
4: -- Package Name
5: -- ozf_accrual_engine

Line 5: -- ozf_accrual_engine

1: PACKAGE BODY OZF_ACCRUAL_ENGINE AS
2: /* $Header: ozfacreb.pls 120.56.12010000.5 2009/02/18 07:08:48 psomyaju ship $ */
3: ----------------------------------------------------------------------------------
4: -- Package Name
5: -- ozf_accrual_engine
6: -- PROCEDURES
7: -- calculate_accrual_amount
8: -- adjust_accrual
9: -- Get_Message

Line 97: g_pkg_name CONSTANT VARCHAR2 (30) := 'OZF_ACCRUAL_ENGINE';

93: -- 11/09/2008 psomyaju bug 7431334 - GL ENTRIES ON OFF-INVOICE DISCOUNTS CREATED ON
94: -- 11/24/2008 nirprasa bug 7030415 - R12SIP WE CAN'T SETUP CURRENY CONVERSION TYPE FOR SPECIFIC OPERATING UNIT
95: -- 02/18/2009 kdass bug 8258508 - TST1211:UNABLE TO CREATE CLAIM FOR CHILD BATCHES
96: -------------------------------------------------------------------------------
97: g_pkg_name CONSTANT VARCHAR2 (30) := 'OZF_ACCRUAL_ENGINE';
98: g_recal_flag CONSTANT VARCHAR2(1) := NVL(fnd_profile.value('OZF_BUDGET_ADJ_ALLOW_RECAL'),'N');
99: g_debug_flag VARCHAR2 (1) := 'N';
100: G_DEBUG BOOLEAN := FND_MSG_PUB.check_msg_level(FND_MSG_PUB.g_msg_lvl_debug_high);
101: g_universal_currency CONSTANT VARCHAR2 (15) := fnd_profile.VALUE ('OZF_UNIV_CURR_CODE');

Line 2055: ozf_accrual_engine.calculate_accrual_amount (

2051: OPEN c_cust_number(p_adj_amt_tbl(i).order_header_id);
2052: FETCH c_cust_number INTO l_cust_account_id, l_bill_to_site_use_id, l_ship_to_site_use_id;
2053: CLOSE c_cust_number;
2054:
2055: ozf_accrual_engine.calculate_accrual_amount (
2056: x_return_status => l_return_status,
2057: p_src_id => p_adj_amt_tbl(i).qp_list_header_id,
2058: p_earned_amt => p_adj_amt_tbl(i).earned_amount,
2059: p_cust_account_type => 'BILL_TO',

Line 2271: ozf_utility_pvt.write_conc_log (' /**************UNEXPECTED EXCEPTION in ozf_accrual_engine.post_accrual_to_budget');

2267:
2268: EXCEPTION
2269: WHEN OTHERS THEN
2270: x_return_status := fnd_api.g_ret_sts_unexp_error;
2271: ozf_utility_pvt.write_conc_log (' /**************UNEXPECTED EXCEPTION in ozf_accrual_engine.post_accrual_to_budget');
2272: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
2273: fnd_msg_pub.add_exc_msg ('ozf_accrual_engine', 'post_accrual_to_budget');
2274: END IF;
2275: fnd_msg_pub.count_and_get (

Line 2273: fnd_msg_pub.add_exc_msg ('ozf_accrual_engine', 'post_accrual_to_budget');

2269: WHEN OTHERS THEN
2270: x_return_status := fnd_api.g_ret_sts_unexp_error;
2271: ozf_utility_pvt.write_conc_log (' /**************UNEXPECTED EXCEPTION in ozf_accrual_engine.post_accrual_to_budget');
2272: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
2273: fnd_msg_pub.add_exc_msg ('ozf_accrual_engine', 'post_accrual_to_budget');
2274: END IF;
2275: fnd_msg_pub.count_and_get (
2276: p_count=> x_msg_count,
2277: p_data=> x_msg_data,

Line 5307: END ozf_accrual_engine;

5303: );
5304:
5305: END post_related_accrual_to_gl;
5306:
5307: END ozf_accrual_engine;