‎2008 Feb 16 7:21 AM
hi,
i have created two pushbuttons namely view and exit.
while i am press the view button it display the records of internal table. by using these statements
AT SELECTION-SCREEN.
CASE SYST-UCOMM.
WHEN 'VIEW'.
LEAVE TO LIST-PROCESSING.
SELECT * FROM YSUSTAB1 INTO TABLE IT1.
LOOP AT IT1 INTO YSUSTAB1.
WRITE:/ YSUSTAB1-NAME, YSUSTAB1-ROLLNO.
ENDLOOP.
WHEN 'EXIT'.
LEAVE TO SCREEN 0.
ENDCASE.
after i saw the records of the internal table. i have to return back to previous screen. how it is possible. i dont know.
please resolve my probs.
regards
surender
‎2008 Feb 16 7:25 AM