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

Conversion routine

Former Member
0 Likes
1,199

WHat is meant by a conversion routine and what exactly is its purpose?

Thanks and Regards

Abhilash.

5 REPLIES 5
Read only

former_member632729
Contributor
0 Likes
759

Hi,

Conversion routines are used to convert the fields either from display format to SAP internal format or from SAP internal format to display format.

For this the following routines are used.

Conversion_exit_xxxxx_input - display format to SAP internal format.

Conversion_exit_xxxxx_output - SAP internal format to display format.

we have to create the conversion routines while creating domains.

For more info go through this link

http://help.sap.com/saphelp_nw70/helpdata/en/cf/21ee19446011d189700000e8322d00/content.htm

Read only

gaursri
Active Contributor
0 Likes
759

Hi Abhilash,

Conversion routines are used so that the characteristic values (key) of an Field,Object etc can be displayed or used in a different format to how they are stored in the database. They can also be stored in the database in a different format to how they are in their original form, and supposedly different values can be consolidated into one.Conversion routines that are often implemented in SAP BW are now described.A conversion occurs according to the data type of the field when changing the content of a field from the display format into the SAP-internal format and vice versa, as well as for output using the ABAP WRITE instruction.you can read more in SAP library.

Hoping your query is resolved.

Have a best day ahead.

Read only

Former Member
0 Likes
759

Hi Abhilash

SEARCH IN SCN BEFORE POSTING

Remember in future.

meanwhile check this thread similar to yours

S@chin

Read only

Former Member
0 Likes
759

Hi Dude,

Conversion routine is used convert the fields from display format to SAP internal format and vise versa and maintains at Domain level

for Example in MARA table field MEINS(Units of Measurement of Various Types) having the conversion routine CUNIT when you double click over there lead to pop screen showing that the function modules

Internally system will have some value, after calling the relative Function module it will give another value

CONVERSION_EXIT_CUNIT_INPUT

CONVERSION_EXIT_CUNIT_OUTPUT

Thanks & Regards

Ramakrishna Pathi

Read only

Former Member
0 Likes
759

Thanks for the reply Raghu.

The question is answered.

Regards

Abhilash.