DBA Data[Home] [Help]

APPS.HR_GL_COST_CENTERS dependencies on FND_PROFILE

Line 335: l_dir := fnd_profile.value('PER_DATA_EXCHANGE_DIR');

331: l_retcode NUMBER;
332: l_tab VARCHAR2(5) := fnd_global.tab;
333: BEGIN
334: hr_utility.set_location('Entering : '||l_proc,10);
335: l_dir := fnd_profile.value('PER_DATA_EXCHANGE_DIR');
336:
337: writelog('HR profile PER_DATA_EXCHANGE_DIR is set to : '||l_dir,'D');
338:
339: IF (l_dir is null) THEN

Line 608: l_org_profile := fnd_profile.value('HR_GENERATE_GL_OPTIONS');

604: writelog('p_bg_id = '||p_bg_id||' , p_company = '||
605: p_company||', p_cost_center = '||p_Cost_center||
606: ', p_company_vs = ' ||p_company_vs||', p_cc_vs = '||p_cc_vs,'D');
607:
608: l_org_profile := fnd_profile.value('HR_GENERATE_GL_OPTIONS');
609: writelog('HR_GENERATE_GL_OPTIONS : '||l_org_profile,'D');
610: if (l_org_profile = 'S') then
611: hr_utility.set_location(l_proc,20);
612: writelog(fnd_message.get_string('PER','HR_289509_NOT_GEN_GL_ORGS'),'W');

Line 615: l_class_profile := fnd_profile.value('HR_GENERATE_GL_ORGS');

611: hr_utility.set_location(l_proc,20);
612: writelog(fnd_message.get_string('PER','HR_289509_NOT_GEN_GL_ORGS'),'W');
613: return -1;
614: end if;
615: l_class_profile := fnd_profile.value('HR_GENERATE_GL_ORGS');
616: writelog('HR_GENERATE_GL_ORGS : '||l_class_profile,'D');
617: if (l_org_profile = 'SC' or l_org_profile = 'SCO')
618: and l_class_profile = 'N' then
619: writelog(fnd_message.get_string('PER','HR_289478_PROF_OPTS_WARNING'),'E');

Line 758: l_org_name_format := fnd_profile.value('HR_GL_ORG_NAME_FORMAT');

754: end if ;
755:
756:
757: /* Read the Org Name Format */
758: l_org_name_format := fnd_profile.value('HR_GL_ORG_NAME_FORMAT');
759: if (l_org_name_format IS NULL) then
760: hr_utility.set_location(l_proc,100);
761: hr_utility.set_message(801,'HR_289489_NO_NAME_FORMAT');
762: writelog(fnd_message.get_string('PER','HR_289489_NO_NAME_FORMAT'),'E');

Line 1667: l_org_name_format := fnd_profile.value('HR_GL_ORG_NAME_FORMAT');

1663: l_retcode := 1;
1664: else
1665:
1666: /* Read the Org Name Format */
1667: l_org_name_format := fnd_profile.value('HR_GL_ORG_NAME_FORMAT');
1668: if (l_org_name_format IS NULL) then
1669: hr_utility.set_location(l_proc,90);
1670: hr_utility.set_message(801,'HR_289489_NO_NAME_FORMAT');
1671: writelog(fnd_message.get_string('PER','HR_289489_NO_NAME_FORMAT'),'E');

Line 2094: l_org_profile := fnd_profile.value('HR_GENERATE_GL_OPTIONS');

2090: /*
2091: ** Work out if we are just syncing with existing orgs based on current
2092: ** classifications.
2093: */
2094: l_org_profile := fnd_profile.value('HR_GENERATE_GL_OPTIONS');
2095: hr_utility.set_location('generate GL options '||l_org_profile,20);
2096: if (l_org_profile = 'S') then
2097: hr_utility.set_location(l_proc,25);
2098: writelog(fnd_message.get_string('PER','HR_289509_NOT_GEN_GL_ORGS'),'W');

Line 2254: -- l_incremental_enabled := fnd_profile.value('HR_SYNC_SINGLE_GL_ORG');

2250: -- NOTE that this introduces a dependency on package HR_GL_SYNC_ORGS
2251: -- and hence files hrglsync.pkh and hrglsync.pkb
2252: ----------------------------------------------------------------------
2253: --
2254: -- l_incremental_enabled := fnd_profile.value('HR_SYNC_SINGLE_GL_ORG');
2255: -- l_autoorgs_enabled := fnd_profile.value('HR_GENERATE_GL_OPTIONS');
2256: --
2257: -- IF (l_autoorgs_enabled = 'S' or
2258: -- (l_autoorgs_enabled <> 'S' and

Line 2255: -- l_autoorgs_enabled := fnd_profile.value('HR_GENERATE_GL_OPTIONS');

2251: -- and hence files hrglsync.pkh and hrglsync.pkb
2252: ----------------------------------------------------------------------
2253: --
2254: -- l_incremental_enabled := fnd_profile.value('HR_SYNC_SINGLE_GL_ORG');
2255: -- l_autoorgs_enabled := fnd_profile.value('HR_GENERATE_GL_OPTIONS');
2256: --
2257: -- IF (l_autoorgs_enabled = 'S' or
2258: -- (l_autoorgs_enabled <> 'S' and
2259: -- l_incremental_enabled = 'N')) THEN