Sample Glide query for ERP data in Zero Copy Connector for ERP

  • 릴리스 버전: Australia
  • 업데이트 날짜 2026년 03월 12일
  • 소요 시간: 1분
  • Access data from the ERP (Enterprise Resource Planning) 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');