SAP Managed Tags: ABAP Development Hi, AT SELECTION-SCREEN. LOOP AT SCREEN. IF CHECK1 = 'X' AND SCREEN-GROUP1 = 'DC' OR SCREEN-GROUP1 = 'MRP' OR SCREEN-GROUP1 = 'P1' OR SCREEN-GROUP1 = 'C1' OR SCREEN-GROUP1 = 'S1' OR SCREEN-GROUP1 = 'SO' OR SCREEN-GROUP1 = 'M1'....
SAP Managed Tags: ABAP Development Event will be triggered on selection of the radio button only if you attach "user - command" to the Parameter. So unless you assign some command like "uc01" event will not be triggered and the code written in "at selection screen output" will not be...
实现的功能:当点击screen上的一个check box 或者Radio Button时,隐藏或者显示某些parameters或select options。 例子如下: PARAMETERS: p_dl AS CHECKBOX USER-COMMAND abc, p_file TYPE localfile. AT SELECTION-SCREEN OUTPUT. LOOP AT SCREEN. IF screen-name CP '*P_FILE*'. IF p_dl IS INITIAL. screen-...
SAP Managed Tags: ABAP Development Hi, check this code.. REPORT ZTEST_CHECK . parameters: p_sale radiobutton group g1 user-command ABC default 'X', p_mate radiobutton group g1 . parameters: p_vbeln like vbak-vbeln, p_matnr like mara-matnr. at selection-screen output. if p_sale...
LOOP AT SCREEN 转自:http://blog.sina.com.cn/s/blog_73bb07310100o0m5.html 实现的功能:当点击screen上的一个check box 或者Radio Button时,隐藏或者显示某些parameters或select options。 例子如下: PARAMETERS: p_dl AS CHECKBOX USER-COMMAND abc,...