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: 

selection screen processing

Former Member
0 Kudos
75

Hello,

I want to update a selection screen field according to the values of two others. The two other field values wait for pressing Enter before passing their values. But I want to get the values of these fields when the focus is changed to the third field which I want to update. Which processing block should I use?

Thx,

Ali

1 ACCEPTED SOLUTION

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos
59

If you mean, change the third field value when you simply put your cursor in the field, then that sort of funcitonality is not supported. You have to trigger an event. So that means that you either have to hit enter.

Regards

RIch Heilman

4 REPLIES 4

Former Member
0 Kudos
59

write the code as follows..

initialization.

ur code......

at selection-screen output.

loop at screen.

check ur condition.

modify screen.

endloop.

reward points please..

0 Kudos
59

Hi,

Thx for ur quick reply. Unfortunately I still can't see the values entered in these fields. I debugged the program after inserting "loop at screen" and the relevant fields are still empty altough I enter values. It still waits Enter to be pressed in order to pass the values.

Regards,

Ali.

RichHeilman
Developer Advocate
Developer Advocate
0 Kudos
60

If you mean, change the third field value when you simply put your cursor in the field, then that sort of funcitonality is not supported. You have to trigger an event. So that means that you either have to hit enter.

Regards

RIch Heilman

0 Kudos
59

Hi Rich,

Thx for the answer.

Regards,

Ali