DBA Data[Home] [Help]

APPS.PER_RI_CONFIG_MAIN dependencies on FND_PROFILE

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

810:
811:
812: BEGIN
813: select enterprise_id into l_enterprise_id from per_ent_security_groups
814: where business_group_id = fnd_profile.value('PER_BUSINESS_GROUP_ID');
815: EXCEPTION
816: WHEN NO_DATA_FOUND THEN
817: l_enterprise_id := null;
818: END;

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

832: -- Check if this database is freshly installed
833: l_fresh_installed := per_ri_config_utilities.check_fresh_installation;
834:
835: if NOT l_fresh_installed
836: and fnd_profile.value('PER_RI_LOAD_OVERRIDE') = 'N' then
837:
838: l_log_message := '<<----------------------ATTENTION------------------------------>>';
839: per_ri_config_utilities.write_log(p_message => l_log_message);
840:

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

852: raise not_fresh_install;
853: end if;
854:
855: -- Check PER_RI_LOAD_OVERRIDE
856: if fnd_profile.value('PER_RI_LOAD_OVERRIDE') = 'Y'
857: and NOT l_fresh_installed then
858: l_log_message := 'This database got some entities setup done after it is freshly installed';
859: l_log_message := l_log_message || '..Some of the entities loading might fail';
860: per_ri_config_utilities.write_log(p_message => l_log_message);