DBA Data[Home] [Help]

APPS.GME_DELETE_BATCH_STEP_PVT dependencies on GME_BATCH_STEPS_DBL

Line 88: IF NOT (gme_batch_steps_dbl.fetch_row (p_batch_step_rec, l_batch_step) ) THEN

84: /* Set the return status to success initially */
85: x_return_status := fnd_api.g_ret_sts_success;
86:
87: /* Initialize local batch step array */
88: IF NOT (gme_batch_steps_dbl.fetch_row (p_batch_step_rec, l_batch_step) ) THEN
89: RAISE batch_step_fetch_error;
90: END IF;
91:
92: /* Load the batch header associated with the step */

Line 195: IF NOT (gme_batch_steps_dbl.delete_row (l_batch_step) ) THEN

191: RAISE step_item_delete_error;
192: END IF;
193: END LOOP;
194:
195: IF NOT (gme_batch_steps_dbl.delete_row (l_batch_step) ) THEN
196: RAISE step_delete_error;
197: END IF;
198:
199: --Begin Bug#3109673 P.Raghu