DBA Data[Home] [Help]

APPS.GME_DELETE_BATCH_STEP_PVT dependencies on GMD_AUTO_STEP_CALC

Line 42: l_step_tbl gmd_auto_step_calc.step_rec_tbl;

38: l_return_status VARCHAR2 (1);
39: l_inv_trans_count NUMBER;
40: l_rsrc_trans_count NUMBER;
41: l_count NUMBER;
42: l_step_tbl gmd_auto_step_calc.step_rec_tbl;
43: l_msg_count NUMBER;
44: l_msg_stack VARCHAR2 (2000);
45:
46: CURSOR cur_get_count (v_batch_id NUMBER, v_batchstep_id NUMBER)

Line 200: --While Rerouting a batch, the call 'gmd_auto_step_calc.calc_step_qty' is not required.

196: RAISE step_delete_error;
197: END IF;
198:
199: --Begin Bug#3109673 P.Raghu
200: --While Rerouting a batch, the call 'gmd_auto_step_calc.calc_step_qty' is not required.
201: --It is called when the dependent batch step is deleted.
202: IF NOT p_reroute_flag THEN
203: IF l_batch_header.automatic_step_calculation = 1 THEN
204: IF (NVL (g_debug, -1) = gme_debug.g_log_statement) THEN

Line 209: gmd_auto_step_calc.calc_step_qty

205: gme_debug.put_line ('l_batch_step' || l_batch_step.batchstep_id);
206: gme_debug.put_line ('auto step calc...');
207: END IF;
208:
209: gmd_auto_step_calc.calc_step_qty
210: (p_parent_id => l_batch_header.batch_id
211: ,p_step_tbl => l_step_tbl
212: ,p_msg_count => l_msg_count
213: ,p_msg_stack => l_msg_stack