DBA Data[Home] [Help]

APPS.AP_MATCHING_PKG dependencies on PO_LINE_LOCATIONS_ALL

Line 2206: PO_LINE_LOCATIONS_ALL PLL,

2202: G_dflt_tax_class_code,
2203: G_PAY_AWT_GROUP_ID --pay_awt_group_id bug8222382
2204: -- bug 5061826 -- new FROM clause that goes to base tables
2205: FROM PO_LINES_ALL PL,
2206: PO_LINE_LOCATIONS_ALL PLL,
2207: po_distributions pd,
2208: mtl_system_items msi
2209: WHERE pll.line_location_id = x_po_line_location_id
2210: and pd.line_location_id = pll.line_location_id

Line 6383: From po_line_locations_all pll

6379: x_calling_sequence IN VARCHAR2) Is
6380:
6381: Cursor c_line_locations (c_po_header_id NUMBER) IS
6382: Select pll.*
6383: From po_line_locations_all pll
6384: Where pll.po_header_id = c_po_header_id
6385: And nvl(retainage_withheld_amount,0) - nvl(retainage_released_amount,0) <> 0;
6386:
6387: l_line_locations c_line_locations%rowtype;