DBA Data[Home] [Help]

APPS.PAY_P45_PKG dependencies on PAY_GB_MOVDED_EDI

Line 3455: ELSIF l_date_of_birth IS NOT NULL and PAY_GB_MOVDED_EDI.date_validate(p_assactid,'DOB',l_date_of_birth) = 0 THEN

3451: IF g_edi_ver = 'V6' and l_date_of_birth IS NULL THEN -- V6 Validation
3452: populate_run_msg(p_assactid,'Date Of Birth for this assignment is missing.');
3453: fnd_file.put_line (fnd_file.LOG,l_assignment_number||' : Date Of Birth for this assignment is missing');
3454: l_edi_validation_fail := 'Y';
3455: ELSIF l_date_of_birth IS NOT NULL and PAY_GB_MOVDED_EDI.date_validate(p_assactid,'DOB',l_date_of_birth) = 0 THEN
3456: populate_run_msg(p_assactid,'The Date of Birth for this assignment must be the current date or an earlier date.');
3457: fnd_file.put_line (fnd_file.LOG,l_assignment_number||' : The Date of Birth for this assignment must be the current date or an earlier date.');
3458: l_edi_validation_fail := 'Y';
3459: END IF;

Line 3477: ELSIF PAY_GB_MOVDED_EDI.date_validate(p_assactid,'LEFT_DATE_V6',l_termination_date) = 0 THEN

3473: IF l_termination_date IS NULL THEN
3474: populate_run_msg(p_assactid,'The Date of Leaving of the assignment is missing.');
3475: fnd_file.put_line (fnd_file.LOG,l_assignment_number||' : The Date of Leaving of the assignment is missing');
3476: l_edi_validation_fail := 'Y';
3477: ELSIF PAY_GB_MOVDED_EDI.date_validate(p_assactid,'LEFT_DATE_V6',l_termination_date) = 0 THEN
3478: populate_run_msg(p_assactid,'The Date of Leaving is invalid.');
3479: fnd_file.put_line (fnd_file.LOG,l_assignment_number||' : The Date of Leaving is invalid.');
3480: l_edi_validation_fail := 'Y';
3481: END IF;