DBA Data[Home] [Help]

APPS.GME_PHANTOM_PVT dependencies on GME_BATCH_HEADER_DBL

Line 132: IF NOT (gme_batch_header_dbl.fetch_row (l_batch_header, l_batch_header) ) THEN

128: END IF;
129:
130: l_batch_header.batch_id := x_material_detail_rec.batch_id;
131:
132: IF NOT (gme_batch_header_dbl.fetch_row (l_batch_header, l_batch_header) ) THEN
133: RAISE batch_header_fetch_error;
134: END IF;
135:
136: --Bug#6738476 This is just to assign the attirbute information of the flexfields

Line 272: IF NOT (gme_batch_header_dbl.fetch_row (l_phant_batch, l_phant_batch)) THEN

268: gme_debug.put_line ('Update batch_id '|| l_phant_batch.batch_id||' with parentline_id '||p_material_detail_rec.material_detail_id);
269: END IF;
270:
271: -- Bug 14681911 - Refresh the variable data before the next update.
272: IF NOT (gme_batch_header_dbl.fetch_row (l_phant_batch, l_phant_batch)) THEN
273: RAISE batch_header_fetch_error;
274: END IF;
275:
276: l_phant_batch.parentline_id := p_material_detail_rec.material_detail_id;

Line 283: IF NOT gme_batch_header_dbl.update_row (p_batch_header => l_phant_batch) THEN

279: -- This leads to problems if a customized call is made in the interim and timestamp is
280: -- changed. Also, the update_row function stamps it properly so this is redundant.
281: -- l_phant_batch.last_update_date := gme_common_pvt.g_timestamp;
282:
283: IF NOT gme_batch_header_dbl.update_row (p_batch_header => l_phant_batch) THEN
284: RAISE batch_upd_error;
285: END IF;
286:
287: OPEN cur_get_phantom_prod (l_phant_batch.batch_id

Line 378: IF NOT gme_batch_header_dbl.fetch_row (p_batch_header => p_batch_header

374: END IF;
375:
376: x_return_status := fnd_api.g_ret_sts_success;
377:
378: IF NOT gme_batch_header_dbl.fetch_row (p_batch_header => p_batch_header
379: ,x_batch_header => l_batch_header) THEN
380: RAISE error_fetch_header;
381: END IF;
382: