DBA Data[Home] [Help]

APPS.PAY_JP_ITAX_DPNT_INTERFACE_PKG dependencies on HR_UTILITY

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

156: commit;
157: end if;
158: end create_asg_set_amd;
159: begin
160: hr_utility.set_location('Entering : ' || l_proc, 10);
161: --
162: hr_utility.trace('********************');
163: hr_utility.trace('assignment_id : ' || to_char(p_assignment_id));
164: hr_utility.trace('assignment_number : ' || p_assignment_number);

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

158: end create_asg_set_amd;
159: begin
160: hr_utility.set_location('Entering : ' || l_proc, 10);
161: --
162: hr_utility.trace('********************');
163: hr_utility.trace('assignment_id : ' || to_char(p_assignment_id));
164: hr_utility.trace('assignment_number : ' || p_assignment_number);
165: hr_utility.trace('upload_date : ' || to_char(p_upload_date));
166: --

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

159: begin
160: hr_utility.set_location('Entering : ' || l_proc, 10);
161: --
162: hr_utility.trace('********************');
163: hr_utility.trace('assignment_id : ' || to_char(p_assignment_id));
164: hr_utility.trace('assignment_number : ' || p_assignment_number);
165: hr_utility.trace('upload_date : ' || to_char(p_upload_date));
166: --
167: -- Derive income tax dependent information from PAY_ELEMENT_ENTRIES_F.

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

160: hr_utility.set_location('Entering : ' || l_proc, 10);
161: --
162: hr_utility.trace('********************');
163: hr_utility.trace('assignment_id : ' || to_char(p_assignment_id));
164: hr_utility.trace('assignment_number : ' || p_assignment_number);
165: hr_utility.trace('upload_date : ' || to_char(p_upload_date));
166: --
167: -- Derive income tax dependent information from PAY_ELEMENT_ENTRIES_F.
168: --

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

161: --
162: hr_utility.trace('********************');
163: hr_utility.trace('assignment_id : ' || to_char(p_assignment_id));
164: hr_utility.trace('assignment_number : ' || p_assignment_number);
165: hr_utility.trace('upload_date : ' || to_char(p_upload_date));
166: --
167: -- Derive income tax dependent information from PAY_ELEMENT_ENTRIES_F.
168: --
169: pay_jp_bee_utility_pkg.get_ee(

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

222: raise itax_type_is_null;
223: end if;
224: end if;
225: --
226: hr_utility.trace('non_res_flag : ' || l_non_res_flag);
227: hr_utility.trace('itax_type : ' || l_itax_type);
228: --
229: -- Derive income tax dependent information from CTR and CEI
230: -- as of Assessment Date, not Upload Date.

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

223: end if;
224: end if;
225: --
226: hr_utility.trace('non_res_flag : ' || l_non_res_flag);
227: hr_utility.trace('itax_type : ' || l_itax_type);
228: --
229: -- Derive income tax dependent information from CTR and CEI
230: -- as of Assessment Date, not Upload Date.
231: --

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

237: --
238: -- If there're multiple spouses, skip processing for current assignment and output log.
239: --
240: if l_itax_dpnt_rec.multiple_spouses_warning then
241: hr_utility.trace('Multiple spouses. Skip processing');
242: raise multiple_spouses;
243: end if;
244: --
245: -- value_if_null is like value used as "default for" clause in FastFormula.

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

289: --
290: -- Write to output file
291: --
292: if l_ee_rec.element_entry_id is null then
293: hr_utility.trace('EE not exist. Create EE.');
294: --
295: -- If element does not exist, "Insert" mode.
296: -- Also output all entry values to be transfered.
297: --

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

297: --
298: l_change_type := 'I';
299: l_write_all := true;
300: else
301: hr_utility.trace('EE exists. Compare Start.');
302: --
303: -- When the Upload Date is the same date as ESD,
304: -- it is "Correction" mode, or "Update".
305: -- In this case, only the entry values to be changed are shown in output file.

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

336: commit;
337: end if;
338: end if;
339: --
340: hr_utility.set_location('Leaving : ' || l_proc, 20);
341: exception
342: when itax_type_is_null then
343: pay_jp_bee_utility_pkg.log(
344: p_full_name => p_full_name,

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

348: p_token1 => 'EFFECTIVE_DATE',
349: p_value1 => fnd_date.date_to_chardate(p_upload_date));
350: create_asg_set_amd;
351: --
352: hr_utility.set_location('Leaving : ' || l_proc, 25);
353: when multiple_spouses then
354: pay_jp_bee_utility_pkg.log(
355: p_full_name => p_full_name,
356: p_assignment_number => p_assignment_number,

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

359: p_token1 => 'EFFECTIVE_DATE',
360: p_value1 => fnd_date.date_to_chardate(p_effective_date));
361: create_asg_set_amd;
362: --
363: hr_utility.set_location('Leaving : ' || l_proc, 26);
364: end transfer_asg;
365: -- ----------------------------------------------------------------------------
366: -- |-----------------------< transfer_from_cei_to_bee >-----------------------|
367: -- ----------------------------------------------------------------------------

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

406: l_asg_rec hr_jp_ast_utility_pkg.t_asg_rec;
407: l_assignment_set_id number;
408: l_assignment_set_name hr_assignment_sets.assignment_set_name%type;
409: begin
410: -- hr_utility.trace_on('F', 'TTAGAWA');
411: hr_utility.set_location('Entering : ' || l_proc, 10);
412: --
413: -- Validate Input Parameters
414: --

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

407: l_assignment_set_id number;
408: l_assignment_set_name hr_assignment_sets.assignment_set_name%type;
409: begin
410: -- hr_utility.trace_on('F', 'TTAGAWA');
411: hr_utility.set_location('Entering : ' || l_proc, 10);
412: --
413: -- Validate Input Parameters
414: --
415: -- If all input values are out of scope by transfer process,

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

479: p_batch_id => l_batch_id,
480: p_object_version_number => l_batch_ovn);
481: commit;
482: --
483: hr_utility.trace('batch_id : ' || to_char(l_batch_id));
484: --
485: -- Initialize Global Variables
486: --
487: g_element_type_id := hr_jp_id_pkg.element_type_id(c_element_name, p_business_group_id);

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

539: --
540: -- When no batch lines are created, delete batch header and set message as errbuf.
541: --
542: if pay_jp_bee_utility_pkg.g_num_of_outs = 0 then
543: hr_utility.trace('BEE Header deleted');
544: --
545: pay_batch_element_entry_api.delete_batch_header(
546: p_validate => false,
547: p_batch_id => l_batch_id,

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

564: -- Bug.2760646
565: --
566: delete_session;
567: --
568: hr_utility.trace('retcode : ' || p_retcode);
569: hr_utility.trace('errbuf : ' || p_errbuf);
570: hr_utility.set_location('Leaving : ' || l_proc, 20);
571: end transfer_from_cei_to_bee;
572: --

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

565: --
566: delete_session;
567: --
568: hr_utility.trace('retcode : ' || p_retcode);
569: hr_utility.trace('errbuf : ' || p_errbuf);
570: hr_utility.set_location('Leaving : ' || l_proc, 20);
571: end transfer_from_cei_to_bee;
572: --
573: end pay_jp_itax_dpnt_interface_pkg;

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

566: delete_session;
567: --
568: hr_utility.trace('retcode : ' || p_retcode);
569: hr_utility.trace('errbuf : ' || p_errbuf);
570: hr_utility.set_location('Leaving : ' || l_proc, 20);
571: end transfer_from_cei_to_bee;
572: --
573: end pay_jp_itax_dpnt_interface_pkg;