DBA Data[Home] [Help]

APPS.GME_CLOSE_STEP_PVT dependencies on GME_BATCH_STEPS_DBL

Line 81: IF NOT (gme_batch_steps_dbl.fetch_row (p_batch_step_rec

77: /* Set the return status to success initially */
78: x_return_status := fnd_api.g_ret_sts_success;
79:
80: /* Initialize output batch step */
81: IF NOT (gme_batch_steps_dbl.fetch_row (p_batch_step_rec
82: ,x_batch_step_rec) ) THEN
83: RAISE batch_step_fetch_error;
84: END IF;
85:

Line 181: IF NOT (gme_batch_steps_dbl.update_row (x_batch_step_rec) ) THEN

177: END IF;
178:
179: /* Update the batch step to the database */
180:
181: IF NOT (gme_batch_steps_dbl.update_row (x_batch_step_rec) ) THEN
182: RAISE batch_step_upd_err;
183: END IF;
184:
185: x_batch_step_rec.last_update_date := gme_common_pvt.g_timestamp;