DBA Data[Home] [Help]

APPS.GMF_LOT_COSTING_PUB dependencies on GME_BATCH_HEADER

Line 100: --* 11-Feb-2004 PJS Set the actual_cost_ind in GME_BATCH_HEADER if the program is being run *

96: --* *
97: --* 10-Feb-2004 PJS Exchange rates catered for on TRNI/TRNR transactions if the movement is *
98: --* between companies that use different currencies. *
99: --* *
100: --* 11-Feb-2004 PJS Set the actual_cost_ind in GME_BATCH_HEADER if the program is being run *
101: --* in 'final' mode. *
102: --* *
103: --* 12-Feb-2004 PJS Various changes for bugs 3399618, 3401451, 3397388 and 3397408. These *
104: --* reported different manifestations of the same problem of either adding *

Line 4496: FROM gme_batch_header

4492:
4493: -- Explode the batch
4494:
4495: SELECT nvl(routing_id,0) INTO l_routing
4496: FROM gme_batch_header
4497: WHERE batch_type = 0
4498: AND batch_id = transaction_row.doc_id;
4499:
4500: IF l_routing = 0

Line 6161: UPDATE gme_batch_header

6157: --program_id = l_program_id,
6158: last_update_date = sysdate
6159: WHERE transaction_id = transaction_row.transaction_id;*/
6160:
6161: UPDATE gme_batch_header
6162: SET actual_cost_ind = 1
6163: WHERE batch_id = transaction_row.doc_id;
6164:
6165: END IF;

Line 8385: FROM gme_batch_header

8381:
8382: CURSOR batch_status_cursor(p_batch_id NUMBER)
8383: IS
8384: SELECT batch_status
8385: FROM gme_batch_header
8386: WHERE batch_id = p_batch_id
8387: AND ACTUAL_CMPLT_DATE <= l_final_run_date;
8388:
8389: BEGIN