DBA Data[Home] [Help]

APPS.PSP_ROLLBACK_DIST_LINES dependencies on FND_MESSAGE

Line 79: fnd_message.set_name('PSP','PSP_DL_ALREADY_PROCESSED');

75:
76: /* Record has been processed by Summarise and Transfer */
77: IF payroll_control_rec.status_code in ('P','I')
78: THEN
79: fnd_message.set_name('PSP','PSP_DL_ALREADY_PROCESSED');
80: fnd_message.set_token('TIME_PERIOD',l_period_name);
81: fnd_msg_pub.add;
82: l_deleted := FALSE;
83: ELSIF payroll_control_rec.status_code = 'N'

Line 80: fnd_message.set_token('TIME_PERIOD',l_period_name);

76: /* Record has been processed by Summarise and Transfer */
77: IF payroll_control_rec.status_code in ('P','I')
78: THEN
79: fnd_message.set_name('PSP','PSP_DL_ALREADY_PROCESSED');
80: fnd_message.set_token('TIME_PERIOD',l_period_name);
81: fnd_msg_pub.add;
82: l_deleted := FALSE;
83: ELSIF payroll_control_rec.status_code = 'N'
84: THEN

Line 110: fnd_message.set_name('PSP','PSP_DL_ALREADY_PROCESSED');

106: ELSE /* count(*) != 0 */
107: /* Though the payroll control record are having status N
108: but the lines have processed by ST but failed. */
109:
110: fnd_message.set_name('PSP','PSP_DL_ALREADY_PROCESSED');
111: fnd_message.set_token('TIME_PERIOD',l_period_name);
112: fnd_msg_pub.add;
113: l_deleted := FALSE;
114: END IF; /* count(*) = 0 */

Line 111: fnd_message.set_token('TIME_PERIOD',l_period_name);

107: /* Though the payroll control record are having status N
108: but the lines have processed by ST but failed. */
109:
110: fnd_message.set_name('PSP','PSP_DL_ALREADY_PROCESSED');
111: fnd_message.set_token('TIME_PERIOD',l_period_name);
112: fnd_msg_pub.add;
113: l_deleted := FALSE;
114: END IF; /* count(*) = 0 */
115: END IF;

Line 131: fnd_message.set_name('PSP','PSP_SQL_ERROR');

127: EXCEPTION
128: WHEN OTHERS
129: THEN
130: ROLLBACK;
131: fnd_message.set_name('PSP','PSP_SQL_ERROR');
132: fnd_message.set_token('SQLERROR',sqlerrm);
133: fnd_msg_pub.add;
134: --For Bug 2665152 : Introduced the Error Message and assigned value to retcode
135: psp_message_s.print_error(p_mode => FND_FILE.LOG,

Line 132: fnd_message.set_token('SQLERROR',sqlerrm);

128: WHEN OTHERS
129: THEN
130: ROLLBACK;
131: fnd_message.set_name('PSP','PSP_SQL_ERROR');
132: fnd_message.set_token('SQLERROR',sqlerrm);
133: fnd_msg_pub.add;
134: --For Bug 2665152 : Introduced the Error Message and assigned value to retcode
135: psp_message_s.print_error(p_mode => FND_FILE.LOG,
136: p_print_header => FND_API.G_TRUE);