---
sourceDocument: Yokohama Build or modify applications
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/yokohama/application-development

 Release :

    - yokohama

ft:locale :

    - en-US

ft:publication_title :

    - Yokohama Build or modify applications

ft:clusterId :

    - cadev

bundleId :

    - cadev

workflow :

    - Development, Data, and Analytics


---

# Standard remote tables for ERP Canvas

# Standard remote tables for ERP Canvas {#ariaid-title1}

* Release version: Yokohama
* 
* Updated January 30, 2025
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 minute to read

ERP Canvas accesses several standard remote tables for ERP (Enterprise Resource Planning) models.
The following remote tables are available through ERP Canvas and ERP-CM.{#erpi-standard-remote-tables__table_r5p_n1d_dwb__entry__3}

| Label | Name | ERP module |
|-|-|-|
| SAP Company Code | sn_erp_integration_st_sap_company_code | Basis |
| SAP Country | sn_erp_integration_st_sap_country | Basis |
| SAP Currency | sn_erp_integration_st_sap_currency | Basis |
| SAP Language | sn_erp_integration_st_sap_language | Basis |
| SAP Material Stock | sn_erp_integration_st_sap_material_stock | Procurement |
| SAP Purchase Document | sn_erp_integration_st_sap_purchase_document | Procurement |
| SAP Purchasing Organization | sn_erp_integration_st_sap_purchasing_organization | Procurement |
| SAP Customer Invoice | sn_erp_integration_st_sap_customer_invoice | Sales |
| SAP Distribution Channel | sn_erp_integration_st_sap_distribution_channel | Sales |
| SAP Division | sn_erp_integration_st_sap_division | Sales |
| SAP Sales Customer | sn_erp_integration_st_sap_sales_customer | Sales |
| SAP Sales Delivery | sn_erp_integration_st_sap_sales_delivery | Sales |
| SAP Sales Document | sn_erp_integration_st_sap_sales_document | Sales |
| SAP Sales Organization | sn_erp_integration_st_sap_sales_organization | Sales |
| SAP Sales Revenue Recognition | sn_erp_integration_st_sap_sales_revenue_recognition | Sales |
| SAP Vendor | sn_erp_integration_st_sap_vendor | Sales |
| SAP Vendor Invoice | sn_erp_integration_st_sap_vendor_invoice | Sales |
| SAP Transport | sn_erp_integration_st_sap_transport | Transport |
[Table 1. Remote tables for ERP Canvas and ERP-CM]

{#erpi-standard-remote-tables__table_r5p_n1d_dwb}For more details on working with remote tables, see [Remote tables](https://www.servicenow.com/docs/access?context=remote-tables&version=yokohama&pubname=yokohama-servicenow-platform&ft:locale=en-US).  
You can use any of the standard remote tables as data sources when building apps in ServiceNow products, such as:

* [App Engine Studio](https://servicenow-prod.fluidtopics.net/Fmj9brHb9IK_I4bR7EEMGw "ServiceNow App Engine Studio (AES) is a guided, low-code tool for developing rich web applications to store information, automate business processes, and solve business problems. Work that was once assigned to administrators can now be delegated to employees with little to no training using AES.")
* [Flows in Workflow Studio](https://www.servicenow.com/docs/access?context=exploring-flows&version=yokohama&pubname=yokohama-build-workflows&ft:locale=en-US)
* [Playbooks in Workflow Studio](https://www.servicenow.com/docs/access?context=exploring-process-automation-designer&version=yokohama&pubname=yokohama-build-workflows&ft:locale=en-US)
* [Table Builder](https://servicenow-prod.fluidtopics.net/JsMfOwk2pZuxROkx9vgGWQ "Table Builder enables you to create, design, and administer tables and forms visually from a single user interface.")
* [UI Builder](https://servicenow-prod.fluidtopics.net/ZYDneu8Ka~yQVRKSVpU3Vw "UI Builder is a web user interface builder. Use UI Builder to build pages for App Engine Studio generated workspaces or custom web experiences using Next Experience Components and custom web components.")
* [Workspace Builder](https://servicenow-prod.fluidtopics.net/N~ysuqZkMnCm4ol5thPOfg "Create a workspace in App Engine Studio (AES) to build a space that provides agents, case managers, help desk professionals, and managers with tools to help answer customer questions and resolve customer problems. Workspaces are primarily used for request and fulfillment processes, such as a service desk to manage tickets.")
{#erpi-standard-remote-tables__ul_orw_xyb_dwb}

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');


