DBA Data[Home] [Help]

APPS.GME_RELEASE_BATCH_PVT dependencies on GME_BATCH_HEADER_DBL

Line 94: IF NOT gme_batch_header_dbl.update_row (p_batch_header => x_batch_header_rec) THEN

90: -- this is expected to be populated and validated (from either user input or timestamp)
91: x_batch_header_rec.actual_start_date := p_batch_header_rec.actual_start_date;
92:
93: -- Update the batch header
94: IF NOT gme_batch_header_dbl.update_row (p_batch_header => x_batch_header_rec) THEN
95: RAISE error_update_batch;
96: END IF;
97:
98: -- Update WHO columns for output structure

Line 340: IF NOT gme_batch_header_dbl.fetch_row(l_phantom_batch_rec, l_phantom_batch_rec) THEN

336:
337: -- release phantom batch
338: IF l_matl_dtl_rec.phantom_id IS NOT NULL THEN -- phantom -> release the phantom batch
339: l_phantom_batch_rec.batch_id := l_matl_dtl_rec.phantom_id;
340: IF NOT gme_batch_header_dbl.fetch_row(l_phantom_batch_rec, l_phantom_batch_rec) THEN
341: RAISE error_fetch_batch;
342: END IF;
343:
344: IF ( NVL(G_DEBUG,-1) = GME_DEBUG.G_LOG_STATEMENT ) THEN