DBA Data[Home] [Help]

APPS.PER_TMPROFILE_PKG dependencies on FND_PROFILE

Line 229: l_return := fnd_profile.value('HR_PERSONAL_ACTIONS_MENU');

225: --for employee
226: if(l_person_type.person_type is not null) then
227: if(l_person_type.person_type = 'EMP' OR l_person_type.person_type = 'EMP_APL') then
228: if(l_person_id is not null and l_person_id = p_person_id) then
229: l_return := fnd_profile.value('HR_PERSONAL_ACTIONS_MENU');
230: else
231: l_return := fnd_profile.value('HR_MANAGER_ACTIONS_MENU');
232: end if;
233: end if;

Line 231: l_return := fnd_profile.value('HR_MANAGER_ACTIONS_MENU');

227: if(l_person_type.person_type = 'EMP' OR l_person_type.person_type = 'EMP_APL') then
228: if(l_person_id is not null and l_person_id = p_person_id) then
229: l_return := fnd_profile.value('HR_PERSONAL_ACTIONS_MENU');
230: else
231: l_return := fnd_profile.value('HR_MANAGER_ACTIONS_MENU');
232: end if;
233: end if;
234: end if;
235: --for contingent

Line 239: l_return := fnd_profile.value('HR_CWK_ACTIONS_MENU');

235: --for contingent
236: if(l_person_type.person_type is not null) then
237: if(l_person_type.person_type = 'CWK' OR l_person_type.person_type = 'CWK_APL' OR l_person_type.person_type = 'OTHER') then
238: if(l_person_id is not null and l_person_id = p_person_id) then
239: l_return := fnd_profile.value('HR_CWK_ACTIONS_MENU');
240: else
241: l_return := fnd_profile.value('HR_CWK_MANAGER_ACTIONS_MENU');
242: end if;
243: end if;

Line 241: l_return := fnd_profile.value('HR_CWK_MANAGER_ACTIONS_MENU');

237: if(l_person_type.person_type = 'CWK' OR l_person_type.person_type = 'CWK_APL' OR l_person_type.person_type = 'OTHER') then
238: if(l_person_id is not null and l_person_id = p_person_id) then
239: l_return := fnd_profile.value('HR_CWK_ACTIONS_MENU');
240: else
241: l_return := fnd_profile.value('HR_CWK_MANAGER_ACTIONS_MENU');
242: end if;
243: end if;
244: end if;
245: end loop;