DBA Data[Home] [Help]

APPS.INV_PO_THIRD_PARTY_STOCK_MDTR dependencies on PO_CORE_S

Line 1158: l_object_type VARCHAR2(2); -- Bug 13783272. Increased the length to 2 as po_core_s has values with 2 chars also.

1154: ) RETURN NUMBER
1155: IS
1156: l_total_amt NUMBER;
1157: l_header_id NUMBER;
1158: l_object_type VARCHAR2(2); -- Bug 13783272. Increased the length to 2 as po_core_s has values with 2 chars also.
1159:
1160: BEGIN
1161: l_object_type := p_object_type;
1162: l_header_id := p_header_id;

Line 1165: l_total_amt := PO_CORE_S.get_total( x_object_type => l_object_type

1161: l_object_type := p_object_type;
1162: l_header_id := p_header_id;
1163:
1164: -- Invoke the PO API to get the total released amounts
1165: l_total_amt := PO_CORE_S.get_total( x_object_type => l_object_type
1166: , x_object_id => l_header_id
1167: );
1168:
1169: RETURN NVL(l_total_amt,0);