DBA Data[Home] [Help]

APPS.PER_RI_CONFIG_MAIN dependencies on FND_PROFILE

Line 202: where business_group_id = fnd_profile.value('PER_BUSINESS_GROUP_ID');

198:
199:
200: BEGIN
201: select enterprise_id into l_enterprise_id from per_ent_security_groups
202: where business_group_id = fnd_profile.value('PER_BUSINESS_GROUP_ID');
203: EXCEPTION
204: WHEN NO_DATA_FOUND THEN
205: l_enterprise_id := null;
206: END;

Line 877: where business_group_id = fnd_profile.value('PER_BUSINESS_GROUP_ID');

873:
874:
875: BEGIN
876: select enterprise_id into l_enterprise_id from per_ent_security_groups
877: where business_group_id = fnd_profile.value('PER_BUSINESS_GROUP_ID');
878: EXCEPTION
879: WHEN NO_DATA_FOUND THEN
880: l_enterprise_id := null;
881: END;

Line 899: and fnd_profile.value('PER_RI_LOAD_OVERRIDE') = 'N' then

895: -- Check if this database is freshly installed
896: l_fresh_installed := per_ri_config_utilities.check_fresh_installation;
897:
898: if NOT l_fresh_installed
899: and fnd_profile.value('PER_RI_LOAD_OVERRIDE') = 'N' then
900:
901: l_log_message := '<<----------------------ATTENTION------------------------------>>';
902: per_ri_config_utilities.write_log(p_message => l_log_message);
903:

Line 919: if fnd_profile.value('PER_RI_LOAD_OVERRIDE') = 'Y'

915: raise not_fresh_install;
916: end if;
917:
918: -- Check PER_RI_LOAD_OVERRIDE
919: if fnd_profile.value('PER_RI_LOAD_OVERRIDE') = 'Y'
920: and NOT l_fresh_installed then
921: l_log_message := 'This database got some entities setup done after it is freshly installed';
922: l_log_message := l_log_message || '..Some of the entities loading might fail';
923: per_ri_config_utilities.write_log(p_message => l_log_message);