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.
我觉得不可以,你可以找到对应的每个字段的parameter id,然后一个一个赋值。一般是在热点点击的时候跳转用的,可以参考下面的代码,分别是跳转到po和pr界面的:--- 事件触发子程序 --- FORM frm_user_comm USING r_ucomm LIKE sy-ucomm rs_selfield TYPE slis_selfield.DATA: lw_alv TYPE ...
SET PARAMETER或GET PARAMETER语句用这些语句可以存储和检索来自ABAP/4程序的SPA/GPA值。如果两个事务的选择屏幕没有共享同一必需的字段,则请使用这些语句按名称显式存储屏幕字段。在从PAI模块调用新事务之前,用一个名称之下存储调用程序事务的字段: SET PARAMETER ID 'RID' FIELD <FIELD NAME1>.系统将值存储在SPA参...
Runtime error:SET_PARAMETER_ID_SPACE Cause:Key is longer than 20 characters Runtime error:SET_PARAMETER_ID_TOO_LONG Cause:Value is longer than 255 characters Runtime error:SET_PARAMETER_VALUE_TOO_LONG Cause:Memory limit of the user memory was reached ...
1、在代码编辑器(SE38 等)里使用向前导航:在程序中写 SET PARAMETER '<para>' ... 或 GET PARAMETER '<para>' ...,然后双击单引号中的 <para>,如果参数存在,就显示它的详细信息;如果不存在,就会弹出窗口要求用户创建它。 2、在 ABAP 字典(SE11)里使用向前导航:给数据元素指定“参数 ID”,并且双击它,...
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.
SAP Managed Tags: ABAP Development Hi Try like this ***change the order*** READ TABLE lt_order INDEX row_no-row_id INTO row_ord. SET PARAMETER ID 'AUN' FIELD row_ord-vbeln. CALL TRANSACTION 'VA02' AND SKIP FIRST SCREEN. SET PARAMETER ID 'AUN' FIELD row_ord-vbeln. SET PARAMETER...
SAP Managed Tags: ABAP Development hii adrian, you can free the set parameter id as. first set parameter id 'GARV' field s_kunnr. then get it at another place like this get parameter id 'GARV' field s_kunnr. now you can free the set parameter as. set parameter id 'GARV' field ...
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...
SET parameter ID for MD13 Go to solution Former Member 2008 Aug 06 4:59 AM 0 Kudos 432 SAP Managed Tags: ABAP Development Hi All. I need to call the transaction MD13 from ALV, please let me know set parameter ID for MD13. Thanks. Regards. Jay Reply 1 ACCEPTED ...