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 263: IF NOT (gme_batch_steps_dbl.fetch_row (l_batch_step

259: l_batch_step.batchstep_id := dep_steps.batchstep_id;
260: --Bug#5606089 Filtering out the null row.
261: IF l_batch_step.batchstep_id IS NOT NULL THEN
262: /* Initialize output batch step row */
263: IF NOT (gme_batch_steps_dbl.fetch_row (l_batch_step
264: ,l_batch_step) ) THEN
265: RAISE batch_step_fetch_error;
266: END IF;
267:

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

538: RAISE compute_resource_error;
539: END IF;
540:
541: /* Now update the batch step to the database */
542: IF NOT (gme_batch_steps_dbl.update_row (p_batch_step_rec) ) THEN
543: RAISE batch_step_upd_err;
544: END IF;
545:
546: IF NOT (gme_batch_steps_dbl.fetch_row (p_batch_step_rec

Line 546: IF NOT (gme_batch_steps_dbl.fetch_row (p_batch_step_rec

542: IF NOT (gme_batch_steps_dbl.update_row (p_batch_step_rec) ) THEN
543: RAISE batch_step_upd_err;
544: END IF;
545:
546: IF NOT (gme_batch_steps_dbl.fetch_row (p_batch_step_rec
547: ,p_batch_step_rec) ) THEN
548: RAISE batch_step_fetch_err;
549: END IF;
550:

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

2942: x_batchstep_rec.plan_charges := l_charge;
2943: END IF;
2944: END IF; /*l_calc_step_qty */
2945: /* update the batch step record */
2946: IF NOT gme_batch_steps_dbl.update_row(p_batch_step => x_batchstep_rec) THEN
2947: RAISE error_in_update_step;
2948: END IF;
2949:
2950: IF g_debug <= gme_debug.g_log_procedure THEN