SAP ABAP计划 SY-REPID与SY-CPROG差异 首先,它的两个解释 sy-repid is the name of the current program. “当前程序的程序名 sy-cprog is the name of the calling program.”调用程序的程序名 写个简单的程序。调个FM ,你就知道差别了,当程序进入FM的时候 sy-repid是这个FM所在FunctionPool的名字, sy-...
SAP ABAP计划 SY-REPID与SY-CPROG差异 首先,它的两个解释 sy-repid is the name of the current program. “当前程序的程序名 sy-cprog is the name of the calling program. ”调用程序的程序名 写个简单的程序。调个FM ,你就知道差别了,当程序进入FM的时候 sy-repid是这个FM所在FunctionPool的名字, sy...
SAP Managed Tags: ABAP Development Hi all, in a function module call I want to pass the calling report's name as an import parameter. I want to do this dynamically so that the 'call function ...' code can be copied to any report. I found two SY-fields, sy-repid and sy-cprog...
SAP Managed Tags: ABAP Development HI, EXPERTS, OUR CLIENT HAS UPGRADED FROM 4..6C TO ECC 6.0. I HAVE GOT A PROGRAM IN WHICH FOLLOWING SYNTAX IS USED. DATA: v_repid like sy-repid. v_repid = sy-repid. call function 'REUSE_ALV_GRID_DISPLAY' exporting i_callback_program = v_repi...
SAP Managed Tags: ABAP Development ABAP Development Programming Tool View products (1) Hi Experts, 1.What is the Difference between sy-repid and sy-cprog? 2.I have used "Reuse_alv_fieldcatalog_merge'.In that program i passed types : begin of ty_ekpo, ebeln type ekpo-ebeln, ebelp ...
ABAP的PO接口调用 这个说的是我们调用外围系统的接口 首先要一次性创建成功sap的软件 zsoa0024这个结构是根据需求自己创建的结构,具体看你的需求是怎么样的 其中还有个try catch的异常捕捉cx_ai_system_fault这个也是类里面异常 怎么查看这个异常,打开配置好的接口类 TYPES: BEGIN OF lty_out, &nbs... ...
SY-REPID: 当前程序名 SY-CPROG:调用程序名 示例如下:ZWLDEMO021 执行步骤仍然在程序ZWLDEMO020中时 SY-REPID = ZWLDEMO021 SY-CPROG = ZWLDEMO021 继续执行程序到FUNCTION中,当前程序应该是FUNCTION的主程序SAPSCAL SY-REPID = SAPSCAL SY-CPROG = ZWLDEMO......
SAP ABAP规划 SY-REPID与SY-CPROG差额 首先。它的两个解释 sy-repid is the name of the current program. “当前程序的程序名 sy-cprog is the name of the calling program.”调用程序的程序名 写个简单的程序,调个FM ,你就知道差别了,当程序进入FM的时候...