Application Development 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: 

at selection-screen output

Former Member
0 Kudos

Hi,

When I have this at statement in program which has selection-screen defined as subscreen, it does not take effect. Only when i click on other subcreen tab, it can take effect. Whereas, this at statement is performing fine in program that has no subscreen.

What can I do.

Thanks

4 REPLIES 4

Former Member
0 Kudos

Hi,

This event is triggered at the <b>screen event PBO of a selection screen</b>.

Not on sub screen. Until or unless u click on the sub screen tab it will not work.

as u click on it , it is treated as separate screen and it works.

Reward points if helpful.

Regards,

Hemant

0 Kudos

Hi,

I need it in 1 of my subscreen selection screen.

When a particular radio button is choosen, a particular check box need to be dimmed.

Any method to do so?

Thanks

0 Kudos

Hi

do like this in at selection-screen.

if v_rad1 = 'X'. (radiobutton is selected'

Loop at screen.

if screen-name = 'CHECK1' (give the checkbox field)

screen-input = 0.

modify screen.

endif.

endloop.

Reward points if useful

Regards

Anji

0 Kudos

Hi,

As I said, in normal selection screen no issue.

Thanks