DBA Data[Home] [Help]

APPS.CSP_REPAIR_PO_PVT dependencies on PO_LINES_REC_TYPE

Line 215: l_po_line_changes po_lines_rec_type;

211: L_WIP_QUANTITY_SCRAPPED NUMBER;
212: L_WIP_REMAIN_QTY NUMBER;
213: L_WIP_COMPLETE_QTY NUMBER;
214:
215: l_po_line_changes po_lines_rec_type;
216: l_shipment_changes PO_SHIPMENTS_REC_TYPE;
217: l_distribution_changes PO_DISTRIBUTIONS_REC_TYPE;
218: l_changes PO_CHANGES_REC_TYPE;
219: l_po_release_id NUMBER;

Line 671: po_lines_rec_type.create_object (

667: l_qtys (1) := NVL ( IO_QTY_RECEIVED_CHECK_REC.QUANTITY_DELIVERED,NVL (IO_QTY_RECEIVED_CHECK_REC.QUANTITY_RECEIVED, 0)); --Plug in the new Quantity that is needed in the PO
668:
669: --Create the Line Change Object passing in the Line ID and the New Quantity
670: l_po_line_changes :=
671: po_lines_rec_type.create_object (
672: p_po_line_id => poLineIdTbl,
673: p_quantity => l_qtys
674: );
675:

Line 1102: l_po_line_changes := po_lines_rec_type.create_object(

1098: l_qtys.extend;
1099: l_qtys(1) := nvl(IO_QTY_RECEIVED_CHECK_REC.QUANTITY_DELIVERED,nvl(IO_QTY_RECEIVED_CHECK_REC.QUANTITY_RECEIVED,0)); --Plug in the new Quantity that is needed in the PO
1100:
1101: --Create the Line Change Object passing in the Line ID and the New Quantity
1102: l_po_line_changes := po_lines_rec_type.create_object(
1103: p_po_line_id => poLineIdTbl,
1104: p_quantity => l_qtys
1105: );
1106:

Line 1626: l_po_line_changes po_lines_rec_type;

1622: l_wip_status_type NUMBER;
1623:
1624: l_po_con_doc_return_status VARCHAR2(1) := FND_API.G_RET_STS_SUCCESS;
1625:
1626: l_po_line_changes po_lines_rec_type;
1627: l_shipment_changes PO_SHIPMENTS_REC_TYPE;
1628: l_distribution_changes PO_DISTRIBUTIONS_REC_TYPE;
1629: l_changes PO_CHANGES_REC_TYPE;
1630: l_po_release_id NUMBER;

Line 2074: l_po_line_changes := po_lines_rec_type.create_object(

2070: l_qtys.extend;
2071: l_qtys(1) := L_PO_Quantity - L_SCRAP_ADJUST_QTY; --Plug in the new Quantity that is needed in the PO
2072:
2073: --Create the Line Change Object passing in the Line ID and the New Quantity
2074: l_po_line_changes := po_lines_rec_type.create_object(
2075: p_po_line_id => poLineIdTbl,
2076: p_quantity => l_qtys
2077: );
2078: