DBA Data[Home] [Help]

APPS.GME_MOVE_ORDERS_PVT dependencies on GME_BATCH_HEADER

Line 357: p_batch_header_rec IN gme_batch_header%ROWTYPE

353: x_return_status := fnd_api.g_ret_sts_unexp_error;
354: END create_move_order_lines;
355:
356: PROCEDURE create_batch_move_order (
357: p_batch_header_rec IN gme_batch_header%ROWTYPE
358: ,p_material_details_tbl IN gme_common_pvt.material_details_tab
359: ,x_return_status OUT NOCOPY VARCHAR2)
360: IS
361: l_api_name CONSTANT VARCHAR2 (30) := 'create_batch_move_order';

Line 1327: FROM gme_batch_header h, gme_material_details d

1323: CURSOR cur_batch_lines
1324: IS
1325: SELECT h.batch_id, h.move_order_header_id, d.material_detail_id
1326: ,d.move_order_line_id
1327: FROM gme_batch_header h, gme_material_details d
1328: WHERE h.organization_id = p_organization_id
1329: AND h.batch_id = p_batch_id
1330: AND d.batch_id = h.batch_id
1331: AND d.line_type = gme_common_pvt.g_line_type_ing;