DBA Data[Home] [Help]

APPS.AP_MATCHING_PKG dependencies on PO_LINE_LOCATIONS_ALL

Line 2106: PO_LINE_LOCATIONS_ALL PLL,

2102: G_dflt_tax_class_code,
2103: G_PAY_AWT_GROUP_ID --pay_awt_group_id bug8222382
2104: -- bug 5061826 -- new FROM clause that goes to base tables
2105: FROM PO_LINES_ALL PL,
2106: PO_LINE_LOCATIONS_ALL PLL,
2107: po_distributions pd,
2108: mtl_system_items msi
2109: WHERE pll.line_location_id = x_po_line_location_id
2110: and pd.line_location_id = pll.line_location_id

Line 6034: From po_line_locations_all pll

6030: x_calling_sequence IN VARCHAR2) Is
6031:
6032: Cursor c_line_locations (c_po_header_id NUMBER) IS
6033: Select pll.*
6034: From po_line_locations_all pll
6035: Where pll.po_header_id = c_po_header_id
6036: And nvl(retainage_withheld_amount,0) - nvl(retainage_released_amount,0) <> 0;
6037:
6038: l_line_locations c_line_locations%rowtype;