DBA Data[Home] [Help]

APPS.OZF_COMMON_PARAMETERS_PVT dependencies on FND_PROFILE

Line 11: l_period_set_name:=fnd_profile.value('AMS_CAMPAIGN_DEFAULT_CALENDER');

7: l_period_set_name varchar2(15);
8: BEGIN
9: -- l_period_set_name:='Accounting';
10:
11: l_period_set_name:=fnd_profile.value('AMS_CAMPAIGN_DEFAULT_CALENDER');
12: return l_period_set_name;
13: EXCEPTION
14: when no_data_found then
15: return null;

Line 27: l_start_dayofweek:=fnd_profile.value('OZF_TP_START_DAY_OF_WEEK');

23: l_start_dayofweek varchar2(30);
24: BEGIN
25: -- l_start_dayofweek:='2';
26:
27: l_start_dayofweek:=fnd_profile.value('OZF_TP_START_DAY_OF_WEEK');
28: return l_start_dayofweek;
29: EXCEPTION
30: when no_data_found then
31: return null;

Line 41: l_period_type:=fnd_profile.value('OZF_TP_PERIOD_TYPE');

37: FUNCTION GET_PERIOD_TYPE RETURN VARCHAR2 IS
38: l_period_type varchar2(15);
39: BEGIN
40: -- l_period_type:='Month';
41: l_period_type:=fnd_profile.value('OZF_TP_PERIOD_TYPE');
42: return l_period_type;
43: EXCEPTION
44: when no_data_found then
45: return null;

Line 54: l_global_start_date:=fnd_profile.value('OZF_TP_GLOBAL_START_DATE');

50:
51: FUNCTION GET_GLOBAL_START_DATE RETURN DATE IS
52: l_global_start_date varchar2(30);
53: BEGIN
54: l_global_start_date:=fnd_profile.value('OZF_TP_GLOBAL_START_DATE');
55: return to_date(l_global_start_date, 'mm/dd/yyyy');
56: EXCEPTION
57: when no_data_found then
58: return null;

Line 89: IF (fnd_profile.value(l_profile_name) IS NULL) THEN

85: LOOP
86:
87: l_profile_name := p_parameter_list(l_count);
88:
89: IF (fnd_profile.value(l_profile_name) IS NULL) THEN
90: l_profile_list := l_profile_list || l_profile_name;
91: l_return_value := false;
92: END IF;
93:

Line 117: l_parallel := floor(fnd_profile.value('OZF_TP_PARALLEL_SRC'));

113: l_parallel number;
114: BEGIN
115:
116: l_parallel := null;
117: l_parallel := floor(fnd_profile.value('OZF_TP_PARALLEL_SRC'));
118:
119:
120: /* If set by the customer, return this value */
121: