SAP和 SAP 系统之间的链接

文章目录

      • 1 Introduction
      • 2 Detail

1 Introduction

If the same system is with SAP system . We can
connect it by indirect . We must configure it with SM59.

The configure is following: SAP和 SAP 系统之间的链接_第1张图片

2 Detail

We need configure it below .

DATA:c_rfcdes TYPE string.

CASE sy-sysid .
  WHEN 'LJD'.
    c_rfcdes = 'ECCTOEWM'.
  WHEN 'LJQ'.
    c_rfcdes = 'MD1CLNT710'.
  WHEN 'LJP'.
    c_rfcdes = 'MP1CLNT800'.
ENDCASE.

We can call it by following method .

  CALL FUNCTION 'ZEWM_FM_WS_INTF' DESTINATION C_RFCDES

你可能感兴趣的:(ABAP,SAP,接口,abap,SAP)