is defined in the PBO module. When the dynpro is exited usingLEAVE SCREEN, its processing is stopped and the list processor is started. The list events are handled in the same program. When the list processor is
LEAVE LIST-PROCESSING. "在其他屏幕退出 STOP. "退出当前处理模块,跳转到END-OF-SELECTION EXIT. "退出当前处理模块,剩余模块继续执行 RETURN. "退出当前模块 CHECK. "跳出当前模块,执行下一个模块,相当于RETURN CONTINUE. "在LOOP/DO/WHILE等循环语句中使用,跳出当前循环,执行下一次循环...
l另外,如果CHECK在循环(DO、WHILE、LOOP)里,只是跳出当前循环而已; l如果CHECK出现在循环以外,退出的是当前执行的程序块(processing block),例如一个FORM,METHOD,或EVENT。 12.21.5.LEAVE LEAVE PROGRAM.退出整个程序 LEAVE TO TRANSACTIONta LEAVE LIST-PROCESSING.从list processor回到dialog processor LEAVE TO LIST-...
SAP Managed Tags: ABAP Development Dear All . In the main Executable program I have called one screen by CALL SCREEN 0200 STARTING AT 10 10. In PAI module of screen 200 I have written following code . LEAVE TO LIST-PROCESSING . SET PF-STATUS SPACE . SUPPRESS DIALOG . WRITE : / '...
SAP Managed Tags: ABAP Development Hai,, You keep the AT-LINE SELECTION in the last only... For Leave To List Processing ,you will try the following .. IF SY-UCOMM = 'Your Fn_Code'. LEAVE SCREEN. LEAVE TO LIST-PROCESSING. SELECT * FROM ZTable INTO TABLE ITAB. LOOP AT ITAB...
SAP Managed Tags: ABAP Development Dear All Gurus, I'm using the above statement "LEAVE TO LIST-PROCESSING AND RETURN TO SCREEN 0 " to output a write statement of my report . Its working fine. But when the output is generated , System standard "BACK" , "EXIT" , "CANCEL" buttons ar...
SAP Managed Tags ABAP Development Hi, I am using Leave to list processing for dynamic display of checkboxes in PBO of screen. But I am unable to execute the PAI. My requirement is that when the user selects the checkbox, the value of the checkbox ( or checkboxes) should be read and PA...
ABAP:区别CALL SCREEN/SET SCREEN/LEAVE TO SCREEN(转自流浪的星星) <!-- 正文开始 --> 1,CALL SCREEN XXXX将在Screen调用栈(CALL STACK)上面添加一层调用(进栈),调用XXXX的PBO和PAI, 如果XXXX的Next Screen不为0,那么将继续其Next Screen的PBO和PAI,如此继续~~~当最后碰到Next Screen ...
The user can exit the list processor or list display by selecting the functions Back, Exit, or Cancel in the display for list level 0, or by means of a program that uses the LEAVE LIST-PROCESSING statement. By default, the interrupted dynpro sequence resumes in both cases with the PBO ...
SAP Managed Tags ABAP Development hi to all sdn people i know the functionality of the leave list processing and leave to list processing . but tell how to use them in the screen programs ?pls give one sample screen program .Reply 4...