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

match code custom in dympro

Former Member
0 Likes
2,589

Good morning,

i have to develop a matchcode custom in a dynpro of a module pool, because i have some custom data fields in different format (YYMM) (DDMMYY) and i haven't declared the fields DATS but CHAR.

I wanto to call the function F4_DATE on matchcode input and transalte via ABAP the correct format.

How i set the match-code in a field of a dynpro? I tryed with "FIELD ZTBMODOMO-ZDTRICHIESTA MODULE DTRICHIESTA_0200 ON REQUEST." but it doesn't work for my proposal.

thanks a lot.

Marco

4 REPLIES 4
Read only

Former Member
0 Likes
1,487
Read only

Former Member
Read only

Former Member
0 Likes
1,487

ok thanks, but i have to create a custom help.

I using standard dynpro, no web dynpro.

I mean if there is an istruction like "AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_fname." that is using for report programming, also in module pool programming.

thanks

Read only

Former Member
1,487

thanks i resolved myself with the code:

PROCESS ON VALUE-REQUEST.

 FIELD ZTBMODOMO-ZDTRICHIESTA MODULE DTRICHIESTA_0200.

this is called when i pressed f4.

bye