DBA Data[Home] [Help]

APPS.GME_UPDATE_STEP_QTY_PVT dependencies on GME_BATCH_STEPS_DBL

Line 87: IF NOT (gme_batch_steps_dbl.fetch_row (p_batch_step_rec

83: || l_api_name||'p_dependency_type ' || p_dependency_type);
84: END IF;
85:
86: /* Initialize output batch step row */
87: IF NOT (gme_batch_steps_dbl.fetch_row (p_batch_step_rec
88: ,x_batch_step_rec) ) THEN
89: RAISE batch_step_fetch_error;
90: END IF;
91:

Line 252: IF NOT (gme_batch_steps_dbl.fetch_row (l_batch_step

248: l_batch_step.batchstep_id := dep_steps.batchstep_id;
249: --Bug#5606089 Filtering out the null row.
250: IF l_batch_step.batchstep_id IS NOT NULL THEN
251: /* Initialize output batch step row */
252: IF NOT (gme_batch_steps_dbl.fetch_row (l_batch_step
253: ,l_batch_step) ) THEN
254: RAISE batch_step_fetch_error;
255: END IF;
256:

Line 520: IF NOT (gme_batch_steps_dbl.update_row (p_batch_step_rec) ) THEN

516: RAISE compute_resource_error;
517: END IF;
518:
519: /* Now update the batch step to the database */
520: IF NOT (gme_batch_steps_dbl.update_row (p_batch_step_rec) ) THEN
521: RAISE batch_step_upd_err;
522: END IF;
523:
524: IF NOT (gme_batch_steps_dbl.fetch_row (p_batch_step_rec

Line 524: IF NOT (gme_batch_steps_dbl.fetch_row (p_batch_step_rec

520: IF NOT (gme_batch_steps_dbl.update_row (p_batch_step_rec) ) THEN
521: RAISE batch_step_upd_err;
522: END IF;
523:
524: IF NOT (gme_batch_steps_dbl.fetch_row (p_batch_step_rec
525: ,p_batch_step_rec) ) THEN
526: RAISE batch_step_fetch_err;
527: END IF;
528:

Line 2716: IF NOT gme_batch_steps_dbl.update_row(p_batch_step => x_batchstep_rec) THEN

2712: x_batchstep_rec.plan_charges := l_charge;
2713: END IF;
2714: END IF; /*l_calc_step_qty */
2715: /* update the batch step record */
2716: IF NOT gme_batch_steps_dbl.update_row(p_batch_step => x_batchstep_rec) THEN
2717: RAISE error_in_update_step;
2718: END IF;
2719:
2720: IF g_debug <= gme_debug.g_log_procedure THEN