DBA Data[Home] [Help]

APPS.GME_COMPLETE_BATCH_STEP_PVT dependencies on GME_BATCH_STEP_ACTIVITIES

Line 417: UPDATE gme_batch_step_activities

413: x_batch_step_rec.last_update_date := gme_common_pvt.g_timestamp;
414: x_batch_step_rec.last_update_login := gme_common_pvt.g_login_id;
415:
416: /* Update the actual completion dates of the activities */
417: UPDATE gme_batch_step_activities
418: SET actual_cmplt_date = x_batch_step_rec.actual_cmplt_date
419: WHERE batchstep_id = x_batch_step_rec.batchstep_id
420: AND batch_id = x_batch_step_rec.batch_id
421: AND actual_cmplt_date IS NULL;

Line 424: UPDATE gme_batch_step_activities

420: AND batch_id = x_batch_step_rec.batch_id
421: AND actual_cmplt_date IS NULL;
422:
423: /* Update the actual start dates of the activities */
424: UPDATE gme_batch_step_activities
425: SET actual_start_date = x_batch_step_rec.actual_start_date
426: WHERE batchstep_id = x_batch_step_rec.batchstep_id
427: AND batch_id = x_batch_step_rec.batch_id
428: AND actual_start_date IS NULL;