DBA Data[Home] [Help]

APPS.PER_FNAME_PKG dependencies on HR_PERSON

Line 162: -- else use hr_person.derive_full_name

158:
159: -- Fix 3386992
160: -- if the package hr__utility is installed then
161: -- use trigger code to generate full_name
162: -- else use hr_person.derive_full_name
163: if l_leg_util_installed then
164: FETCH csr_get_people_in_leg BULK COLLECT INTO
165: l_person_id_list,
166: l_effective_start_date_list,

Line 242: -- procedure hr_person.derive_full_name

238: --
239: EXIT WHEN (l_rows_in_this_collect = 0);
240:
241: -- For each record, generate the full_name using
242: -- procedure hr_person.derive_full_name
243: for counter in 1 .. l_rows_in_this_collect
244: loop
245: hr_person.derive_full_name
246: (p_first_name => l_first_name_list(counter),

Line 245: hr_person.derive_full_name

241: -- For each record, generate the full_name using
242: -- procedure hr_person.derive_full_name
243: for counter in 1 .. l_rows_in_this_collect
244: loop
245: hr_person.derive_full_name
246: (p_first_name => l_first_name_list(counter),
247: p_middle_names => l_middle_names_list(counter),
248: p_last_name => l_last_name_list(counter),
249: p_known_as => l_known_as_list(counter),