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 1318: fnd_message.set_name ('GMA', 'SY_NOFUTUREDATE');

1314: -- Check that actual start date is not in the future
1315: IF p_batchstep_activity_rec.actual_start_date >
1316: gme_common_pvt.g_timestamp
1317: THEN
1318: fnd_message.set_name ('GMA', 'SY_NOFUTUREDATE');
1319: fnd_msg_pub.ADD;
1320: RAISE fnd_api.g_exc_error;
1321: END IF;
1322:

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

1358: -- Check that actual cmplt date is not in the future
1359: IF p_batchstep_activity_rec.actual_cmplt_date >
1360: gme_common_pvt.g_timestamp
1361: THEN
1362: fnd_message.set_name ('GMA', 'SY_NOFUTUREDATE');
1363: fnd_msg_pub.ADD;
1364: RAISE fnd_api.g_exc_error;
1365: END IF;
1366: