DBA Data[Home] [Help]

APPS.PAY_JP_ITAX_DPNT_INTERFACE_PKG dependencies on HR_UTILITY

Line 118: hr_utility.set_location('Entering : ' || l_proc, 10);

114: commit;
115: end if;
116: end create_asg_set_amd;
117: begin
118: hr_utility.set_location('Entering : ' || l_proc, 10);
119: --
120: hr_utility.trace('********************');
121: hr_utility.trace('assignment_id : ' || to_char(p_assignment_id));
122: hr_utility.trace('assignment_number : ' || p_assignment_number);

Line 120: hr_utility.trace('********************');

116: end create_asg_set_amd;
117: begin
118: hr_utility.set_location('Entering : ' || l_proc, 10);
119: --
120: hr_utility.trace('********************');
121: hr_utility.trace('assignment_id : ' || to_char(p_assignment_id));
122: hr_utility.trace('assignment_number : ' || p_assignment_number);
123: hr_utility.trace('upload_date : ' || to_char(p_upload_date));
124: --

Line 121: hr_utility.trace('assignment_id : ' || to_char(p_assignment_id));

117: begin
118: hr_utility.set_location('Entering : ' || l_proc, 10);
119: --
120: hr_utility.trace('********************');
121: hr_utility.trace('assignment_id : ' || to_char(p_assignment_id));
122: hr_utility.trace('assignment_number : ' || p_assignment_number);
123: hr_utility.trace('upload_date : ' || to_char(p_upload_date));
124: --
125: -- Derive income tax dependent information from PAY_ELEMENT_ENTRIES_F.

Line 122: hr_utility.trace('assignment_number : ' || p_assignment_number);

118: hr_utility.set_location('Entering : ' || l_proc, 10);
119: --
120: hr_utility.trace('********************');
121: hr_utility.trace('assignment_id : ' || to_char(p_assignment_id));
122: hr_utility.trace('assignment_number : ' || p_assignment_number);
123: hr_utility.trace('upload_date : ' || to_char(p_upload_date));
124: --
125: -- Derive income tax dependent information from PAY_ELEMENT_ENTRIES_F.
126: --

Line 123: hr_utility.trace('upload_date : ' || to_char(p_upload_date));

119: --
120: hr_utility.trace('********************');
121: hr_utility.trace('assignment_id : ' || to_char(p_assignment_id));
122: hr_utility.trace('assignment_number : ' || p_assignment_number);
123: hr_utility.trace('upload_date : ' || to_char(p_upload_date));
124: --
125: -- Derive income tax dependent information from PAY_ELEMENT_ENTRIES_F.
126: --
127: pay_jp_bee_utility_pkg.get_ee(

Line 184: hr_utility.trace('non_res_flag : ' || l_non_res_flag);

180: raise itax_type_is_null;
181: end if;
182: end if;
183: --
184: hr_utility.trace('non_res_flag : ' || l_non_res_flag);
185: hr_utility.trace('itax_type : ' || l_itax_type);
186: --
187: -- Derive income tax dependent information from CTR and CEI
188: -- as of Assessment Date, not Upload Date.

Line 185: hr_utility.trace('itax_type : ' || l_itax_type);

181: end if;
182: end if;
183: --
184: hr_utility.trace('non_res_flag : ' || l_non_res_flag);
185: hr_utility.trace('itax_type : ' || l_itax_type);
186: --
187: -- Derive income tax dependent information from CTR and CEI
188: -- as of Assessment Date, not Upload Date.
189: --

Line 199: hr_utility.trace('Multiple spouses. Skip processing');

195: --
196: -- If there're multiple spouses, skip processing for current assignment and output log.
197: --
198: if l_itax_dpnt_rec.multiple_spouses_warning then
199: hr_utility.trace('Multiple spouses. Skip processing');
200: raise multiple_spouses;
201: end if;
202: --
203: -- value_if_null is like value used as "default for" clause in FastFormula.

Line 251: hr_utility.trace('EE not exist. Create EE.');

247: --
248: -- Write to output file
249: --
250: if l_ee_rec.element_entry_id is null then
251: hr_utility.trace('EE not exist. Create EE.');
252: --
253: -- If element does not exist, "Insert" mode.
254: -- Also output all entry values to be transfered.
255: --

Line 259: hr_utility.trace('EE exists. Compare Start.');

255: --
256: l_change_type := 'I';
257: l_write_all := true;
258: else
259: hr_utility.trace('EE exists. Compare Start.');
260: --
261: -- When the Upload Date is the same date as ESD,
262: -- it is "Correction" mode, or "Update".
263: -- In this case, only the entry values to be changed are shown in output file.

Line 298: hr_utility.set_location('Leaving : ' || l_proc, 20);

294: commit;
295: end if;
296: end if;
297: --
298: hr_utility.set_location('Leaving : ' || l_proc, 20);
299: exception
300: when itax_type_is_null then
301: pay_jp_bee_utility_pkg.log(
302: p_full_name => p_full_name,

Line 310: hr_utility.set_location('Leaving : ' || l_proc, 25);

306: p_token1 => 'EFFECTIVE_DATE',
307: p_value1 => fnd_date.date_to_chardate(p_upload_date));
308: create_asg_set_amd;
309: --
310: hr_utility.set_location('Leaving : ' || l_proc, 25);
311: when multiple_spouses then
312: pay_jp_bee_utility_pkg.log(
313: p_full_name => p_full_name,
314: p_assignment_number => p_assignment_number,

Line 321: hr_utility.set_location('Leaving : ' || l_proc, 26);

317: p_token1 => 'EFFECTIVE_DATE',
318: p_value1 => fnd_date.date_to_chardate(p_effective_date));
319: create_asg_set_amd;
320: --
321: hr_utility.set_location('Leaving : ' || l_proc, 26);
322: end transfer_asg;
323: -- ----------------------------------------------------------------------------
324: -- |-----------------------< transfer_from_cei_to_bee >-----------------------|
325: -- ----------------------------------------------------------------------------

Line 368: -- hr_utility.trace_on('F', 'TTAGAWA');

364: l_asg_rec hr_jp_ast_utility_pkg.t_asg_rec;
365: l_assignment_set_id number;
366: l_assignment_set_name hr_assignment_sets.assignment_set_name%type;
367: begin
368: -- hr_utility.trace_on('F', 'TTAGAWA');
369: hr_utility.set_location('Entering : ' || l_proc, 10);
370: --
371: -- Validate Input Parameters
372: --

Line 369: hr_utility.set_location('Entering : ' || l_proc, 10);

365: l_assignment_set_id number;
366: l_assignment_set_name hr_assignment_sets.assignment_set_name%type;
367: begin
368: -- hr_utility.trace_on('F', 'TTAGAWA');
369: hr_utility.set_location('Entering : ' || l_proc, 10);
370: --
371: -- Validate Input Parameters
372: --
373: -- If all input values are out of scope by transfer process,

Line 435: hr_utility.trace('batch_id : ' || to_char(l_batch_id));

431: p_batch_id => l_batch_id,
432: p_object_version_number => l_batch_ovn);
433: commit;
434: --
435: hr_utility.trace('batch_id : ' || to_char(l_batch_id));
436: --
437: -- Initialize Global Variables
438: --
439: g_element_type_id := hr_jp_id_pkg.element_type_id(c_element_name, p_business_group_id);

Line 495: hr_utility.trace('BEE Header deleted');

491: --
492: -- When no batch lines are created, delete batch header and set message as errbuf.
493: --
494: if pay_jp_bee_utility_pkg.g_num_of_outs = 0 then
495: hr_utility.trace('BEE Header deleted');
496: --
497: pay_batch_element_entry_api.delete_batch_header(
498: p_validate => false,
499: p_batch_id => l_batch_id,

Line 520: hr_utility.trace('retcode : ' || p_retcode);

516: -- Bug.2760646
517: --
518: delete_session;
519: --
520: hr_utility.trace('retcode : ' || p_retcode);
521: hr_utility.trace('errbuf : ' || p_errbuf);
522: hr_utility.set_location('Leaving : ' || l_proc, 20);
523: end transfer_from_cei_to_bee;
524: --

Line 521: hr_utility.trace('errbuf : ' || p_errbuf);

517: --
518: delete_session;
519: --
520: hr_utility.trace('retcode : ' || p_retcode);
521: hr_utility.trace('errbuf : ' || p_errbuf);
522: hr_utility.set_location('Leaving : ' || l_proc, 20);
523: end transfer_from_cei_to_bee;
524: --
525: end pay_jp_itax_dpnt_interface_pkg;

Line 522: hr_utility.set_location('Leaving : ' || l_proc, 20);

518: delete_session;
519: --
520: hr_utility.trace('retcode : ' || p_retcode);
521: hr_utility.trace('errbuf : ' || p_errbuf);
522: hr_utility.set_location('Leaving : ' || l_proc, 20);
523: end transfer_from_cei_to_bee;
524: --
525: end pay_jp_itax_dpnt_interface_pkg;