DBA Data[Home] [Help]

APPS.AP_IMPORT_UTILITIES_PKG dependencies on PO_VENDOR_SITES_ALL

Line 1816: -- Get tolerance info. from po_vendor_sites_all

1812:
1813: -- Bug 4051803
1814: --===================================================================
1815: -- Function: get_tolerance_info
1816: -- Get tolerance info. from po_vendor_sites_all
1817: -- based on vendor_site_id
1818: --===================================================================
1819: FUNCTION get_tolerance_info(
1820: p_vendor_site_id IN NUMBER,

Line 1877: po_vendor_sites_all pvs

1873: p_goods_ship_amt_tolerance,
1874: p_goods_rate_amt_tolerance,
1875: p_goods_total_amt_tolerance
1876: from ap_tolerance_templates att,
1877: po_vendor_sites_all pvs
1878: where pvs.vendor_site_id = p_vendor_site_id
1879: and pvs.tolerance_id = att.tolerance_id;
1880:
1881: EXCEPTION

Line 1907: po_vendor_sites_all pvs

1903: p_services_ship_amt_tolerance,
1904: p_services_rate_amt_tolerance,
1905: p_services_total_amt_tolerance
1906: from ap_tolerance_templates att,
1907: po_vendor_sites_all pvs
1908: where pvs.vendor_site_id = p_vendor_site_id
1909: and pvs.services_tolerance_id = att.tolerance_id;
1910:
1911: