DBA Data[Home] [Help]

APPS.JAI_RCV_TAX_PKG dependencies on PO_LINES_ALL

Line 1080: of PO_LINES_ALL instead of PO_LINE_LOCATIONS_ALL. Code is modified to calculate

1076: When a Receipt is made against a SCHEDULED Release (partial quantity) of
1077: PLANNED PO, then taxes are calculated for whole of the PLANNED PO line quantity
1078: instead of SCHEDULED Release quantity.
1079: The issue is occuring because, precedence_0 is calculated as unit_price * quantity
1080: of PO_LINES_ALL instead of PO_LINE_LOCATIONS_ALL. Code is modified to calculate
1081: precedence_0 as PRICE_OVERRIDE * QUANTITY of PO_LINE_LOCATIONS_ALL instead of using
1082: PO_LINES_ALL
1083:
1084: 16. 06/06/2003 Nagaraj.s for Bug #2991872. Version : 616.1

Line 1082: PO_LINES_ALL

1078: instead of SCHEDULED Release quantity.
1079: The issue is occuring because, precedence_0 is calculated as unit_price * quantity
1080: of PO_LINES_ALL instead of PO_LINE_LOCATIONS_ALL. Code is modified to calculate
1081: precedence_0 as PRICE_OVERRIDE * QUANTITY of PO_LINE_LOCATIONS_ALL instead of using
1082: PO_LINES_ALL
1083:
1084: 16. 06/06/2003 Nagaraj.s for Bug #2991872. Version : 616.1
1085: Code is added to ensure that if Assessable price is defined for Excise Taxes, then
1086: the Assessable Price is picked up instead of the unit price from po_line_locations_all

Line 1829: po_lines_all pla

1825: --Changed by Nagaraj.s for Bug2531667
1826: FOR ll_rec IN (SELECT plla.unit_meas_lookup_code ll_uom,
1827: pla.unit_meas_lookup_code l_uom
1828: FROM po_line_locations_all plla,
1829: po_lines_all pla
1830: WHERE plla.line_location_id = p_line_location_id
1831: AND pla.po_header_id = plla.po_header_id
1832: AND pla.po_line_id = p_po_line_id)
1833: LOOP