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: 

Input fields event

mikesenikoglou
Explorer
0 Kudos
404

Hi All,

is there an event triggered when a user inputs text in module pool programming?

The requirement is to set focus to input field B when the length of the input in field A reaches a certain limit

Thanks

2 REPLIES 2

SimoneMilesi
Active Contributor
0 Kudos
185

If you want a check live like that, i'm sorry but i'm pretty sure it's impossible.

You can look on google for "ABAP Module Pool events"

Example1

Example2

Example3 long and detailed

if you find a solution, i'll be happy to try it out 🙂

rajkumarnarasimman
Active Contributor
0 Kudos
185
"is there an event triggered when a user inputs text in module pool programming?

System won't trigger events while typing the text(Ex: AJAX concept in .NET). Once data entered in textbox, if any actions such as mouse click, or enter actions done, in such case, the PAI event will trigger, inside we can write code to trigger notification to user.

If your primary concern about the text length, hope you can reduce the size of the textbox which is enough instead of PAI logic.