ERP Customization Mining (ERP-CM) accesses several standard remote tables for ERP (Enterprise Resource Planning) data.

The following remote tables are available through ERP Data Hub and ERP-CM.
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');