DBA Data[Home] [Help]

APPS.GME_REOPEN_STEP_PVT dependencies on GME_CLOSE_BATCH_PVT

Line 38: l_batch_steps_tab gme_close_batch_pvt.step_details_tab;

34: p_batch_header_rec IN gme_batch_header%ROWTYPE
35: ,x_return_status OUT NOCOPY VARCHAR2)
36: IS
37: /* Local variables */
38: l_batch_steps_tab gme_close_batch_pvt.step_details_tab;
39: l_batch_header gme_batch_header%ROWTYPE;
40: l_in_batch_header gme_batch_header%ROWTYPE;
41: l_phantom_ids gme_common_pvt.number_tab;
42: l_return_status VARCHAR2 (1);

Line 51: gme_close_batch_pvt.fetch_batch_steps

47: BEGIN
48: /* Set the success staus to success inititally*/
49: x_return_status := fnd_api.g_ret_sts_success;
50: /* Get all the step into the tab */
51: gme_close_batch_pvt.fetch_batch_steps
52: (p_batch_id => p_batch_header_rec.batch_id
53: ,p_batchstep_id => NULL
54: ,x_step_tbl => l_batch_steps_tab
55: ,x_return_status => x_return_status);