[Home] [Help]
31: l_second_qty_to_backorder NUMBER; --INVCONV dont default to zero
32:
33: CURSOR c_wsh_info IS
34: SELECT delivery_detail_id, oe_header_id, oe_line_id, released_status
35: FROM wsh_inv_delivery_details_v
36: WHERE move_order_line_id = p_mo_line_rec.line_id
37: AND move_order_line_id IS NOT NULL
38: AND released_status = 'S';
39: