DBA Data[Home] [Help]

APPS.PA_ADW_COLLECT_MAIN dependencies on FND_PROFILE

Line 10: license_status := NVL(fnd_profile.value('PA_ADW_LICENSED'),'N');

6: pa_debug.debug('Getting the License Status');
7:
8: -- By Default the Oracle Project Collection Pack is not Licensed
9:
10: license_status := NVL(fnd_profile.value('PA_ADW_LICENSED'),'N');
11:
12: pa_debug.debug('Getting the Install Status');
13:
14: -- By Default the Oracle Project Collection Pack is not Installed

Line 16: install_status := NVL(fnd_profile.value('PA_ADW_INSTALLED'),'N');

12: pa_debug.debug('Getting the Install Status');
13:
14: -- By Default the Oracle Project Collection Pack is not Installed
15:
16: install_status := NVL(fnd_profile.value('PA_ADW_INSTALLED'),'N');
17:
18: pa_debug.debug('Getting the Tasks Profile Option Values');
19:
20: -- By Default we will not collect lowest/top level tasks

Line 25: collect_lowest_tasks_flag := NVL(fnd_profile.value('PA_ADW_COLLECT_LOWEST_TASKS'),'N');

21: -- If we are collecting lowest tasks, we will always collect top tasks
22:
23: pa_debug.debug('Getting the Lowest Task Profile Option Values');
24:
25: collect_lowest_tasks_flag := NVL(fnd_profile.value('PA_ADW_COLLECT_LOWEST_TASKS'),'N');
26:
27: IF (collect_lowest_tasks_flag = 'Y') THEN
28: -- Always collect top tasks
29: collect_top_tasks_flag := 'Y';

Line 32: collect_top_tasks_flag := NVL(fnd_profile.value('PA_ADW_COLLECT_TOP_TASKS'),'N');

28: -- Always collect top tasks
29: collect_top_tasks_flag := 'Y';
30: ELSE
31: pa_debug.debug('Getting the Top Task Profile Option Values');
32: collect_top_tasks_flag := NVL(fnd_profile.value('PA_ADW_COLLECT_TOP_TASKS'),'N');
33: END IF;
34:
35: RETURN (0);
36: