Skip to Content
0
Former Member
Feb 28, 2006 at 08:26 AM

Version 4.7 (Selection screen)

24 Views

Dear all,

Please help me out in solving the below problem.

I am working on 4.7 version...and below is the code of a simple report fpr testing. On the selection screen there is one select option which can be displayed or supressed dynamically. For this I am using 'Modif ID xxx'. But the problem here is...when ever 'Loop at SCREEN - ENDLOOP' uesd to set the screen atrributes, on selection screen, a small box appearing before LOW input box of the select option(As you know there are only two input boxes(LOW, HIGH) for any select-option).

For eg. try this below program in Version 4.7

Please note that...the below program is just to let you know how the selection screen appearing now.

As it is a must to set the below entries for my requirement..I cannot avoid any of them.

screen-active.

screen-input .

screen-output.

screen-invisible.

-


REPORT sample.

tables:mara.

select-options:s_mat1 for mara-matnr modif id GR1.

initialization.

LOOP at screen.

if screen-group1 = 'GR1'.

screen-active = '0'.

screen-input = '0'.

screen-output = '0'.

screen-invisible = '1'.

MODIFY SCREEN.

endloop.

start-of-selection.

write :/' Test program'.

-


Thanks in advance.