以下为摘自SAP ABAP经典中文帮助。 GET PARAMETER Syntax GET PARAMETER ID pid FIELD dobj. Effect This statement sets the content of the data objectdobjto the content of theSPA/GPAparameter specified inpid.pidmust be aflatcharacter-type field that contains no more than 20 characters and does not...
以下为摘自SAP ABAP经典中文帮助。 GET PARAMETER Syntax GET PARAMETER ID pid FIELD dobj. Effect This statement sets the content of the data objectdobjto the content of theSPA/GPAparameter specified inpid.pidmust be aflatcharacter-type field that contains no more than 20 characters and does not...
When initial screen of SM30 Maintain Table Views is displayed, enterTPARAin Table/View name field to define or create a new SAP memory parameter id which can be used in ABAP GET Parameter ID and SET Parameter ID commands. Then press Maintain button. To create a new SAP Parameter ID, main...
以下为摘自SAP ABAP经典中文帮助。 GET PARAMETER Syntax GET PARAMETER ID pid FIELD dobj. Effect This statement sets the content of the data objectdobjto the content of theSPA/GPAparameter specified inpid.pidmust be aflatcharacter-type field that contains no more than 20 characters and does not...
SET /GET PARAMTER ID使用SPA/GPA 参数--SAP内存参数设置 这是在外部程序之间传送数据的最常用方法。使用EXPORT/IMPORT数据(ABAP/4内存)任何程序都可以使用EXPORT语句在ABAP/4内存中存储数据字段簇。因此,该数据就全局有效(使用IMPORT),在程序本身中以及任何被调事务、报表或其它模块中都有效。使用EXPORT: ...
ABAP programs can access the parameters using the SET PARAMETER and GET PARAMETER statements. To fill one, use: SET PARAMETER ID <pid> FIELD <f>. This statement saves the contents of field <f> under the ID <pid> in the SAP memory. The code <pid> can be up to 20 characters long. ...
SAP Managed Tags: ABAP Development Hi, I need to store one variable value and I need to retrieve the same variable value in same program. For this I have written set and get parameter ids in the same program. It is working fine but if I log off the system and if I logon the sys...
SAP Managed Tags: ABAP Development Hi all, i am using set parameter id in a module pool program and get parameter id in the FM . say iam passing a value ABC. IN BETWEEN USING THE FM IF I OPEN SE38 THEN I SEE THE VALUE ABC IN THE PROGRAM NAME. is there any thing that i need...
SAP Managed Tags: ABAP Development Hi, U can use following code in second program u can use the submit keyword ur probelm will solved REPORT ZTEXT2. DATA : mem TYPE char10 . start-of-selection. submit ztext1 and return. get PARAMETER ID 'PARA_XXX' FIELD mem. WRITE : / 'mem from...
SAP Managed Tags: ABAP Development Hi All I need to pass the content of a variable from the program 'A' to program 'B'. Program A uses JOB_OPEN , SUBMIT program VIA JOB jobname NUMBER jobnumber AND return, JOB_CLOSE. I tried to use import/export memory but it didn't work. Then...