DBA Data[Home] [Help]

APPS.ECE_TIMEZONE_API dependencies on EC_DEBUG

Line 18: if ec_debug.G_debug_level >= 2 then

14: x_name varchar2(80);
15: xProgress VARCHAR2(80);
16:
17: BEGIN
18: if ec_debug.G_debug_level >= 2 then
19: ec_debug.push('ECE_TIMEZONE_API.GET_SERVER_TIMEZONE_DETAILS');
20: end if;
21: xProgress := 'TZAPI-10-1000';
22: fnd_profile.get('SERVER_TIMEZONE_ID',st_tz_id);

Line 19: ec_debug.push('ECE_TIMEZONE_API.GET_SERVER_TIMEZONE_DETAILS');

15: xProgress VARCHAR2(80);
16:
17: BEGIN
18: if ec_debug.G_debug_level >= 2 then
19: ec_debug.push('ECE_TIMEZONE_API.GET_SERVER_TIMEZONE_DETAILS');
20: end if;
21: xProgress := 'TZAPI-10-1000';
22: fnd_profile.get('SERVER_TIMEZONE_ID',st_tz_id);
23: xProgress := 'TZAPI-10-1010';

Line 38: if ec_debug.G_debug_level >= 2 then

34: x_msg_count,
35: x_msg_data
36: );
37: end if;
38: if ec_debug.G_debug_level >= 2 then
39: ec_debug.pl(3,'gmt deviation: ',x_gmt_deviation);
40: ec_debug.pl(3,'Timezone Code: ',x_global_timezone_name);
41: ec_debug.pop('ECE_TIMEZONE_API.GET_SERVER_TIMEZONE_DETAILS');
42: end if;

Line 39: ec_debug.pl(3,'gmt deviation: ',x_gmt_deviation);

35: x_msg_data
36: );
37: end if;
38: if ec_debug.G_debug_level >= 2 then
39: ec_debug.pl(3,'gmt deviation: ',x_gmt_deviation);
40: ec_debug.pl(3,'Timezone Code: ',x_global_timezone_name);
41: ec_debug.pop('ECE_TIMEZONE_API.GET_SERVER_TIMEZONE_DETAILS');
42: end if;
43: EXCEPTION

Line 40: ec_debug.pl(3,'Timezone Code: ',x_global_timezone_name);

36: );
37: end if;
38: if ec_debug.G_debug_level >= 2 then
39: ec_debug.pl(3,'gmt deviation: ',x_gmt_deviation);
40: ec_debug.pl(3,'Timezone Code: ',x_global_timezone_name);
41: ec_debug.pop('ECE_TIMEZONE_API.GET_SERVER_TIMEZONE_DETAILS');
42: end if;
43: EXCEPTION
44: WHEN OTHERS THEN

Line 41: ec_debug.pop('ECE_TIMEZONE_API.GET_SERVER_TIMEZONE_DETAILS');

37: end if;
38: if ec_debug.G_debug_level >= 2 then
39: ec_debug.pl(3,'gmt deviation: ',x_gmt_deviation);
40: ec_debug.pl(3,'Timezone Code: ',x_global_timezone_name);
41: ec_debug.pop('ECE_TIMEZONE_API.GET_SERVER_TIMEZONE_DETAILS');
42: end if;
43: EXCEPTION
44: WHEN OTHERS THEN
45: ec_debug.pl(0,'EC','ECE_PROGRAM_ERROR','PROGRESS_LEVEL',xProgress);

Line 45: ec_debug.pl(0,'EC','ECE_PROGRAM_ERROR','PROGRESS_LEVEL',xProgress);

41: ec_debug.pop('ECE_TIMEZONE_API.GET_SERVER_TIMEZONE_DETAILS');
42: end if;
43: EXCEPTION
44: WHEN OTHERS THEN
45: ec_debug.pl(0,'EC','ECE_PROGRAM_ERROR','PROGRESS_LEVEL',xProgress);
46: ec_debug.pl(0,'EC','ECE_ERROR_MESSAGE','ERROR_MESSAGE',SQLERRM);
47: if ec_debug.G_debug_level >= 2 then
48: ec_debug.pop('ECE_TIMEZONE_API.GET_SERVER_TIMEZONE_DETAILS');
49: end if;

Line 46: ec_debug.pl(0,'EC','ECE_ERROR_MESSAGE','ERROR_MESSAGE',SQLERRM);

42: end if;
43: EXCEPTION
44: WHEN OTHERS THEN
45: ec_debug.pl(0,'EC','ECE_PROGRAM_ERROR','PROGRESS_LEVEL',xProgress);
46: ec_debug.pl(0,'EC','ECE_ERROR_MESSAGE','ERROR_MESSAGE',SQLERRM);
47: if ec_debug.G_debug_level >= 2 then
48: ec_debug.pop('ECE_TIMEZONE_API.GET_SERVER_TIMEZONE_DETAILS');
49: end if;
50: app_exception.raise_exception;

Line 47: if ec_debug.G_debug_level >= 2 then

43: EXCEPTION
44: WHEN OTHERS THEN
45: ec_debug.pl(0,'EC','ECE_PROGRAM_ERROR','PROGRESS_LEVEL',xProgress);
46: ec_debug.pl(0,'EC','ECE_ERROR_MESSAGE','ERROR_MESSAGE',SQLERRM);
47: if ec_debug.G_debug_level >= 2 then
48: ec_debug.pop('ECE_TIMEZONE_API.GET_SERVER_TIMEZONE_DETAILS');
49: end if;
50: app_exception.raise_exception;
51:

Line 48: ec_debug.pop('ECE_TIMEZONE_API.GET_SERVER_TIMEZONE_DETAILS');

44: WHEN OTHERS THEN
45: ec_debug.pl(0,'EC','ECE_PROGRAM_ERROR','PROGRESS_LEVEL',xProgress);
46: ec_debug.pl(0,'EC','ECE_ERROR_MESSAGE','ERROR_MESSAGE',SQLERRM);
47: if ec_debug.G_debug_level >= 2 then
48: ec_debug.pop('ECE_TIMEZONE_API.GET_SERVER_TIMEZONE_DETAILS');
49: end if;
50: app_exception.raise_exception;
51:
52:

Line 82: if ec_debug.G_debug_level >= 2 then

78: from fnd_timezones_vl
79: where upper(timezone_code) = p_timezone_name;
80:
81: BEGIN
82: if ec_debug.G_debug_level >= 2 then
83: ec_debug.push('ECE_TIMEZONE_API.GET_DATE');
84: end if;
85: xProgress := 'TZAPI-20-1000';
86: if (p_timezone_name is not null) then

Line 83: ec_debug.push('ECE_TIMEZONE_API.GET_DATE');

79: where upper(timezone_code) = p_timezone_name;
80:
81: BEGIN
82: if ec_debug.G_debug_level >= 2 then
83: ec_debug.push('ECE_TIMEZONE_API.GET_DATE');
84: end if;
85: xProgress := 'TZAPI-20-1000';
86: if (p_timezone_name is not null) then
87: FOR i_timezone in c_timezone(upper(p_timezone_name))

Line 108: if ec_debug.G_debug_level >= 2 then

104: x_msg_data);
105: else
106: x_dest_date := p_src_date;
107: end if;
108: if ec_debug.G_debug_level >= 2 then
109: ec_debug.pl(3,'x_dest_date: ',x_dest_date);
110: ec_debug.pop('ECE_TIMEZONE_API.GET_DATE');
111: end if;
112: EXCEPTION

Line 109: ec_debug.pl(3,'x_dest_date: ',x_dest_date);

105: else
106: x_dest_date := p_src_date;
107: end if;
108: if ec_debug.G_debug_level >= 2 then
109: ec_debug.pl(3,'x_dest_date: ',x_dest_date);
110: ec_debug.pop('ECE_TIMEZONE_API.GET_DATE');
111: end if;
112: EXCEPTION
113: WHEN OTHERS THEN

Line 110: ec_debug.pop('ECE_TIMEZONE_API.GET_DATE');

106: x_dest_date := p_src_date;
107: end if;
108: if ec_debug.G_debug_level >= 2 then
109: ec_debug.pl(3,'x_dest_date: ',x_dest_date);
110: ec_debug.pop('ECE_TIMEZONE_API.GET_DATE');
111: end if;
112: EXCEPTION
113: WHEN OTHERS THEN
114: ec_debug.pl(0,'EC','ECE_PROGRAM_ERROR','PROGRESS_LEVEL',xProgress);

Line 114: ec_debug.pl(0,'EC','ECE_PROGRAM_ERROR','PROGRESS_LEVEL',xProgress);

110: ec_debug.pop('ECE_TIMEZONE_API.GET_DATE');
111: end if;
112: EXCEPTION
113: WHEN OTHERS THEN
114: ec_debug.pl(0,'EC','ECE_PROGRAM_ERROR','PROGRESS_LEVEL',xProgress);
115: ec_debug.pl(0,'EC','ECE_ERROR_MESSAGE','ERROR_MESSAGE',SQLERRM);
116: if ec_debug.G_debug_level >= 2 then
117: ec_debug.pop('ECE_TIMEZONE_API.GET_DATE');
118: end if;

Line 115: ec_debug.pl(0,'EC','ECE_ERROR_MESSAGE','ERROR_MESSAGE',SQLERRM);

111: end if;
112: EXCEPTION
113: WHEN OTHERS THEN
114: ec_debug.pl(0,'EC','ECE_PROGRAM_ERROR','PROGRESS_LEVEL',xProgress);
115: ec_debug.pl(0,'EC','ECE_ERROR_MESSAGE','ERROR_MESSAGE',SQLERRM);
116: if ec_debug.G_debug_level >= 2 then
117: ec_debug.pop('ECE_TIMEZONE_API.GET_DATE');
118: end if;
119: app_exception.raise_exception;

Line 116: if ec_debug.G_debug_level >= 2 then

112: EXCEPTION
113: WHEN OTHERS THEN
114: ec_debug.pl(0,'EC','ECE_PROGRAM_ERROR','PROGRESS_LEVEL',xProgress);
115: ec_debug.pl(0,'EC','ECE_ERROR_MESSAGE','ERROR_MESSAGE',SQLERRM);
116: if ec_debug.G_debug_level >= 2 then
117: ec_debug.pop('ECE_TIMEZONE_API.GET_DATE');
118: end if;
119: app_exception.raise_exception;
120:

Line 117: ec_debug.pop('ECE_TIMEZONE_API.GET_DATE');

113: WHEN OTHERS THEN
114: ec_debug.pl(0,'EC','ECE_PROGRAM_ERROR','PROGRESS_LEVEL',xProgress);
115: ec_debug.pl(0,'EC','ECE_ERROR_MESSAGE','ERROR_MESSAGE',SQLERRM);
116: if ec_debug.G_debug_level >= 2 then
117: ec_debug.pop('ECE_TIMEZONE_API.GET_DATE');
118: end if;
119: app_exception.raise_exception;
120:
121: END get_date;