DBA Data[Home] [Help]

APPS.OZF_FUND_RECONCILE_PVT dependencies on OZF_FUNDS_PVT

Line 2486: l_fund_rec_type OZF_Funds_PVT.fund_rec_type;

2482: l_msg_count NUMBER;
2483: l_msg_data VARCHAR2(10000);
2484:
2485: l_fund_rec OZF_FUNDS_ALL_VL%ROWTYPE := p_fund_rec;
2486: l_fund_rec_type OZF_Funds_PVT.fund_rec_type;
2487: l_start_date_active Date;
2488: l_end_date_active date;
2489: -- l_return_status Varchar2(30);
2490: l_fund_id NUMBER;

Line 2554: OZF_funds_pvt.create_fund(p_api_version => 1.0

2550: ozf_utility_pvt.write_conc_log('l_fund_rec_type.end_date_active: ' || l_fund_rec_type.end_date_active);
2551: ozf_utility_pvt.write_conc_log('l_fund_rec_type.ledger_id: ' || l_fund_rec_type.ledger_id);
2552: END IF;
2553:
2554: OZF_funds_pvt.create_fund(p_api_version => 1.0
2555: ,p_init_msg_list => fnd_api.g_false
2556: ,p_commit => fnd_api.g_false
2557: ,p_validation_level => fnd_api.g_valid_level_full
2558: ,x_return_status => l_return_status

Line 2643: l_new_fund_rec_type OZF_Funds_PVT.fund_rec_type;

2639: IS
2640: l_object_version NUMBER;
2641: l_new_user_status_id NUMBER;
2642: l_new_fund_rec OZF_FUNDS_ALL_VL%ROWTYPE;
2643: l_new_fund_rec_type OZF_Funds_PVT.fund_rec_type;
2644: l_fund_rec OZF_Funds_PVT.fund_rec_type;
2645: l_return_status VARCHAR2(30) := fnd_api.g_ret_sts_success;
2646: l_api_name CONSTANT VARCHAR2(30)
2647: := 'get_new_funds';

Line 2644: l_fund_rec OZF_Funds_PVT.fund_rec_type;

2640: l_object_version NUMBER;
2641: l_new_user_status_id NUMBER;
2642: l_new_fund_rec OZF_FUNDS_ALL_VL%ROWTYPE;
2643: l_new_fund_rec_type OZF_Funds_PVT.fund_rec_type;
2644: l_fund_rec OZF_Funds_PVT.fund_rec_type;
2645: l_return_status VARCHAR2(30) := fnd_api.g_ret_sts_success;
2646: l_api_name CONSTANT VARCHAR2(30)
2647: := 'get_new_funds';
2648: l_full_name CONSTANT VARCHAR2(60)

Line 2716: OZF_funds_pvt.update_fund(p_api_version => 1.0

2712: IF G_DEBUG THEN
2713: ozf_utility_pvt.write_conc_log(l_full_name || ' update draft budget to active. ' || l_new_fund_rec_type.fund_id);
2714: END IF;
2715:
2716: OZF_funds_pvt.update_fund(p_api_version => 1.0
2717: ,p_init_msg_list => FND_API.G_FALSE
2718: ,p_commit => FND_API.G_FALSE
2719: ,p_validation_level => fnd_api.g_valid_level_full
2720: ,x_return_status => l_return_status

Line 2785: ozf_funds_pvt.update_fund(p_api_version=> 1.0

2781: l_fund_rec.fund_id := l_new_fund_rec.fund_id;
2782: l_fund_rec.object_version_number := l_object_version;
2783: l_fund_rec.TRANSFERED_FLAG := 'Y' ;
2784:
2785: ozf_funds_pvt.update_fund(p_api_version=> 1.0
2786: ,p_init_msg_list=> fnd_api.g_false
2787: ,p_commit=> fnd_api.g_false
2788: ,p_validation_level=> fnd_api.g_valid_level_full
2789: ,x_return_status=> l_return_status

Line 2891: l_fund_rec_type OZF_Funds_PVT.fund_rec_type;

2887: l_hierarchy_flag VARCHAR2(30) := NVL(p_hierarchy_flag,'N');
2888: l_amount_flag VARCHAR2(30) := NVL(p_amount_flag,'N');
2889: -- to store the parent budget information
2890: l_fund_rec OZF_FUNDS_ALL_VL%ROWTYPE;
2891: l_fund_rec_type OZF_Funds_PVT.fund_rec_type;
2892: -- to store the child budget informations
2893: l_child_fund_rec OZF_FUNDS_ALL_VL%ROWTYPE;
2894: l_child_fund_rec_type OZF_Funds_PVT.fund_rec_type;
2895: l_start_date_active DATE;

Line 2894: l_child_fund_rec_type OZF_Funds_PVT.fund_rec_type;

2890: l_fund_rec OZF_FUNDS_ALL_VL%ROWTYPE;
2891: l_fund_rec_type OZF_Funds_PVT.fund_rec_type;
2892: -- to store the child budget informations
2893: l_child_fund_rec OZF_FUNDS_ALL_VL%ROWTYPE;
2894: l_child_fund_rec_type OZF_Funds_PVT.fund_rec_type;
2895: l_start_date_active DATE;
2896: l_end_date_active DATE;
2897: l_parent_fund_id NUMBER;
2898: l_child_fund_id NUMBER;