DBA Data[Home] [Help]

APPS.JAI_RCV_TAX_PKG dependencies on PO_LINES_ALL

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

984: When a Receipt is made against a SCHEDULED Release (partial quantity) of
985: PLANNED PO, then taxes are calculated for whole of the PLANNED PO line quantity
986: instead of SCHEDULED Release quantity.
987: The issue is occuring because, precedence_0 is calculated as unit_price * quantity
988: of PO_LINES_ALL instead of PO_LINE_LOCATIONS_ALL. Code is modified to calculate
989: precedence_0 as PRICE_OVERRIDE * QUANTITY of PO_LINE_LOCATIONS_ALL instead of using
990: PO_LINES_ALL
991:
992: 16. 06/06/2003 Nagaraj.s for Bug #2991872. Version : 616.1

Line 990: PO_LINES_ALL

986: instead of SCHEDULED Release quantity.
987: The issue is occuring because, precedence_0 is calculated as unit_price * quantity
988: of PO_LINES_ALL instead of PO_LINE_LOCATIONS_ALL. Code is modified to calculate
989: precedence_0 as PRICE_OVERRIDE * QUANTITY of PO_LINE_LOCATIONS_ALL instead of using
990: PO_LINES_ALL
991:
992: 16. 06/06/2003 Nagaraj.s for Bug #2991872. Version : 616.1
993: Code is added to ensure that if Assessable price is defined for Excise Taxes, then
994: the Assessable Price is picked up instead of the unit price from po_line_locations_all

Line 1613: po_lines_all pla

1609: --Changed by Nagaraj.s for Bug2531667
1610: FOR ll_rec IN (SELECT plla.unit_meas_lookup_code ll_uom,
1611: pla.unit_meas_lookup_code l_uom
1612: FROM po_line_locations_all plla,
1613: po_lines_all pla
1614: WHERE plla.line_location_id = p_line_location_id
1615: AND pla.po_header_id = plla.po_header_id
1616: AND pla.po_line_id = p_po_line_id)
1617: LOOP