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 consist solely of blanks; it is...
SET/GET PARAMETER 是通过sap memory来传输字段的值,比如你登陆完系统后第一次运行VL02N修改交货单,修改完后退出,系统会set parameter把这张交换单号写入到sap memory中,当你下次在运行VL02N时,会发现上次修改过的交换单号会自动的带出来,这是系统通过get parameter找到该交货单。parameter id在sa...
一、用F1,直接可以看到这个数据元素的PARAMETER ID 二、直接到表里去找,表名是DD04L 这两种办法都是只能找到数据元素定义了parameter id的, 如果parameter id没有和数据元素挂钩,那就找不到了 例如做会计清帐的时候,F-04里面有一个字段VAUSK,它的数据元素是VARNR_021 通过F1是找不到parameter id的,那就要用...
DATA: para TYPE tpara-paramid VALUE 'RID',prog TYPE sy-repid.GET PARAMETER ID para FIELD prog.IF sy-subrc <> 0.MESSAGE 'Parameter not found' TYPE 'I'.ENDIF.
TRANSACTION<TCode>调用另一程序时,可以在主调程序中使用“SET PARAMETER ID”将被传递的数据存储到SAP memory中,在被调用的Tcode中可以使用“GET PARAMETER ID”来获取,另外,也可以为被调用Tcode屏幕参数的data element设置parameter ID,这样会自动的获取与存储该屏幕参数(只设置Data Element中的Parameter ID是不起...
my problem is how to get these initial value. I debug this program, these value are from the following statement, But I can't find SET PARAMETER ID in this program. Anybody can help me make this clear, thanks in advance. GET PARAMETER ID: 'CAR' FIELD wa_sflight-carrid, 'CON' FIELD...
Hi Folks, I have two programs. First is ztest_j which is as follows : DATA : mem TYPE char10 VALUE 'id1'. set parameter id 'PARA_XXX' field mem.
set parameter id 'MAT' field v_matnr. get parameter id 'MAT' field v_matnr. They are stored in table TPARA. ABAP memory is a memory area that all ABAP programs within the same internal session can access using the EXPORT and IMPORT statements. Data within this area remains intact during...
The Parameter Value, set for the Parameter ID “NAC”, will not be taken over from the User Parameter setting into VL74 as it is not set in the standard system: 1. The Set and Get Parameters are not activated for the relevant screen AND 2. "Get parameter ID" is not programmed. ...
ABAP プログラムでは、SET PARAMETER 命令および GET PARAMETER 命令を使用してパラメータにアクセスすることができます。1 つに入力する場合は以下を使用します。SET PARAMETER ID pid FIELD f.この命令により、ID pid にある項目 f のコンテンツがSAP メモリに保存されます。ID pid の長さは...