DBA Data[Home] [Help]

APPS.PAY_NL_GENERAL dependencies on FND_FILE

Line 566: fnd_file.put_line(FND_FILE.LOG,'Entering Procedure pay_nl_general.insert_leg_rule');

562: l_rule_found varchar2(10):='N';
563:
564: begin
565: retcode := 0;
566: fnd_file.put_line(FND_FILE.LOG,'Entering Procedure pay_nl_general.insert_leg_rule');
567:
568: OPEN c_leg_rule('RETRO_COMP_DFLT_OVERRIDE');
569: FETCH c_leg_rule INTO l_rule_found;
570:

Line 582: fnd_file.put_line(FND_FILE.LOG,'Legislation Rule Added,Retropay method is now REPLACEMENT');

578:
579:
580: if (p_retropay_method = 1 AND l_rule_found = 'N') then /* Replacement Method */
581: insert into pay_legislation_rules(legislation_code,rule_type,rule_mode) values ('NL','RETRO_COMP_DFLT_OVERRIDE','Y');
582: fnd_file.put_line(FND_FILE.LOG,'Legislation Rule Added,Retropay method is now REPLACEMENT');
583: else /*Standard Method*/
584: IF (p_retropay_method = 0 AND l_rule_found = 'Y') then
585: delete from pay_legislation_rules
586: where legislation_code='NL'

Line 588: fnd_file.put_line(FND_FILE.LOG,'Legislation Rule Removed,Retropay method is now STANDARD');

584: IF (p_retropay_method = 0 AND l_rule_found = 'Y') then
585: delete from pay_legislation_rules
586: where legislation_code='NL'
587: and rule_type='RETRO_COMP_DFLT_OVERRIDE';
588: fnd_file.put_line(FND_FILE.LOG,'Legislation Rule Removed,Retropay method is now STANDARD');
589: END if;
590: end if;
591: fnd_file.put_line(FND_FILE.LOG,'Leaving Procedure pay_nl_general.insert_leg_rule');
592: END insert_leg_rule;

Line 591: fnd_file.put_line(FND_FILE.LOG,'Leaving Procedure pay_nl_general.insert_leg_rule');

587: and rule_type='RETRO_COMP_DFLT_OVERRIDE';
588: fnd_file.put_line(FND_FILE.LOG,'Legislation Rule Removed,Retropay method is now STANDARD');
589: END if;
590: end if;
591: fnd_file.put_line(FND_FILE.LOG,'Leaving Procedure pay_nl_general.insert_leg_rule');
592: END insert_leg_rule;
593:
594:
595: ---------------------------------------------------------------------------

Line 2953: fnd_file.put_line(fnd_file.log,l_message);

2949: hr_utility.trace('SQLERRM:'||substr(sqlerrm,1,200));
2950: hr_utility.set_location('Leaving NL_ADJUST_TO_CORRECTION',330);
2951: --raise_application_error(-20001, 'This process does not correlate with the note id 558457.1.') ;
2952: l_message := substrb(fnd_message.get_string('PAY','HR_NL_ADJ_TO_CORR'),1,300); --9453856
2953: fnd_file.put_line(fnd_file.log,l_message);
2954: error_message := FND_CONCURRENT.SET_COMPLETION_STATUS('ERROR', l_message);
2955:
2956: END NL_ADJUST_TO_CORRECTION;
2957: --9453856

Line 2988: fnd_file.put_line(FND_FILE.LOG,'Process Mode : '||l_run_type || ' for Payroll Action Id : '||p_payroll_action_id|| ' Assignment Action Id : '||p_assignment_action_id);

2984: OPEN csr_run_type(p_payroll_action_id,p_assignment_action_id);
2985: FETCH csr_run_type into l_run_type;
2986: CLOSE csr_run_type;
2987:
2988: fnd_file.put_line(FND_FILE.LOG,'Process Mode : '||l_run_type || ' for Payroll Action Id : '||p_payroll_action_id|| ' Assignment Action Id : '||p_assignment_action_id);
2989:
2990: RETURN l_run_type;
2991:
2992: END get_run_type;