Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

BLANK Selection-screen possible?

Former Member
0 Likes
969

Hi

Can we have a blank Selection-Screen for a report?

If yes, please tell me how?

Thanks

3 REPLIES 3
Read only

Former Member
0 Likes
654

Hi Subhash,

when you have no selection screen, if u run the program it will give u direct report output.

-Anu

Read only

Former Member
0 Likes
654

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.

Read only

Former Member
0 Likes
654

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