‎2007 Jun 18 4:15 AM
Hi Experts,
I hv a selection screen with,
1)SELECT-OPTIONS: input_fld_1 with domain value range of A, B, C, D, E, F
2)input_fld_2
3)PARAMETERS: input_fld_3 has the LIST BOX
So, my requirement is,
If the user selects/enters A, B, C, D in input_fld_1, the next moment/second (here, prog. shuld not ask the user to press any ENTER/button)
the input_fld_3 shuld b automatically dis-abled/un-able to input!
(I tried with MOD ID GRP1, but in this case, user has to press ENTER button, which is not suits to my requirement!)
So, Is it possible? If so How?
thanq.
Message was edited by:
Srikhar
‎2007 Jun 18 4:24 AM
hi Srikhar,
It is not possible to have your requirement.
As the AT SELECTION SCREEN OUTPUT will be triggered only when you press the ENTER key.
You need to ask user to press the enter key or you need to have USER COMMAND to the selection screen parameter, which I think is not available with select-options.
Reward points if useful.
Regards,
Atish
‎2007 Jun 18 4:19 AM
at selection-screen output.
if not input_fld_1-low is initial or not input_fld_1-high is initial.
loop at screen.
if screen-name = 'input_fld_3'.
screen-input = 0.
modify screen.
endif.
endloop.
endif.Regards
Gopi
‎2007 Jun 18 3:03 PM
ThanQ.
Yes, already I treid suggestion, it needs, ENTER button!
Am looking for with out ENTER button.
thanq.
‎2007 Jun 18 4:24 AM
hi Srikhar,
It is not possible to have your requirement.
As the AT SELECTION SCREEN OUTPUT will be triggered only when you press the ENTER key.
You need to ask user to press the enter key or you need to have USER COMMAND to the selection screen parameter, which I think is not available with select-options.
Reward points if useful.
Regards,
Atish