DBA Data[Home] [Help]

APPS.PN_VAREN_PVT dependencies on PN_VAR_RENT_PKG

Line 3289: -- := PN_VAR_RENT_PKG.find_reporting_periods(l_periodId);

3285: l_bkpt_details_val VARCHAR2 (1) := 'Y';
3286: l_period_id NUMBER;
3287: -- := to_number(name_in('BKPTS_HEADER_BLK.period_id'));
3288: l_reporting_periods NUMBER;
3289: -- := PN_VAR_RENT_PKG.find_reporting_periods(l_periodId);
3290: l_previous_bkdt_start_date DATE;
3291: l_previous_bkdt_end_date DATE;
3292: BEGIN
3293: ----------------------------------------------------------------------

Line 3591: l_reporting_periods := pn_var_rent_pkg.find_reporting_periods (l_period_id);--OOPS-RHIA

3587: pn_varen_util.pvt_debug ( 'PN_VAREN_PVT: Validate_Breakpoint_Details: l_period_Id : '
3588: || l_period_id
3589: , 3
3590: );
3591: l_reporting_periods := pn_var_rent_pkg.find_reporting_periods (l_period_id);--OOPS-RHIA
3592: pn_varen_util.pvt_debug ( 'PN_VAREN_PVT: Validate_Breakpoint_Details: l_reporting_periods : '
3593: || l_reporting_periods
3594: , 3
3595: );

Line 4736: l_period_exists := pn_var_rent_pkg.find_if_period_exists (p_variable_rent_lines_tbl (i).var_rent_id);--Checking the existence of the periods.

4732: END;
4733:
4734: IF (l_variable_rent_exists = 1) THEN
4735: -- Check if Periods generated
4736: l_period_exists := pn_var_rent_pkg.find_if_period_exists (p_variable_rent_lines_tbl (i).var_rent_id);--Checking the existence of the periods.
4737: --l_return_status := fnd_api.g_ret_sts_success;
4738:
4739:
4740: IF l_period_exists = 1 THEN -- Only when periods are generated

Line 9993: pn_var_rent_pkg.find_if_period_exists (l_varentid);

9989: , 3
9990: );
9991: --Check if periods generated
9992: l_period_exists :=
9993: pn_var_rent_pkg.find_if_period_exists (l_varentid);
9994:
9995: IF NVL (l_period_exists
9996: , 9898
9997: ) = 9898

Line 10003: pn_var_rent_pkg.create_var_rent_periods (l_varentid

9999: IF NVL (l_use_gl_calendar
10000: , 'N'
10001: ) = 'Y'
10002: THEN
10003: pn_var_rent_pkg.create_var_rent_periods (l_varentid
10004: , l_cumulativevol
10005: );
10006: x_return_status :=
10007: fnd_api.g_ret_sts_success;

Line 10012: pn_var_rent_pkg.create_var_rent_periods_nocal (l_varentid

10008: ELSIF NVL (l_use_gl_calendar
10009: , 'N'
10010: ) = 'N'
10011: THEN
10012: pn_var_rent_pkg.create_var_rent_periods_nocal (l_varentid
10013: , l_cumulativevol
10014: , l_yearstartdate
10015: );
10016: x_return_status :=fnd_api.g_ret_sts_success;

Line 10226: pn_var_rent_pkg.find_if_period_exists (l_varentid);

10222: , 3
10223: );
10224: --Check if periods generated
10225: l_period_ext :=
10226: pn_var_rent_pkg.find_if_period_exists (l_varentid);
10227: pn_varen_util.pvt_debug ( 'PN_VAREN_PVT: Undo_Periods: Value of l_period_ext : '
10228: || l_period_ext
10229: , 3
10230: );

Line 10261: pn_var_rent_pkg.delete_var_rent_periods (l_varentid);

10257:
10258: DELETE FROM pn_var_abatements_all abat
10259: WHERE abat.var_rent_id = l_varentid;
10260:
10261: pn_var_rent_pkg.delete_var_rent_periods (l_varentid);
10262: pn_var_trx_pkg.delete_transactions (p_var_rent_id => l_varentid
10263: , p_period_id => NULL
10264: , p_line_item_id => NULL
10265: );