DBA Data[Home] [Help]

APPS.PN_TENANCIES_PKG dependencies on PNT_LOCATIONS_PKG

Line 2980: NVL(cust_assign_start_date, pnt_locations_pkg.g_start_of_time) cust_assign_start_date,

2976: )
2977: IS
2978: CURSOR get_cust_space_assign_id IS
2979: SELECT cust_space_assign_id,
2980: NVL(cust_assign_start_date, pnt_locations_pkg.g_start_of_time) cust_assign_start_date,
2981: NVL(cust_assign_end_date, pnt_locations_pkg.g_end_of_time) cust_assign_end_date
2982: FROM pn_space_assign_cust_all
2983: WHERE cust_account_id = p_customer_id
2984: AND location_id = p_location_id

Line 2981: NVL(cust_assign_end_date, pnt_locations_pkg.g_end_of_time) cust_assign_end_date

2977: IS
2978: CURSOR get_cust_space_assign_id IS
2979: SELECT cust_space_assign_id,
2980: NVL(cust_assign_start_date, pnt_locations_pkg.g_start_of_time) cust_assign_start_date,
2981: NVL(cust_assign_end_date, pnt_locations_pkg.g_end_of_time) cust_assign_end_date
2982: FROM pn_space_assign_cust_all
2983: WHERE cust_account_id = p_customer_id
2984: AND location_id = p_location_id
2985: AND cust_assign_start_date <= p_cust_assign_end_dt

Line 3027: ,cust_assign_start_date = NVL(cust_assign_start_date, pnt_locations_pkg.g_start_of_time)

3023:
3024: UPDATE pn_space_assign_cust_all
3025: SET lease_id = p_lease_id
3026: ,tenancy_id = p_tenancy_id
3027: ,cust_assign_start_date = NVL(cust_assign_start_date, pnt_locations_pkg.g_start_of_time)
3028: ,cust_assign_end_date = NVL(cust_assign_end_date, pnt_locations_pkg.g_end_of_time)
3029: ,site_use_id = p_cust_site_use_id
3030: ,recovery_space_std_code = p_recovery_space_std_code
3031: ,recovery_type_code = p_recovery_type_code

Line 3028: ,cust_assign_end_date = NVL(cust_assign_end_date, pnt_locations_pkg.g_end_of_time)

3024: UPDATE pn_space_assign_cust_all
3025: SET lease_id = p_lease_id
3026: ,tenancy_id = p_tenancy_id
3027: ,cust_assign_start_date = NVL(cust_assign_start_date, pnt_locations_pkg.g_start_of_time)
3028: ,cust_assign_end_date = NVL(cust_assign_end_date, pnt_locations_pkg.g_end_of_time)
3029: ,site_use_id = p_cust_site_use_id
3030: ,recovery_space_std_code = p_recovery_space_std_code
3031: ,recovery_type_code = p_recovery_type_code
3032: ,fin_oblig_end_date = NVL(cust_assign_end_date, pnt_locations_pkg.g_end_of_time)

Line 3032: ,fin_oblig_end_date = NVL(cust_assign_end_date, pnt_locations_pkg.g_end_of_time)

3028: ,cust_assign_end_date = NVL(cust_assign_end_date, pnt_locations_pkg.g_end_of_time)
3029: ,site_use_id = p_cust_site_use_id
3030: ,recovery_space_std_code = p_recovery_space_std_code
3031: ,recovery_type_code = p_recovery_type_code
3032: ,fin_oblig_end_date = NVL(cust_assign_end_date, pnt_locations_pkg.g_end_of_time)
3033: ,last_update_date = SYSDATE
3034: ,last_updated_by = NVL(FND_PROFILE.VALUE('USER_ID'),-1)
3035: WHERE cust_space_assign_id = l_cust_space_assign_id;
3036: