Skip to content
Release: Australia · Updated: 2026-03-12 · Official documentation · View source

Standard remote tables for Zero Copy Connector for ERP

Zero Copy Connector for ERP (Enterprise Resource Planning) accesses several standard remote tables for ERP models.

The following remote tables are available through Zero Copy Connector for ERP and ERP Semantic Mining.

LabelNameERP module
SAP Company Codesn_erp_integration_st_sap_company_codeBasis
SAP Countrysn_erp_integration_st_sap_countryBasis
SAP Currencysn_erp_integration_st_sap_currencyBasis
SAP Languagesn_erp_integration_st_sap_languageBasis
SAP Material Stocksn_erp_integration_st_sap_material_stockProcurement
SAP Purchase Documentsn_erp_integration_st_sap_purchase_documentProcurement
SAP Purchasing Organizationsn_erp_integration_st_sap_purchasing_organizationProcurement
SAP Customer Invoicesn_erp_integration_st_sap_customer_invoiceSales
SAP Distribution Channelsn_erp_integration_st_sap_distribution_channelSales
SAP Divisionsn_erp_integration_st_sap_divisionSales
SAP Sales Customersn_erp_integration_st_sap_sales_customerSales
SAP Sales Deliverysn_erp_integration_st_sap_sales_deliverySales
SAP Sales Documentsn_erp_integration_st_sap_sales_documentSales
SAP Sales Organizationsn_erp_integration_st_sap_sales_organizationSales
SAP Sales Revenue Recognitionsn_erp_integration_st_sap_sales_revenue_recognitionSales
SAP Vendorsn_erp_integration_st_sap_vendorSales
SAP Vendor Invoicesn_erp_integration_st_sap_vendor_invoiceSales
SAP Transportsn_erp_integration_st_sap_transportTransport

For more details on working with remote tables, see Remote tables.

You can use any of the standard remote tables as data sources when building apps in ServiceNow products, such as:

-

-

-

You can also access data from the system of record through the Glide API.

The following is an example of a Glide query that fetches a customer name.

var sap_customer_gr = new GlideRecord('sn_erp_integration_st_sap_sales_customer');
sap_customer_gr.get('customer_number', '100032');
sap_customer_gr.getValue('name');

Parent Topic:Zero Copy Connector for ERP standard tables, fields, and models