DBA Data[Home] [Help]

APPS.GME_COMPLETE_BATCH_STEP_PVT dependencies on GME_BATCH_STEP_RESOURCES

Line 432: UPDATE gme_batch_step_resources

428: AND actual_start_date IS NULL;
429:
430:
431: /* Update the actual completion dates of the resources */
432: UPDATE gme_batch_step_resources
433: SET actual_cmplt_date = x_batch_step_rec.actual_cmplt_date
434: WHERE batchstep_id = x_batch_step_rec.batchstep_id
435: AND batch_id = x_batch_step_rec.batch_id
436: AND actual_cmplt_date IS NULL;

Line 439: UPDATE gme_batch_step_resources

435: AND batch_id = x_batch_step_rec.batch_id
436: AND actual_cmplt_date IS NULL;
437:
438: /* Update the actual start dates of the resources */
439: UPDATE gme_batch_step_resources
440: SET actual_start_date = x_batch_step_rec.actual_start_date
441: WHERE batchstep_id = x_batch_step_rec.batchstep_id
442: AND batch_id = x_batch_step_rec.batch_id
443: AND actual_start_date IS NULL;