Application Development 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: 

Modify selection screen for Logical Database 'SDF'

Former Member
0 Kudos

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

naimesh_patel
Active Contributor
0 Kudos

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

Former Member
0 Kudos

check

screen.

NAME C 132 SD_STIDA

GROUP1 C 3

GROUP2 C 3 DBS

GROUP3 C 3 PAR

GROUP4 C 3 025.

Regards

prabhu

naimesh_patel
Active Contributor
0 Kudos

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

0 Kudos

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

0 Kudos

Hello,

Insetad of this

screen-invisible = 1.

Put

Screen-active = 0.

regards,

Naimesh

0 Kudos

Ok, that worked!

Thanks to all of you!