‎2006 Oct 25 1:56 PM
Hi
Can we have a blank Selection-Screen for a report?
If yes, please tell me how?
Thanks
‎2006 Oct 25 1:59 PM
Hi Subhash,
when you have no selection screen, if u run the program it will give u direct report output.
-Anu
‎2006 Oct 25 2:02 PM
Hi subhash,
1. yes we can have.
2. just copy paste
- it will show a blank selection screen
- on execution, it will write hello
3.
REPORT ABC.
*----
PARAMETERS : A TYPE C MODIF ID DIS.
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-GROUP1 = 'DIS'.
SCREEN-INVISIBLE = 1.
SCREEN-INPUT = 0.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
*----
START-OF-SELECTION.
WRITE 😕 'HELLO'.
regards,
amit m.
‎2006 Oct 25 3:05 PM
Hi,
use below logic
REPORT ZTEST102.
SELECT-OPTIONS S_VBELN FOR VBAK-VBELN .
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
SCREEN-ACTIVE = 0.
MODIFY SCREEN.
ENDLOOP.
Regards
amole