DBA Data[Home] [Help]

APPS.GME_CLOSE_BATCH_PVT dependencies on GME_BATCH_HISTORY

Line 37: l_ins_history gme_batch_history%ROWTYPE;

33: l_back_flush NUMBER;
34: l_error_count NUMBER;
35: l_row_count NUMBER;
36: l_return_status VARCHAR2 (1);
37: l_ins_history gme_batch_history%ROWTYPE;
38: l_batch_step gme_batch_steps%ROWTYPE;
39: l_batch_steps_tab gme_close_batch_pvt.step_details_tab;
40: l_batch_header gme_batch_header%ROWTYPE;
41: l_in_batch_header gme_batch_header%ROWTYPE;

Line 420: l_ins_history gme_batch_history%ROWTYPE;

416: IS
417: /* Local variable definitions */
418: l_return_status VARCHAR2 (1);
419: /* Buffers for database reads/writes */
420: l_ins_history gme_batch_history%ROWTYPE;
421: l_api_name CONSTANT VARCHAR2 (30) := 'CREATE_HISTORY';
422: BEGIN
423: l_ins_history.batch_id := p_batch_header_rec.batch_id;
424: l_ins_history.orig_status := 3;

Line 432: IF NOT (gme_batch_history_dbl.insert_row (l_ins_history, l_ins_history) ) THEN

428: l_ins_history.new_wip_whse := p_batch_header_rec.wip_whse_code;
429: */
430: l_ins_history.gl_posted_ind := 0;
431:
432: IF NOT (gme_batch_history_dbl.insert_row (l_ins_history, l_ins_history) ) THEN
433: RETURN FALSE;
434: ELSE
435: RETURN TRUE;
436: END IF;