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: 

Doubleclick changes fields ACTIVE and INVISIBLE of system table SCREEN

hubert_heitzer
Contributor
0 Kudos

Hi all,

I created a DYNPRO with many TEXT INPUT FIELDS. Some of them may be deactivated during PBO. When the dynpro is shown first time everything is ok. But after doubleclicking one of the activated text input fields the dactivated text input fields are activated and shown on the dynpro.

-> Why does this happen? Any suggestions what went wrong?

I debugged the process after doubleclicking an activated text input field
1. my PAI module is called -> SCREEN values are ok
2. system PAI module %_CTL_END is called -> SCREEN values are ok

3. system PBO %_CTL_INIT1 is called -> SCREEN values are reseted

4. my PBO module, which changes SCREEN to the desired values is not called again!

Regards, Hubert

1 ACCEPTED SOLUTION

horst_keller
Product and Topic Expert
Product and Topic Expert

Must have something to do with your GUI Status. Do you have a function code assigned to double click (F2)?

See example where it works (PBO is processed again).

2 REPLIES 2

horst_keller
Product and Topic Expert
Product and Topic Expert

Must have something to do with your GUI Status. Do you have a function code assigned to double click (F2)?

See example where it works (PBO is processed again).

hubert_heitzer
Contributor
0 Kudos

Thanks Horst,

thats is! Actual i do not want to handle doubleclicks with my dynpro, but I declared function code F2 in my status.

After deleting this everything works fine.

Hubert