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

when is a conversion exit triggered?

Former Member
0 Likes
1,412

Hi,

are conversion exits only triggered via GUI:s ?

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
988

Conversion exits are triggered between the ABAP and screen. Which means that when value is passed to/from the screen the conversion exit is triggered.

You can however use the associated function module for the conversion exit at anytime in your custom programs.

Regards,

Rich Heilman

4 REPLIES 4
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
989

Conversion exits are triggered between the ABAP and screen. Which means that when value is passed to/from the screen the conversion exit is triggered.

You can however use the associated function module for the conversion exit at anytime in your custom programs.

Regards,

Rich Heilman

Read only

Former Member
0 Likes
988

Hi

Conversion Exits will triggered when u r input/output to a perticular data element which is associated with domain which is attached with conv routine.

take an example

suppose

kunnr a domain whih is attached with ALPHA

if i am giving 80 to store it in database it will store 0000000080 as its length is 10 char

and while ouput it will show me 0000000080.

i think now u got

if helpful

Reward me points

Regs

Manas Ranjan Panda

Read only

Former Member
0 Likes
988

hi,

when ever there is data flows from screen to abap then if there is any conv exit and called.

and usually we use the conversion exits in our normal custom programs also to convert into internal or external format.

regards

vijay

Read only

Former Member
0 Likes
988

If a screen field refers to a domain with a conversion routine, this conversion routine is executed automatically when entries are saved in this screen field or when values are displayed in this screen field.