Characteristic value 'UD' of characteristic SMAT_UNI5 is not CUNIT-converted There is conversion routine CUNIT on SMAT_UNI5 i suppose that the reason is in functions CONVERSION_EXIT_CUNIT_OUTPUT CONVERSION_EXIT
SAP Managed Tags: ABAP Development I have a piece of code which is called from a sap script. The code is calling fm CONVERSION_EXIT_CUNIT_OUTPUT to convert the Unit in the language in which the form has been trigerred. CALL FUNCTION 'CONVERSION_EXIT_CUNIT_OUTPUT' EXPORTING input = fwa...
SAP Managed Tags: ABAP Development Hi, Have few doubts in these routines. CONVERSION_EXIT_ABPSN_INPUT CONVERSION_EXIT_ABPSN_OUTPUT CONVERSION_EXIT_ABPSP_OUTPUT CONVERSION_EXIT_ABPSP_INPUT CONVERSION_EXIT_CUNIT_INPUT "Conversion exit for commercial (3-char) measurement unit INPUT CONVERSION_EXIT...
CALL FUNCTION 'CONVERSION_EXIT_CUNIT_INPUT' EXPORTING input = WA_SPREADSHEET-MEINS MPORTING OUTPUT = WA_FINAL-MEINS. Goto SE37 and give this function module and press display, then see the Input and Output strucutres, you need to give the same data type Regards Sudheer Reply Former Member...
I understand we have a function module conversion_exit_cunit_input which is specifically used to convert external to internal formats, however, this function module doesn't yield anything when the input is GLL. On the contrary I tried the FM conversion_exit_...
CALL FUNCTION 'CONVERSION_EXIT_CUNIT_OUTPUT' EXPORTING input = lw_blitems-vrkme language = sy-langu IMPORTING * LONG_TEXT = output = lw_blitems-vrkme * SHORT_TEXT = * EXCEPTIONS * UNIT_NOT_FOUND = 1 * OTHERS = 2 . IF sy-subrc <> 0. * MESSAGE ID SY-MSGID TYPE SY-MSGTY ...
I have been looking at FM CONVERSION_EXIT_CUNIT_INPUT but it returns LBS if I input LBS. Any suggestions? Reply Former Member In response to Former Member 2007 Jul 03 8:03 AM 0 Kudos 345 SAP Managed Tags: ABAP Development When I run CONVERSION_FACTOR_GET in SE37 I get ...
CALL FUNCTION 'CONVERSION_EXIT_CUNIT_INPUT' EXPORTING input = uom LANGUAGE = SY-LANGU IMPORTING OUTPUT = uom_result * EXCEPTIONS * UNIT_NOT_FOUND = 1 * OTHERS = 2 . IF sy-subrc = 0. move uom_result to BAPI structure MARM. ENDIF. Hope this helps. Ernesto Reply abdulgaffarmohd Part...