2007 Aug 03 9:58 AM
I modified screen using screen-input = 0.
then how to set the screen-input = 1.
that is how to make that field input enable.
if use the statement screen-input = 1 directly it is giving 2 fields to enter value
2007 Aug 03 10:01 AM
Hi ,
you can do it as
loop at screen.
if screen-name = 'SO_UNAME'.
screen-input = 0.
modify screen.
endif.
endloop.
if it helps REWARD...
rgds
harris
2007 Aug 03 10:01 AM
Hi ,
you can do it as
loop at screen.
if screen-name = 'SO_UNAME'.
screen-input = 0.
modify screen.
endif.
endloop.
if it helps REWARD...
rgds
harris
2007 Aug 03 10:04 AM
Hi,
Write the follwing code at
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF SCREEN-NAME = 'FIELD_NAME'.
SCREEN-INPUT = 1. " For input enable
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Regards,
Ses
2007 Aug 03 10:11 AM
In the PBO / AT SELECTION-SCREEN OUPUT
AT SELECTION-SCREEN OUTPUT.
LOOP AT SCREEN.
IF screen-name = <your FIELD>. " Fields by name
* IF SCREEN-GROUP1 = <your group of fields>. " Fields with MODIF ID
IF <test>.
screen-input = 1. " For input enable
ELSE.
screen-input = 0. " For input disable
ENDIF.
MODIFY SCREEN.
ENDIF.
ENDLOOP.
Regards