57: p_creation_date IN OUT per_positions.creation_date%type,
58: p_org_name IN OUT hr_all_organization_units.name%type,
59: p_job_name IN OUT per_jobs.name%type,
60: p_location_code IN OUT hr_locations.location_code%type,
61: p_status_desc IN OUT hr_lookups.meaning%type,
62: p_frequency_desc IN OUT hr_lookups.meaning%type,
63: p_prob_units_desc IN OUT hr_lookups.meaning%type,
64: p_rep_req_desc IN OUT hr_lookups.meaning%type,
65: p_rel_name IN OUT per_positions.name%type,
58: p_org_name IN OUT hr_all_organization_units.name%type,
59: p_job_name IN OUT per_jobs.name%type,
60: p_location_code IN OUT hr_locations.location_code%type,
61: p_status_desc IN OUT hr_lookups.meaning%type,
62: p_frequency_desc IN OUT hr_lookups.meaning%type,
63: p_prob_units_desc IN OUT hr_lookups.meaning%type,
64: p_rep_req_desc IN OUT hr_lookups.meaning%type,
65: p_rel_name IN OUT per_positions.name%type,
66: p_succ_name IN OUT per_positions.name%type,
59: p_job_name IN OUT per_jobs.name%type,
60: p_location_code IN OUT hr_locations.location_code%type,
61: p_status_desc IN OUT hr_lookups.meaning%type,
62: p_frequency_desc IN OUT hr_lookups.meaning%type,
63: p_prob_units_desc IN OUT hr_lookups.meaning%type,
64: p_rep_req_desc IN OUT hr_lookups.meaning%type,
65: p_rel_name IN OUT per_positions.name%type,
66: p_succ_name IN OUT per_positions.name%type,
67: p_result_code IN OUT varchar2
60: p_location_code IN OUT hr_locations.location_code%type,
61: p_status_desc IN OUT hr_lookups.meaning%type,
62: p_frequency_desc IN OUT hr_lookups.meaning%type,
63: p_prob_units_desc IN OUT hr_lookups.meaning%type,
64: p_rep_req_desc IN OUT hr_lookups.meaning%type,
65: p_rel_name IN OUT per_positions.name%type,
66: p_succ_name IN OUT per_positions.name%type,
67: p_result_code IN OUT varchar2
68: )
88: WHERE loc.location_id = p_loc_id;
89:
90: CURSOR c_lookup_meaning (p_lookup_type VARCHAR2, p_lookup_code VARCHAR2) IS
91: SELECT hrl.meaning
92: FROM hr_lookups hrl
93: WHERE hrl.lookup_code = p_lookup_code
94: AND hrl.lookup_type = p_lookup_type;
95:
96: BEGIN