DBA Data[Home] [Help]

APPS.OZF_ACTBUDGETS_PVT dependencies on OZF_ACTBUDGETS_PVT

Line 1: PACKAGE BODY ozf_actbudgets_pvt AS

1: PACKAGE BODY ozf_actbudgets_pvt AS
2: /*$Header: ozfvbdgb.pls 120.39.12020000.4 2012/10/18 04:27:39 kdass ship $*/
3: -- NAME
4: -- OZF_ACTBUDGETS_PVT
5: --

Line 4: -- OZF_ACTBUDGETS_PVT

1: PACKAGE BODY ozf_actbudgets_pvt AS
2: /*$Header: ozfvbdgb.pls 120.39.12020000.4 2012/10/18 04:27:39 kdass ship $*/
3: -- NAME
4: -- OZF_ACTBUDGETS_PVT
5: --
6: -- HISTORY
7: -- 04/12/2000 sugupta CREATED
8: -- 25-Jun-2000 choang Commented out show errors and uncommented exit

Line 102: g_package_name CONSTANT VARCHAR2 (30) := 'OZF_ACTBUDGETS_PVT';

98: -- request_currency -- act_budget_used_by_id Currency
99: -- approved_in_currency -- budget_source_id Currency
100: ----------------------------------------------------------------------------------------------------
101:
102: g_package_name CONSTANT VARCHAR2 (30) := 'OZF_ACTBUDGETS_PVT';
103: g_file_name CONSTANT VARCHAR2 (12) := 'ozfvbdgb.pls';
104: g_cons_fund_mode CONSTANT VARCHAR2 (30) := 'ADJUST';
105: g_recal_flag CONSTANT VARCHAR2(1) := NVL(fnd_profile.value('OZF_BUDGET_ADJ_ALLOW_RECAL'),'N');
106: g_universal_currency CONSTANT VARCHAR2 (15) := fnd_profile.VALUE ('OZF_UNIV_CURR_CODE');

Line 6498: -- p_act_budgets_rec IN ozf_actbudgets_pvt.act_budgets_rec_type

6494: -- PARAMETERS
6495: -- x_return_status OUT NOCOPY VARCHAR2,
6496: -- x_msg_count OUT NOCOPY NUMBER,
6497: -- x_msg_data OUT NOCOPY VARCHAR2,
6498: -- p_act_budgets_rec IN ozf_actbudgets_pvt.act_budgets_rec_type
6499:
6500: -- NOTES
6501: -- HISTORY
6502: -- 09/24/2002 feliu Create.

Line 6509: p_act_budgets_rec IN ozf_actbudgets_pvt.act_budgets_rec_type,

6505: PROCEDURE create_child_act_budget (
6506: x_return_status OUT NOCOPY VARCHAR2,
6507: x_msg_count OUT NOCOPY NUMBER,
6508: x_msg_data OUT NOCOPY VARCHAR2,
6509: p_act_budgets_rec IN ozf_actbudgets_pvt.act_budgets_rec_type,
6510: p_exchange_rate_type IN VARCHAR2 DEFAULT FND_API.G_MISS_CHAR
6511: ) IS
6512:
6513: l_return_status VARCHAR2 (10) := fnd_api.g_ret_sts_success;

Line 6528: l_act_budgets_rec ozf_actbudgets_pvt.act_budgets_rec_type;

6524: l_converted_amt NUMBER;
6525: l_amount_remaining NUMBER := p_act_budgets_rec.approved_amount;
6526: l_obj_currency VARCHAR2 (30) := p_act_budgets_rec.request_currency; -- object currency.
6527: l_obj_id NUMBER; -- campaign currency
6528: l_act_budgets_rec ozf_actbudgets_pvt.act_budgets_rec_type;
6529: l_act_util_rec ozf_actbudgets_pvt.act_util_rec_type ;
6530: l_act_budget_id NUMBER;
6531: l_rate NUMBER;
6532: l_obj_type VARCHAR2(30);

Line 6529: l_act_util_rec ozf_actbudgets_pvt.act_util_rec_type ;

6525: l_amount_remaining NUMBER := p_act_budgets_rec.approved_amount;
6526: l_obj_currency VARCHAR2 (30) := p_act_budgets_rec.request_currency; -- object currency.
6527: l_obj_id NUMBER; -- campaign currency
6528: l_act_budgets_rec ozf_actbudgets_pvt.act_budgets_rec_type;
6529: l_act_util_rec ozf_actbudgets_pvt.act_util_rec_type ;
6530: l_act_budget_id NUMBER;
6531: l_rate NUMBER;
6532: l_obj_type VARCHAR2(30);
6533:

Line 6656: ozf_actbudgets_pvt.create_act_budgets (

6652: l_act_budgets_rec.approval_date := SYSDATE;
6653: l_act_budgets_rec.approver_id := ozf_utility_pvt.get_resource_id (fnd_global.user_id);
6654: l_act_budgets_rec.requester_id := ozf_utility_pvt.get_resource_id (fnd_global.user_id);
6655:
6656: ozf_actbudgets_pvt.create_act_budgets (
6657: p_api_version=> l_api_version
6658: ,x_return_status=> l_return_status
6659: ,x_msg_count=> l_msg_count
6660: ,x_msg_data=> l_msg_data

Line 6883: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OZF_ACTBUDGETS_PVT';

6879: x_msg_count OUT NOCOPY NUMBER,
6880: x_msg_data OUT NOCOPY VARCHAR2
6881: )
6882: IS
6883: G_PKG_NAME CONSTANT VARCHAR2(30) := 'OZF_ACTBUDGETS_PVT';
6884: L_API_VERSION CONSTANT NUMBER := 1.0;
6885: L_API_NAME CONSTANT VARCHAR2(30) := 'update_reconcile_objfundsum';
6886: L_FULL_NAME CONSTANT VARCHAR2(60) := g_pkg_name ||'.'|| l_api_name;
6887:

Line 7203: END ozf_actbudgets_pvt;

7199: );
7200: END update_reconcile_objfundsum;
7201: */
7202:
7203: END ozf_actbudgets_pvt;