DBA Data[Home] [Help]

APPS.HR_FR_UTILITY dependencies on HR_GENERAL

Line 53: l_full_name := substr(p_last_name || ', ' || hr_general.decode_lookup('TITLE',p_title) || ' ' || p_first_name,1,240);

49: -- l_full_name := p_title || ' ' || p_last_name || ' ' || p_first_name;
50: if p_title is null then
51: l_full_name := substr(p_last_name || ', ' || p_first_name,1,240);
52: else
53: l_full_name := substr(p_last_name || ', ' || hr_general.decode_lookup('TITLE',p_title) || ' ' || p_first_name,1,240);
54: end if;
55: return (rtrim(l_full_name));
56: --
57: END;