DBA Data[Home] [Help]

APPS.HR_WPM_MASS_APR_PUSH dependencies on FND_FILE

Line 288: fnd_file.put_line (fnd_file.LOG,

284: ELSIF g_dbg_type = g_fnd_log
285: THEN
286: IF p_location IS NOT NULL
287: THEN
288: fnd_file.put_line (fnd_file.LOG,
289: SUBSTR (l_msg, 1, 70)
290: || ', '
291: || TO_CHAR (p_location)
292: );

Line 294: fnd_file.put_line (fnd_file.LOG, SUBSTR (l_msg, 1, 70));

290: || ', '
291: || TO_CHAR (p_location)
292: );
293: ELSE
294: fnd_file.put_line (fnd_file.LOG, SUBSTR (l_msg, 1, 70));
295: END IF;
296: END IF;
297:
298: l_msg := SUBSTR (l_msg, 71);

Line 1340: fnd_file.put_line (fnd_file.LOG, 'NO_SCORE_CARD_WITH_THIS_ID');

1336: 'THERE IS NO SCORECARD WITH THIS ID';
1337: hr_wpm_mass_apr_push.g_wpm_person_actions (log_records_index).processing_status :=
1338: 'ERROR';
1339: -- Error
1340: fnd_file.put_line (fnd_file.LOG, 'NO_SCORE_CARD_WITH_THIS_ID');
1341: RAISE no_score_card_with_this_id;
1342: END IF;
1343:
1344: IF g_dbg

Line 1371: fnd_file.put_line (fnd_file.LOG, 'NO_ASSIGNMENT_WITH_THIS_ID');

1367: 'THERE IS NO ASSIGNMENT WITH THIS ID';
1368: hr_wpm_mass_apr_push.g_wpm_person_actions (log_records_index).processing_status :=
1369: 'ERROR';
1370: -- Error
1371: fnd_file.put_line (fnd_file.LOG, 'NO_ASSIGNMENT_WITH_THIS_ID');
1372: RAISE no_assignment_with_this_id;
1373: END IF;
1374:
1375: IF g_dbg

Line 1400: fnd_file.put_line (fnd_file.LOG, 'NO_APPRL_TEMPL_WITH_THIS_ID');

1396: 'THERE IS NO APPRAISAL TEMPLATE WITH THIS ID';
1397: hr_wpm_mass_apr_push.g_wpm_person_actions (log_records_index).processing_status :=
1398: 'ERROR';
1399: -- Error
1400: fnd_file.put_line (fnd_file.LOG, 'NO_APPRL_TEMPL_WITH_THIS_ID');
1401: RAISE no_apprl_templ_with_this_id;
1402: END IF;
1403:
1404: IF g_dbg

Line 1455: fnd_file.put_line (fnd_file.LOG, 'APPRAISAL_SETUP_ISSUE');

1451: 'THERE IS AN APPRAISAL SET UP ISSUE';
1452: hr_wpm_mass_apr_push.g_wpm_person_actions (log_records_index).processing_status :=
1453: 'ERROR';
1454: -- Error
1455: fnd_file.put_line (fnd_file.LOG, 'APPRAISAL_SETUP_ISSUE');
1456: RAISE appraisal_setup_issue;
1457: END IF;
1458:
1459: /*

Line 1681: fnd_file.put_line (fnd_file.LOG,

1677: 'UNABLE TO CREATE APPRAISAL FOR THIS PERSON AS MAIN APPRAISER COULD NOT BE IDENTIFIED';
1678: hr_wpm_mass_apr_push.g_wpm_person_actions (log_records_index).processing_status :=
1679: 'ERROR';
1680: -- Error
1681: fnd_file.put_line (fnd_file.LOG,
1682: 'Unable to create appraisal for : '
1683: || l_scorecard_info.person_id
1684: || ' as main appraiser could not be identified.'
1685: );