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_CUNIT_INPUT example : FUNCTION CONVERSION_EXIT_CUNIT_OUTPUT. IMPORTING INPUT = UD L...
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 Connectivity, ABAP Development Hi, You used the Function module 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 Outp...
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...
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_...
SAP Managed Tags: ABAP Development Hi, It seems like a conversion error for your UOM field. Please check the conversion exit CONVERSION_EXIT_CUNIT_INPUT CONVERSION_EXIT_CUNIT_OUTPUT Hope this helps. Reply Former Member In response to Former Member 2015 Jun 01 1:10 PM 0 Kudos 268...
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 256 SAP Managed Tags: ABAP Development When I run CONVERSION_FACTOR_GET in SE37 I get ...