DBA Data[Home] [Help]

APPS.GME_BATCHSTEP_ACT_PVT dependencies on FND_MESSAGE

Line 444: fnd_message.set_name ('GMA', 'SY_NOFUTUREDATE');

440: IF p_batchstep_activity_rec.actual_cmplt_date IS NOT NULL
441: AND p_batchstep_activity_rec.actual_cmplt_date >
442: gme_common_pvt.g_timestamp
443: THEN
444: fnd_message.set_name ('GMA', 'SY_NOFUTUREDATE');
445: fnd_msg_pub.ADD;
446: RAISE fnd_api.g_exc_error;
447: END IF;
448:

Line 1325: fnd_message.set_name ('GMA', 'SY_NOFUTUREDATE');

1321: -- Check that actual start date is not in the future
1322: IF p_batchstep_activity_rec.actual_start_date >
1323: gme_common_pvt.g_timestamp
1324: THEN
1325: fnd_message.set_name ('GMA', 'SY_NOFUTUREDATE');
1326: fnd_msg_pub.ADD;
1327: RAISE fnd_api.g_exc_error;
1328: END IF;
1329:

Line 1369: fnd_message.set_name ('GMA', 'SY_NOFUTUREDATE');

1365: -- Check that actual cmplt date is not in the future
1366: IF p_batchstep_activity_rec.actual_cmplt_date >
1367: gme_common_pvt.g_timestamp
1368: THEN
1369: fnd_message.set_name ('GMA', 'SY_NOFUTUREDATE');
1370: fnd_msg_pub.ADD;
1371: RAISE fnd_api.g_exc_error;
1372: END IF;
1373: