DBA Data[Home] [Help]

APPS.PAY_AE_EFT dependencies on HR_UTILITY

Line 61: --hr_utility.trace_on(null,'EFT');

57: where pom.ORG_PAYMENT_METHOD_ID = p_payment_method_id
58: and p_Date_Earned between pom.effective_start_date and pom.effective_end_date ;
59:
60: begin
61: --hr_utility.trace_on(null,'EFT');
62: l_payment_method_id := p_payment_method_id;
63:
64: open c_get_name(p_payment_method_id,p_Date_Earned);
65: fetch c_get_name into l_employer_code,l_bank_code,l_id_header,l_id_body,l_id_footer;

Line 497: hr_utility.set_location('--In Formula ',20);

493: ,p_outputs IN OUT NOCOPY ff_exec.outputs_t) IS
494: l_inputs ff_exec.inputs_t;
495: l_outputs ff_exec.outputs_t;
496: BEGIN
497: hr_utility.set_location('--In Formula ',20);
498: --
499: -- Initialize the formula
500: --
501: ff_exec.init_formula(p_formula_id, p_effective_date , l_inputs, l_outputs);

Line 503: hr_utility.trace('after ff_exec');

499: -- Initialize the formula
500: --
501: ff_exec.init_formula(p_formula_id, p_effective_date , l_inputs, l_outputs);
502: --
503: hr_utility.trace('after ff_exec');
504: -- Set up the input values
505: --
506: IF l_inputs.count > 0 and p_inputs.count > 0 THEN
507: FOR i IN l_inputs.first..l_inputs.last LOOP

Line 519: hr_utility.trace('about to exec');

515: END IF;
516: --
517: -- Run the formula
518: --
519: hr_utility.trace('about to exec');
520: ff_exec.run_formula(l_inputs,l_outputs);
521: --
522: hr_utility.trace('After exec');
523: -- Populate the output table

Line 522: hr_utility.trace('After exec');

518: --
519: hr_utility.trace('about to exec');
520: ff_exec.run_formula(l_inputs,l_outputs);
521: --
522: hr_utility.trace('After exec');
523: -- Populate the output table
524: --
525: IF l_outputs.count > 0 and p_inputs.count > 0 then
526: FOR i IN l_outputs.first..l_outputs.last LOOP

Line 535: hr_utility.set_location('--Leaving Formula ',21);

531: END IF;
532: END LOOP;
533: END LOOP;
534: END IF;
535: hr_utility.set_location('--Leaving Formula ',21);
536: EXCEPTION
537: WHEN hr_formula_error THEN
538: fnd_message.set_name('PER','FFX22J_FORMULA_NOT_FOUND');
539: fnd_message.set_token('1', g_formula_name);