DBA Data[Home] [Help]

APPS.PER_FR_UPGRADE_DATA_PKG dependencies on HR_UTILITY

Line 17: hr_utility.set_location('Entered '||l_proc,5);

13: l_proc varchar2(72) := g_package||'.write_log';
14: --
15: begin
16: --
17: hr_utility.set_location('Entered '||l_proc,5);
18:
19: fnd_file.put_line(FND_FILE.LOG,substrb(p_message,1,1024));
20:
21: hr_utility.set_location('leaving '||l_proc,100);

Line 21: hr_utility.set_location('leaving '||l_proc,100);

17: hr_utility.set_location('Entered '||l_proc,5);
18:
19: fnd_file.put_line(FND_FILE.LOG,substrb(p_message,1,1024));
20:
21: hr_utility.set_location('leaving '||l_proc,100);
22:
23: exception when others then
24: null;
25: end write_log;

Line 48: hr_utility.set_location('Entered '||l_proc,5);

44: l_proc varchar2(72) := g_package||'.write_log_message';
45: --
46: begin
47: --
48: hr_utility.set_location('Entered '||l_proc,5);
49: hr_utility.set_location('. Message Name: '||p_message_name,40);
50:
51: fnd_message.set_name('PER', p_message_name);
52:

Line 49: hr_utility.set_location('. Message Name: '||p_message_name,40);

45: --
46: begin
47: --
48: hr_utility.set_location('Entered '||l_proc,5);
49: hr_utility.set_location('. Message Name: '||p_message_name,40);
50:
51: fnd_message.set_name('PER', p_message_name);
52:
53: if p_token1 is not null then

Line 59: hr_utility.set_location('. Token1: '||l_token_name||'. Value: '||l_token_value,50);

55: l_colon_position := instr(p_token1,':');
56: l_token_name := substr(p_token1,1,l_colon_position-1);
57: l_token_value := substr(p_token1,l_colon_position+1,length(p_token1));
58: fnd_message.set_token(l_token_name, l_token_value);
59: hr_utility.set_location('. Token1: '||l_token_name||'. Value: '||l_token_value,50);
60: end if;
61:
62: if p_token2 is not null then
63: /* Obtain token 2 name and value */

Line 68: hr_utility.set_location('. Token2: '||l_token_name||'. Value: '||l_token_value,60);

64: l_colon_position := instr(p_token2,':');
65: l_token_name := substr(p_token2,1,l_colon_position-1);
66: l_token_value := substr(p_token2,l_colon_position+1,length(p_token2));
67: fnd_message.set_token(l_token_name, l_token_value);
68: hr_utility.set_location('. Token2: '||l_token_name||'. Value: '||l_token_value,60);
69: end if;
70:
71: if p_token3 is not null then
72: /* Obtain token 3 name and value */

Line 77: hr_utility.set_location('. Token3: '||l_token_name||'. Value: '||l_token_value,70);

73: l_colon_position := instr(p_token3,':');
74: l_token_name := substr(p_token3,1,l_colon_position-1);
75: l_token_value := substr(p_token3,l_colon_position+1,length(p_token3));
76: fnd_message.set_token(l_token_name, l_token_value);
77: hr_utility.set_location('. Token3: '||l_token_name||'. Value: '||l_token_value,70);
78: end if;
79:
80: l_message := fnd_message.get;
81:

Line 84: hr_utility.set_location('leaving '||l_proc,100);

80: l_message := fnd_message.get;
81:
82: fnd_file.put_line(FND_FILE.LOG,substrb(l_message,1,1024));
83:
84: hr_utility.set_location('leaving '||l_proc,100);
85:
86: exception when others then
87: null;
88: hr_utility.set_location('error occured in:'||l_proc,200);

Line 88: hr_utility.set_location('error occured in:'||l_proc,200);

84: hr_utility.set_location('leaving '||l_proc,100);
85:
86: exception when others then
87: null;
88: hr_utility.set_location('error occured in:'||l_proc,200);
89: hr_utility.set_location(sqlcode,210);
90: end write_log_message;
91:
92:

Line 89: hr_utility.set_location(sqlcode,210);

85:
86: exception when others then
87: null;
88: hr_utility.set_location('error occured in:'||l_proc,200);
89: hr_utility.set_location(sqlcode,210);
90: end write_log_message;
91:
92:
93: /*************************************************************

Line 107: hr_utility.set_location('Entered '||l_proc,5);

103: ,p_lookup_code => p_lookup_code);
104: --
105: begin
106: --
107: hr_utility.set_location('Entered '||l_proc,5);
108:
109: return l_meaning;
110:
111: END get_translation;

Line 155: hr_utility.set_location('Entered '||l_proc,5);

151: l_proc varchar2(72) := g_package||'.check_lookups';
152: --
153: begin
154: --
155: hr_utility.set_location('Entered '||l_proc,5);
156:
157: write_log_message(p_message_name => 'PER_74988_STRT_CHK_LKP'
158: ,p_token1 => 'FR_LKP_TYPE:'||p_fr_lookup_type
159: ,p_token2 => 'CORE_LKP_TYPE:'||p_core_lookup_type);

Line 178: hr_utility.set_location('leaving '||l_proc,100);

174: write_log_message(p_message_name => 'PER_74990_END_CHK_LKP'
175: ,p_token1 => 'STATUS:'||get_translation('ERROR'));
176: end if;
177:
178: hr_utility.set_location('leaving '||l_proc,100);
179: return l_counter;
180:
181: end check_lookups;
182:

Line 236: hr_utility.set_location('Entered '||l_proc,5);

232: l_context_required_flag varchar2(1):= 'N';
233: --
234: begin
235: --
236: hr_utility.set_location('Entered '||l_proc,5);
237:
238: Open csr_user_df;
239: Fetch csr_user_df Into l_table_id, l_application_id, l_context_required_flag, l_table_application_id,l_segment_delimiter,l_df_title,l_df_context_field;
240:

Line 275: hr_utility.set_location('leaving '||l_proc,100);

271: write_log_message(p_message_name => 'PER_75008_END_CHK_DF'
272: ,p_token1 => 'STATUS:'||get_translation('ERROR'));
273: end if;
274:
275: hr_utility.set_location('leaving '||l_proc,100);
276: return l_counter;
277:
278: end check_dfs;
279:

Line 301: hr_utility.set_location('Entered '||l_proc,5);

297: --
298: begin
299:
300: --
301: hr_utility.set_location('Entered '||l_proc,5);
302: --
303: write_log_message(p_message_name => 'PER_74987_DAT_UPG_PROC'
304: ,p_token1 => 'STATUS:'||get_translation('STARTING')
305: ,p_token2 => 'UPG_TYPE:'||l_upg_type_meaning);

Line 339: hr_utility.set_location('leaving '||l_proc,100);

335: end if;
336:
337:
338: retcode := l_status;
339: hr_utility.set_location('leaving '||l_proc,100);
340:
341: exception when others then
342: write_log_message(p_message_name => 'PER_74991_DAT_UPG_FATAL'
343: ,p_token1 => 'STEP:10');