DBA Data[Home] [Help]

APPS.GME_CLOSE_BATCH_PVT dependencies on GME_BATCH_HEADER_DBL

Line 122: IF NOT (gme_batch_header_dbl.fetch_row (p_batch_header_rec

118: /* Set the success staus to success inititally*/
119: x_return_status := fnd_api.g_ret_sts_success;
120:
121: /* Initialize output batch header*/
122: IF NOT (gme_batch_header_dbl.fetch_row (p_batch_header_rec
123: ,x_batch_header_rec) ) THEN
124: RAISE batch_header_fetch_error;
125: END IF;
126:

Line 215: IF NOT (gme_batch_header_dbl.update_row (x_batch_header_rec) ) THEN

211: /* Set up the fields in output structure. */
212: x_batch_header_rec.batch_status := 4;
213:
214: /* Update the batch step to the database */
215: IF NOT (gme_batch_header_dbl.update_row (x_batch_header_rec) ) THEN
216: RAISE batch_header_upd_err;
217: END IF;
218:
219: /* Insert the event into the batch history table */

Line 241: IF NOT (gme_batch_header_dbl.fetch_row (l_batch_header

237: FOR l_rec IN cur_get_phant LOOP
238: l_batch_header.batch_id := l_rec.phantom_id;
239:
240: /* Initialize batch header*/
241: IF NOT (gme_batch_header_dbl.fetch_row (l_batch_header
242: ,l_in_batch_header) ) THEN
243: RAISE batch_header_fetch_error;
244: END IF;
245:

Line 583: IF NOT gme_batch_header_dbl.fetch_row (x_batch_row, x_batch_row) THEN

579:
580: FOR i IN 1 .. x_batch_tbl.COUNT LOOP
581: x_batch_row.batch_id := x_batch_tbl (i);
582:
583: IF NOT gme_batch_header_dbl.fetch_row (x_batch_row, x_batch_row) THEN
584: RETURN FALSE;
585: END IF;
586:
587: gme_trans_engine_util.load_rsrc_trans