DBA Data[Home] [Help]

APPS.WIP_FLOW_UTILITIES dependencies on WIP_LOT_SERIAL_OBJ_T

Line 2344: l_compObj system.wip_lot_serial_obj_t;

2340: l_lotItemsRecords c_lotItems%ROWTYPE;
2341: l_lotNumber c_lot%ROWTYPE;
2342:
2343: x_returnStatus varchar2(1);
2344: l_compObj system.wip_lot_serial_obj_t;
2345: l_lot system.wip_txn_lot_obj_t;
2346: l_org_id NUMBER;
2347: l_wipentityid NUMBER;
2348: l_errorcode NUMBER;

Line 2375: l_compObj := system.wip_lot_serial_obj_t(null, null, null, null, null, null);

2371: BEGIN
2372: savepoint defaultlotsp_10;
2373: x_returnStatus := fnd_api.g_ret_sts_success;
2374:
2375: l_compObj := system.wip_lot_serial_obj_t(null, null, null, null, null, null);
2376: l_compObj.initialize;
2377:
2378: if ( txn_type_id in (44, 90) ) then
2379: l_comp_txn_type_id := 35;

Line 2410: -- Add the items to the wip_lot_serial_obj_t

2406: if(l_wipentityid is null ) then
2407: l_wipentityid := -1;
2408: end if;
2409:
2410: -- Add the items to the wip_lot_serial_obj_t
2411: l_compObj.addItem(p_opSeqNum => l_lotItemsRecords.operation_seq_num,
2412: p_itemID => l_lotItemsRecords.inventory_item_id,
2413: p_itemName => l_lotItemsRecords.concatenated_segments,
2414: p_priQty => l_lotItemsRecords.primary_quantity,