DBA Data[Home] [Help]

APPS.AP_WEB_UPLOAD_PDM_PKG dependencies on AP_WEB_POLICY_UTILS

Line 323: l_description := Concat(p_location, AP_WEB_POLICY_UTILS.get_location(p_county_id));

319:
320: if (p_location_type = 'CITY') then
321: if (p_territory_code = 'US') then
322: /* CONUS - City/Locality||', '||County||', '||State/Province */
323: l_description := Concat(p_location, AP_WEB_POLICY_UTILS.get_location(p_county_id));
324: l_description := Concat(l_description, AP_WEB_POLICY_UTILS.get_location(p_state_province_id));
325: elsif (p_undefined_location = 'N') then
326: /* OCONUS - City/Locality||', '||Country */
327: l_description := Concat(p_location, p_country);

Line 324: l_description := Concat(l_description, AP_WEB_POLICY_UTILS.get_location(p_state_province_id));

320: if (p_location_type = 'CITY') then
321: if (p_territory_code = 'US') then
322: /* CONUS - City/Locality||', '||County||', '||State/Province */
323: l_description := Concat(p_location, AP_WEB_POLICY_UTILS.get_location(p_county_id));
324: l_description := Concat(l_description, AP_WEB_POLICY_UTILS.get_location(p_state_province_id));
325: elsif (p_undefined_location = 'N') then
326: /* OCONUS - City/Locality||', '||Country */
327: l_description := Concat(p_location, p_country);
328: else

Line 2531: and option_type = AP_WEB_POLICY_UTILS.c_EMPLOYEE_ROLE

2527: cursor roles_cur is
2528: select role_id
2529: from ap_pol_schedule_options
2530: where policy_id = p_policy_id
2531: and option_type = AP_WEB_POLICY_UTILS.c_EMPLOYEE_ROLE
2532: and role_id is not null;
2533:
2534: roles_rec roles_cur%ROWTYPE;
2535: one_role_processed boolean;