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

Modify selection screen for Logical Database 'SDF'

Former Member
0 Likes
973

Hi

I need to make a section of the standard selection screen for logical database 'SDF' invisible. I have tried the differet selection screen options of the report attributes, but none of the provided ones give me what I want.

How can I find the name of the screen group for the "Line Item Selection" block of the selection screen so that I can make it invisible when the selection screen is displayed?

Thanks,

Thomas

1 ACCEPTED SOLUTION
Read only

naimesh_patel
Active Contributor
0 Likes
780

Hello,

Just put one loop at screen in the at selection-screen output.

and put the breakpoint at

loop at screen.

Do debug, and take the requried group of the field.

Regards,

Naimesh

5 REPLIES 5
Read only

Former Member
0 Likes
780

check

screen.

NAME C 132 SD_STIDA

GROUP1 C 3

GROUP2 C 3 DBS

GROUP3 C 3 PAR

GROUP4 C 3 025.

Regards

prabhu

Read only

naimesh_patel
Active Contributor
0 Likes
781

Hello,

Just put one loop at screen in the at selection-screen output.

and put the breakpoint at

loop at screen.

Do debug, and take the requried group of the field.

Regards,

Naimesh

Read only

0 Likes
780

I tried to do this:

Loop at screen.

if screen-group4 = '026'

or screen-group4 = '027'

or screen-group4 = '028'.

screen-invisible = 1.

modify screen.

endif.

endloop.

This removed the selection text for these fields, but the Line Item Selection block is still visible, and the actual input fields are also visible. They now look like password input fields with all ***** in them.

What am I doing wrong?

Thanks for your help!

Thomas

Read only

0 Likes
780

Hello,

Insetad of this

screen-invisible = 1.

Put

Screen-active = 0.

regards,

Naimesh

Read only

0 Likes
780

Ok, that worked!

Thanks to all of you!