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

Hide the Selection-Screen fields

Former Member
0 Likes
467

Hello, how can i hide a Logic Database's Selection-Screen?

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
404

In the event AT SELECTION SCREEN OUTPUT you can do a LOOP AT SCREEN and turn off the ACTIVE indicator. Use the debugger to determine what the name of the field is that you want to hide.

So something like

LOOP AT SCREEN.
  IF SCREEN-FIELDNAME = 'the name'.
    SCREEN-ACTIVE = '0'.
    MODIFY SCREEN.
ENDLOOP.

2 REPLIES 2
Read only

Former Member
0 Likes
405

In the event AT SELECTION SCREEN OUTPUT you can do a LOOP AT SCREEN and turn off the ACTIVE indicator. Use the debugger to determine what the name of the field is that you want to hide.

So something like

LOOP AT SCREEN.
  IF SCREEN-FIELDNAME = 'the name'.
    SCREEN-ACTIVE = '0'.
    MODIFY SCREEN.
ENDLOOP.

Read only

0 Likes
404

Hi,

You can also do it by using a variant in the selection screen.Save the select scrren options as a varaint and there you can hide a field.Please tell for what purpose you want to do it.At selection-screen output is also used but it is without varaints..