DBA Data[Home] [Help]

APPS.GME_COMPLETE_BATCH_STEP_PVT dependencies on GME_BATCH_STEP_ACTIVITIES

Line 474: UPDATE gme_batch_step_activities

470: x_batch_step_rec.last_update_date := gme_common_pvt.g_timestamp;
471: x_batch_step_rec.last_update_login := gme_common_pvt.g_login_id;
472:
473: /* Update the actual completion dates of the activities */
474: UPDATE gme_batch_step_activities
475: SET actual_cmplt_date = x_batch_step_rec.actual_cmplt_date
476: WHERE batchstep_id = x_batch_step_rec.batchstep_id
477: AND batch_id = x_batch_step_rec.batch_id
478: AND actual_cmplt_date IS NULL;

Line 481: UPDATE gme_batch_step_activities

477: AND batch_id = x_batch_step_rec.batch_id
478: AND actual_cmplt_date IS NULL;
479:
480: /* Update the actual start dates of the activities */
481: UPDATE gme_batch_step_activities
482: SET actual_start_date = x_batch_step_rec.actual_start_date
483: WHERE batchstep_id = x_batch_step_rec.batchstep_id
484: AND batch_id = x_batch_step_rec.batch_id
485: AND actual_start_date IS NULL;