DBA Data[Home] [Help]

APPS.GME_CREATE_STEP_PVT dependencies on GME_BATCH_STEP_CHARGES

Line 161: FROM gme_batch_step_charges

157:
158: CURSOR cur_is_charge_associated (v_batch_id NUMBER, v_batchstep_id NUMBER)
159: IS
160: SELECT resources
161: FROM gme_batch_step_charges
162: WHERE batch_id = v_batch_id
163: AND batchstep_id = v_batchstep_id
164: AND ROWNUM = 1;
165:

Line 1499: UPDATE gme_batch_step_charges

1495: END IF;
1496:
1497: CLOSE cur_get_resource_dates;
1498:
1499: UPDATE gme_batch_step_charges
1500: SET plan_start_date = l_rsrc_start_date
1501: ,plan_cmplt_date = l_rsrc_cmplt_date
1502: WHERE batch_id = p_gme_batch_header_rec.batch_id
1503: AND batchstep_id = l_batchstep_ids_tab (i);