DBA Data[Home] [Help]

APPS.OZF_FUND_RECONCILE_PVT dependencies on OZF_FUNDS_PVT

Line 2438: l_fund_rec_type OZF_Funds_PVT.fund_rec_type;

2434: l_msg_count NUMBER;
2435: l_msg_data VARCHAR2(10000);
2436:
2437: l_fund_rec OZF_FUNDS_ALL_VL%ROWTYPE := p_fund_rec;
2438: l_fund_rec_type OZF_Funds_PVT.fund_rec_type;
2439: l_start_date_active Date;
2440: l_end_date_active date;
2441: -- l_return_status Varchar2(30);
2442: l_fund_id NUMBER;

Line 2506: OZF_funds_pvt.create_fund(p_api_version => 1.0

2502: ozf_utility_pvt.write_conc_log('l_fund_rec_type.end_date_active: ' || l_fund_rec_type.end_date_active);
2503: ozf_utility_pvt.write_conc_log('l_fund_rec_type.ledger_id: ' || l_fund_rec_type.ledger_id);
2504: END IF;
2505:
2506: OZF_funds_pvt.create_fund(p_api_version => 1.0
2507: ,p_init_msg_list => fnd_api.g_false
2508: ,p_commit => fnd_api.g_false
2509: ,p_validation_level => fnd_api.g_valid_level_full
2510: ,x_return_status => l_return_status

Line 2595: l_new_fund_rec_type OZF_Funds_PVT.fund_rec_type;

2591: IS
2592: l_object_version NUMBER;
2593: l_new_user_status_id NUMBER;
2594: l_new_fund_rec OZF_FUNDS_ALL_VL%ROWTYPE;
2595: l_new_fund_rec_type OZF_Funds_PVT.fund_rec_type;
2596: l_fund_rec OZF_Funds_PVT.fund_rec_type;
2597: l_return_status VARCHAR2(30) := fnd_api.g_ret_sts_success;
2598: l_api_name CONSTANT VARCHAR2(30)
2599: := 'get_new_funds';

Line 2596: l_fund_rec OZF_Funds_PVT.fund_rec_type;

2592: l_object_version NUMBER;
2593: l_new_user_status_id NUMBER;
2594: l_new_fund_rec OZF_FUNDS_ALL_VL%ROWTYPE;
2595: l_new_fund_rec_type OZF_Funds_PVT.fund_rec_type;
2596: l_fund_rec OZF_Funds_PVT.fund_rec_type;
2597: l_return_status VARCHAR2(30) := fnd_api.g_ret_sts_success;
2598: l_api_name CONSTANT VARCHAR2(30)
2599: := 'get_new_funds';
2600: l_full_name CONSTANT VARCHAR2(60)

Line 2668: OZF_funds_pvt.update_fund(p_api_version => 1.0

2664: IF G_DEBUG THEN
2665: ozf_utility_pvt.write_conc_log(l_full_name || ' update draft budget to active. ' || l_new_fund_rec_type.fund_id);
2666: END IF;
2667:
2668: OZF_funds_pvt.update_fund(p_api_version => 1.0
2669: ,p_init_msg_list => FND_API.G_FALSE
2670: ,p_commit => FND_API.G_FALSE
2671: ,p_validation_level => fnd_api.g_valid_level_full
2672: ,x_return_status => l_return_status

Line 2737: ozf_funds_pvt.update_fund(p_api_version=> 1.0

2733: l_fund_rec.fund_id := l_new_fund_rec.fund_id;
2734: l_fund_rec.object_version_number := l_object_version;
2735: l_fund_rec.TRANSFERED_FLAG := 'Y' ;
2736:
2737: ozf_funds_pvt.update_fund(p_api_version=> 1.0
2738: ,p_init_msg_list=> fnd_api.g_false
2739: ,p_commit=> fnd_api.g_false
2740: ,p_validation_level=> fnd_api.g_valid_level_full
2741: ,x_return_status=> l_return_status

Line 2843: l_fund_rec_type OZF_Funds_PVT.fund_rec_type;

2839: l_hierarchy_flag VARCHAR2(30) := NVL(p_hierarchy_flag,'N');
2840: l_amount_flag VARCHAR2(30) := NVL(p_amount_flag,'N');
2841: -- to store the parent budget information
2842: l_fund_rec OZF_FUNDS_ALL_VL%ROWTYPE;
2843: l_fund_rec_type OZF_Funds_PVT.fund_rec_type;
2844: -- to store the child budget informations
2845: l_child_fund_rec OZF_FUNDS_ALL_VL%ROWTYPE;
2846: l_child_fund_rec_type OZF_Funds_PVT.fund_rec_type;
2847: l_start_date_active DATE;

Line 2846: l_child_fund_rec_type OZF_Funds_PVT.fund_rec_type;

2842: l_fund_rec OZF_FUNDS_ALL_VL%ROWTYPE;
2843: l_fund_rec_type OZF_Funds_PVT.fund_rec_type;
2844: -- to store the child budget informations
2845: l_child_fund_rec OZF_FUNDS_ALL_VL%ROWTYPE;
2846: l_child_fund_rec_type OZF_Funds_PVT.fund_rec_type;
2847: l_start_date_active DATE;
2848: l_end_date_active DATE;
2849: l_parent_fund_id NUMBER;
2850: l_child_fund_id NUMBER;