DBA Data[Home] [Help]

APPS.GME_CREATE_STEP_PVT dependencies on GME_BATCH_STEP_CHARGES

Line 157: FROM gme_batch_step_charges

153:
154: CURSOR cur_is_charge_associated (v_batch_id NUMBER, v_batchstep_id NUMBER)
155: IS
156: SELECT resources
157: FROM gme_batch_step_charges
158: WHERE batch_id = v_batch_id
159: AND batchstep_id = v_batchstep_id
160: AND ROWNUM = 1;
161:

Line 1414: UPDATE gme_batch_step_charges

1410: END IF;
1411:
1412: CLOSE cur_get_resource_dates;
1413:
1414: UPDATE gme_batch_step_charges
1415: SET plan_start_date = l_rsrc_start_date
1416: ,plan_cmplt_date = l_rsrc_cmplt_date
1417: WHERE batch_id = p_gme_batch_header_rec.batch_id
1418: AND batchstep_id = l_batchstep_ids_tab (i);