DBA Data[Home] [Help]

APPS.HR_SIGNON dependencies on FND_PROFILE

Line 143: TO_NUMBER(fnd_profile.value('HR_DM_BG_LOCKOUT'));

139: -- Get the value for the data migratior business group lockout
140: -- profile
141: --
142: l_bg_lockout :=
143: TO_NUMBER(fnd_profile.value('HR_DM_BG_LOCKOUT'));
144: --
145: -- If the profile has been set (ie. a migration is in progress)
146: -- then do some checking
147: --

Line 164: fnd_profile.put

160: --
161: -- Set the BG/SP profiles to null to ensure that no
162: -- business group specific data can be entered by the user
163: --
164: fnd_profile.put
165: (name => 'PER_SECURITY_PROFILE_ID'
166: ,val => NULL
167: );
168: fnd_profile.put

Line 168: fnd_profile.put

164: fnd_profile.put
165: (name => 'PER_SECURITY_PROFILE_ID'
166: ,val => NULL
167: );
168: fnd_profile.put
169: (name => 'PER_BUSINESS_GROUP_ID'
170: ,val => NULL
171: );
172: --

Line 185: fnd_profile.put

181: --
182: -- Set the BG/SP profiles to null to ensure that no
183: -- business group specific data can be entered by the user
184: --
185: fnd_profile.put
186: (name => 'PER_SECURITY_PROFILE_ID'
187: ,val => NULL
188: );
189: fnd_profile.put

Line 189: fnd_profile.put

185: fnd_profile.put
186: (name => 'PER_SECURITY_PROFILE_ID'
187: ,val => NULL
188: );
189: fnd_profile.put
190: (name => 'PER_BUSINESS_GROUP_ID'
191: ,val => NULL
192: );
193: --

Line 317: fnd_profile.put(name => 'PER_SECURITY_PROFILE_ID'

313: IS
314: --
315: BEGIN
316: --
317: fnd_profile.put(name => 'PER_SECURITY_PROFILE_ID'
318: ,val => p_security_profile_id
319: );
320: fnd_profile.put(name => 'PER_BUSINESS_GROUP_ID'
321: ,val => p_business_group_id

Line 320: fnd_profile.put(name => 'PER_BUSINESS_GROUP_ID'

316: --
317: fnd_profile.put(name => 'PER_SECURITY_PROFILE_ID'
318: ,val => p_security_profile_id
319: );
320: fnd_profile.put(name => 'PER_BUSINESS_GROUP_ID'
321: ,val => p_business_group_id
322: );
323: --
324: END Set_Profile_Values;

Line 357: IF fnd_profile.value('ENABLE_SECURITY_GROUPS') = 'Y' THEN

353: --
354: BEGIN
355: --
356: -- check if the enable_security_groups profile is set to 'Y'
357: IF fnd_profile.value('ENABLE_SECURITY_GROUPS') = 'Y' THEN
358: -- profile is enabled... make sure that the enable security groups
359: -- concurrent process has been run... otherwise return false else
360: -- the HR security initialization code will fail
361: --

Line 492: := TO_NUMBER(fnd_profile.value('PER_SECURITY_PROFILE_ID'));

488: -- The site level defaults will be used for this session so
489: -- retrieve the value from the profile cache now..
490: --
491: l_security_profile_id
492: := TO_NUMBER(fnd_profile.value('PER_SECURITY_PROFILE_ID'));
493: --
494: END IF;
495: ELSE
496: BEGIN

Line 499: TO_NUMBER(fnd_profile.value('PER_BUSINESS_GROUP_ID'))

495: ELSE
496: BEGIN
497: Check_Business_Group_Lockout
498: (p_business_group_id =>
499: TO_NUMBER(fnd_profile.value('PER_BUSINESS_GROUP_ID'))
500: ,p_security_group_id => 0
501: ,p_sg_enabled => FALSE
502: );
503: --

Line 505: := TO_NUMBER(fnd_profile.value('PER_SECURITY_PROFILE_ID'));

501: ,p_sg_enabled => FALSE
502: );
503: --
504: l_security_profile_id
505: := TO_NUMBER(fnd_profile.value('PER_SECURITY_PROFILE_ID'));
506: EXCEPTION
507: WHEN OTHERS THEN
508: NULL;
509: END;

Line 528: fnd_profile.value('PER_BUSINESS_GROUP_ID'));

524: --
525: BEGIN
526: --
527: l_leg_code := hr_api.return_legislation_code(
528: fnd_profile.value('PER_BUSINESS_GROUP_ID'));
529: --
530: --
531: hr_api.set_legislation_context(l_leg_code);
532: --