The typical naming convention of a conversion routine is “CONVERSION_EXIT_” followed by the conversion exit name, followed by a final piece to explain the purpose of the function.
For example, CONVERSION_EXIT_CUNIT_OUTPUT is the conversion exit used to convert an internal unit of measure to the commercial unit for user display, while CONVERSION_EXIT_CUNIT_INPUT is the conversion exit used to convert a commercial unit entered by the user to the SAP internal unit of measure when used for storage. As a rule of thumb, OUTPUT is used data is written to a screen, document, etc. While INPUT is used when using that data as input for interacting with SAP table data.
When using the conversion exit for units of measure, one key piece of information is the language. When using the conversion exits, it is best to avoid constants for the language and to use the system variable SY-LANGU. This will always provide the logon language when converting units of measure.
Going back to our example, I’ve added the needed conversion routines to my code. Now, let’s run the report again: