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

SCREEN - INPUT = '0' i.e.Dis-abling input field in Selection screen????

Former Member
0 Likes
587

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
516

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

3 REPLIES 3
Read only

gopi_narendra
Active Contributor
0 Likes
516
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

Read only

0 Likes
516

ThanQ.

Yes, already I treid suggestion, it needs, ENTER button!

Am looking for with out ENTER button.

thanq.

Read only

Former Member
0 Likes
517

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