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 ...
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 ...
SET PARAMETER或GET PARAMETER语句用这些语句可以存储和检索来自ABAP/4程序的SPA/GPA值。如果两个事务的选择屏幕没有共享同一必需的字段,则请使用这些语句按名称显式存储屏幕字段。在从PAI模块调用新事务之前,用一个名称之下存储调用程序事务的字段: SET PARAMETER ID 'RID' FIELD <FIELD NAME1>.系统将值存储在SPA参...
SET PARAMETER或GET PARAMETER语句用这些语句可以存储和检索来自ABAP/4程序的SPA/GPA值。如果两个事务的选择屏幕没有共享同一必需的字段,则请使用这些语句按名称显式存储屏幕字段。在从PAI模块调用新事务之前,用一个名称之下存储调用程序事务的字段: SET PARAMETER ID 'RID' FIELD <FIELD NAME1>.系统将值存储在SPA参...
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 Hello, I am using SET PARAMETER ID in a custom check function module which gets invoked if invocie is postd. DATA: v_event_belnr like RBKP-BELNR, " BELNR passed from event func. v_event_GJAHR like RBKP-GJAHR. SET PARAMETER ID 'RBN' FIELD V_EVE...
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 Hi, The parameter ID for MD13 is PAF help to find Parameter ID 1. place the cursor in the field and Press F1 . 2. Click 'Technical info' button. 3. You can see your Paramter ID here. Regards, Boobalan S Reply kiran_k8 Active Contributor ...
There is a special parameter for function moduleREUSE_ALV_GRID_DISPLAY, which lets you to define a callback function for setting pf-status. (If you are not familiar with callback functions, please let me know. I will be glad to explain in detail). An example usage could be as follows:...