For an SPA/GPA parameter specified inpidto match a name in the database table TPARA, it must be specified in uppercase. Example In this example, the current value of the SPA/GPA parameter RID is read from the SAP Memory to the data objectprog. In the screens of theABAP Workbench, th...
(1)调试时,可通过Goto-System Area-SAP Memory,查看到YTEST及其对应的值。 (2)SET/GET PARAMETER的值与本次登陆有关,当用户注销后才失效。在用户登陆的时候,系统会根据每个用户User Profile-Own Data-Parameter下的设置,载入到SAP Memory。 (3)Data Element中可以看到Further Characteristics下可定义PARAMETER ID,...
An SPA/GPA parameter that is readable withGET PARAMETERcan previously have been created in the SAP Memory using theSET PARAMETERstatement or automatically during the eventPAIof ascreenorselection screen. For an SPA/GPA parameter specified inpidto match a name in the database table TPARA, it mu...
SAP Managed Tags: ABAP Development 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. *** Second is ztest_j1which is as follows : DATA : mem TYPE char . get PARAMETER ID ...
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 facing a problem using SET and GET parameters. There is a Z transaction(Dialog program) where some fields of screen are having parameter ID's. That transaction is designed to diaplay/change status of only one inspection lot at a time. Now...
SAP Managed Tags: ABAP Development Hi Saurabh, Syntax apart, the SET PARAMETER statement is generally used in the PAI event for a screen. The user will have entered some value for a field on the screen and once you determine the correctness of that value, you can use the SET PARAMETER ...
[NO-EXTENSION]“限制选择表为单行,元素输入后面不会出现按钮。 [NO INTERVALS]” 只会出现LOW字段, [MODIF ID modid] ... .选择屏幕中的参数选项MEMORY ID的作用就等同于对话屏幕中的SET/GET Parameter,它们是作用是相同的(都是针对SAP Memory),只不过一个用于选择屏幕中,一个用于对话屏幕。
The statementsSET PARAMETERandGET PARAMETERdo not work directly with the SPA/GPA parameters of the user memory, which means that they are only suitable for passing data within a singleABAP sessionand not for passing data between two main sessions in parallel. This is because programs that run ...
SAP Managed Tags: UI Web Dynpro ABAP Hello, I used 'SET PARAMETER' in my Web Dynpro code. DATA dobj TYPE sy-repid. dobj = sy-repid. SET PARAMETER ID 'PPPPP' FIELD dobj. The value was correctly stored(I could see this in the memory) I am now trying retreive this value in a ...