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: 

Dynamic text in i/o field of dialog screen.

0 Kudos

Hello ABAPers,

How to create dynamic text of i/o field in module pool programming after selecting date from dialog screen.

My requirement is that after selecting date from dialog screen some action should happen(some event should trigger). I am able to create dynamic text for i/o field after user interaction only(after pressing push button or enter button).

But, I want to create it as soon as user selects date from dialog screen. Please help me.

6 REPLIES 6

Former Member
0 Kudos

Hi,

I think without any user-interaction the cursor can't move to PBO! check any dialog modules are available in this instance!

Check these demo programs could find any alternate

DEMO_DIALOG_MODULE

DEMO_DYNPRO_F4_HELP_MODULE  

DEMO_DYNPRO_MODULE           

Former Member
0 Kudos

Hi,

try to use an own F4 for date and do your Operation.

Here a short code:

Regards, Dieter

0 Kudos

Hello Dieter,

  I have tried your code but its not working, even after value of the date is selected it is not displayed in p_date0.

0 Kudos

Hi,

I don't think so in module pool! the cursor will stop at POV only! not moving to PBO!

0 Kudos

Hi,

try to insert P_DATE0 like P_DATE1 in table TAB_UPDATE.

Redards, Dieter

sivaganesh_krishnan
Contributor
0 Kudos

Hi,

You can use the FM 'DYNP_VALUES_UPDATE' . This Function module will help in updating the values in text i/o fields.

You have to pass the field name along with the values as import parameter to this FM.