DBA Data[Home] [Help]

APPS.GME_MOVE_ORDERS_PVT dependencies on GME_BATCH_HEADER

Line 307: p_batch_header_rec IN gme_batch_header%ROWTYPE

303: x_return_status := fnd_api.g_ret_sts_unexp_error;
304: END create_move_order_lines;
305:
306: PROCEDURE create_batch_move_order (
307: p_batch_header_rec IN gme_batch_header%ROWTYPE
308: ,p_material_details_tbl IN gme_common_pvt.material_details_tab
309: ,x_return_status OUT NOCOPY VARCHAR2)
310: IS
311: l_api_name CONSTANT VARCHAR2 (30) := 'create_batch_move_order';

Line 1126: FROM gme_batch_header h, gme_material_details d

1122: CURSOR cur_batch_lines
1123: IS
1124: SELECT h.batch_id, h.move_order_header_id, d.material_detail_id
1125: ,d.move_order_line_id
1126: FROM gme_batch_header h, gme_material_details d
1127: WHERE h.organization_id = p_organization_id
1128: AND h.batch_id = p_batch_id
1129: AND d.batch_id = h.batch_id
1130: AND d.line_type = gme_common_pvt.g_line_type_ing;