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

reg conversion exit

Former Member
0 Likes
571

where to find, that a field has got conversion_exit in its domain level in ztable as well as standard table.

1 ACCEPTED SOLUTION
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
543

From a table, in SE11, double click on the data element name, then drill into the domain which is attached to the data element, now on the definition tab, you will see a field called "conversion routine", this is the name. You can take this name and plug it into the naming format of ...

CONVERSION_EXIT_<name>_INPUT

CONVERSION_EXIT_<name>_OUTPUT

So for example, if the conversino reoutine is CUNIT, then these function modules can be used to do the conversion in your ABAP programs.

CONVERSION_EXIT_CUNIT_INPUT

CONVERSION_EXIT_CUNIT_OUTPUT

REgards,

Rich Heilman

3 REPLIES 3
Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
544

From a table, in SE11, double click on the data element name, then drill into the domain which is attached to the data element, now on the definition tab, you will see a field called "conversion routine", this is the name. You can take this name and plug it into the naming format of ...

CONVERSION_EXIT_<name>_INPUT

CONVERSION_EXIT_<name>_OUTPUT

So for example, if the conversino reoutine is CUNIT, then these function modules can be used to do the conversion in your ABAP programs.

CONVERSION_EXIT_CUNIT_INPUT

CONVERSION_EXIT_CUNIT_OUTPUT

REgards,

Rich Heilman

Read only

Former Member
0 Likes
543

in domain Screen---> see Second Tab( Definition) Conver.routine = ?

Regards

Peram

Read only

RaymondGiuseppi
Active Contributor
0 Likes
543

In SE11 double-click on data element and then on domain name.

In dictionary database :

table+name=>data-element in table DD03L for database table

data-element=>domain in table DD04L

domain are in table DD01L (field CONVEXIT)

Regards