DBA Data[Home] [Help]

APPS.AP_WEB_POLICY_UTILS dependencies on AP_POL_LOCATIONS_B

Line 694: WHERE exists (select 'x' from ap_pol_locations_b);

690:
691: CURSOR locations_defined_cur IS
692: SELECT 'Y'
693: FROM dual
694: WHERE exists (select 'x' from ap_pol_locations_b);
695: l_locations_defined VARCHAR2(1);
696:
697: CURSOR missing_translations_cur IS
698: SELECT count(1) missing_translation_count

Line 4481: from ap_pol_locations_b);

4477: select 1 location_count
4478: from dual
4479: where exists
4480: (select 1
4481: from ap_pol_locations_b);
4482:
4483: location_rec location_cur%ROWTYPE;
4484: BEGIN
4485:

Line 6221: from AP_POL_SCHEDULE_OPTIONS opts, AP_POL_LOCATIONS_B loc1, AP_POL_LOCATIONS_B loc2, ap_expense_report_params_all p

6217: AND (opts.end_date is null OR opts.end_date >= p_expense_date)
6218: AND LOCATION_ID = p_location_id
6219: UNION ALL
6220: select opts.location_id
6221: from AP_POL_SCHEDULE_OPTIONS opts, AP_POL_LOCATIONS_B loc1, AP_POL_LOCATIONS_B loc2, ap_expense_report_params_all p
6222: where p.parameter_id = p_expense_type_id
6223: AND policy_id = p.company_policy_id
6224: AND opts.option_type = 'LOCATION'
6225: AND opts.status = 'ACTIVE'

Line 6235: from AP_POL_SCHEDULE_OPTIONS opts, AP_POL_LOCATIONS_B loc, ap_expense_report_params_all p

6231: AND loc2.location_id = p_location_id
6232: UNION ALL
6233: -- Will find the all other location for a given policy
6234: select loc.location_id
6235: from AP_POL_SCHEDULE_OPTIONS opts, AP_POL_LOCATIONS_B loc, ap_expense_report_params_all p
6236: where p.parameter_id = p_expense_type_id
6237: AND opts.policy_id = p.company_policy_id
6238: AND opts.option_type = 'LOCATION'
6239: AND opts.status = 'ACTIVE'