‎2009 Mar 04 3:48 AM
WHat is meant by a conversion routine and what exactly is its purpose?
Thanks and Regards
Abhilash.
‎2009 Mar 04 3:57 AM
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
‎2009 Mar 04 3:58 AM
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.
‎2009 Mar 04 7:43 AM
‎2009 Mar 04 10:09 AM
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
‎2009 Mar 12 12:38 PM
Thanks for the reply Raghu.
The question is answered.
Regards
Abhilash.