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

how to set selection-screen fields in input disable & enable mode

Former Member
0 Likes
356

Hi All,

Can you please help me to know, how to set selection screen fields input enabled & input disable based some validations. I tried with screen-intensified. But its not working. Please help me to achieve this.

Thanks in advance.

Regards

Rajesh

Hi All,

Can you please help me to know, how to set selection screen fields input enabled & input disable based some validations. I tried with screen-intensified. But its not working. Please help me to achieve this.

Thanks in advance.

Regards

Rajesh

1 REPLY 1
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
325

Sure, check out the sample program.



report zrich_0001 .


parameters: p_check1 type c,
            p_check2 type c.


at selection-screen output.

  loop at screen.
    if screen-name = 'P_CHECK2'.
      screen-input = '0'.
      modify screen.
    endif.
  endloop.

Regards,

RIch HEilman