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 valid input after changed selecting from search help?

Former Member
0 Likes
674

Hi

I have a

PARAMETERS: p_ABKRS TYPE PA0001-ABKRS OBLIGATORY.


Value to parameter p_ABKRS I can set by write or select from search help (F4).


When I set value p_ABKRS by write, I can catch event AT SELECTION-SCREEN OUTPUT.


But how can I catch event when changing value using search help (F4)?

I need catch both event changing by write and search help.


Thank you

1 ACCEPTED SOLUTION
Read only

RaymondGiuseppi
Active Contributor
0 Likes
640

Using AT SELECTION-SCREEN ON VALUE-REQUEST, there call FM F4IF_FIELD_VALUE_REQUEST to execute standard search help (pass table/fiedl)


Hint: There you can also update another field (a text field) with DYNP_VALUES_UPDATE


Regards,

Raymond

Hi

I have a

PARAMETERS: p_ABKRS TYPE PA0001-ABKRS OBLIGATORY.


Value to parameter p_ABKRS I can set by write or select from search help (F4).


When I set value p_ABKRS by write, I can catch event AT SELECTION-SCREEN OUTPUT.


But how can I catch event when changing value using search help (F4)?

I need catch both event changing by write and search help.


Thank you

2 REPLIES 2
Read only

RaymondGiuseppi
Active Contributor
0 Likes
641

Using AT SELECTION-SCREEN ON VALUE-REQUEST, there call FM F4IF_FIELD_VALUE_REQUEST to execute standard search help (pass table/fiedl)


Hint: There you can also update another field (a text field) with DYNP_VALUES_UPDATE


Regards,

Raymond

Read only

0 Likes
640

Hi

Thank you. I use F4IF_GET_SHLP_DESCR.

I thing that this options is possible only by AT SELECTION-SCREEN OUTPUT.

That I must used more events.


Thank you