DBA Data[Home] [Help]

APPS.GME_RESCHEDULE_STEP_PVT dependencies on GME_BATCH_HEADER_DBL

Line 197: IF NOT (gme_batch_header_dbl.fetch_row (l_batch_header_rec

193: l_batch_header_rec.batch_id := x_batch_step_rec.batch_id;
194: l_calendar_code := gme_common_pvt.g_calendar_code;
195:
196: /* Initialize local batch header */
197: IF NOT (gme_batch_header_dbl.fetch_row (l_batch_header_rec
198: ,l_batch_header_rec) ) THEN
199: RAISE batch_header_fetch_error;
200: END IF;
201:

Line 723: IF NOT (gme_batch_header_dbl.fetch_row (l_batch_header_rec

719: we want to fetch the row, so that the timestamps are most
720: current, which is what is used to make sure that someone
721: else has not updated this batch during processing of this
722: program execution. That is why l_batch_header_rec is introduced.*/
723: IF NOT (gme_batch_header_dbl.fetch_row (l_batch_header_rec
724: ,l_batch_header2_rec) ) THEN
725: RAISE batch_header_fetch_error;
726: END IF;
727:

Line 733: IF NOT (gme_batch_header_dbl.update_row (l_batch_header2_rec) ) THEN

729: l_batch_header_rec.plan_start_date;
730: l_batch_header2_rec.plan_cmplt_date :=
731: l_batch_header_rec.plan_cmplt_date;
732:
733: IF NOT (gme_batch_header_dbl.update_row (l_batch_header2_rec) ) THEN
734: RAISE save_data_error;
735: END IF;
736:
737: --Bug#5365527 added the validity rule check for LCF Batches

Line 1119: IF NOT (gme_batch_header_dbl.fetch_row (l_batch_header_rec

1115: /* Initialize return status to success */
1116: x_return_status := fnd_api.g_ret_sts_success;
1117: l_batch_header_rec.batch_id := p_batch_step_rec.batch_id;
1118:
1119: IF NOT (gme_batch_header_dbl.fetch_row (l_batch_header_rec
1120: ,x_batch_header_rec) ) THEN
1121: RAISE invalid_batch;
1122: END IF;
1123: