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 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...
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_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...
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 256...
SAP Managed Tags: ABAP Development Hi Ozkar, I tried the function 'CONVERSION_EXIT_CUNIT_OUTPUT', it worked fine when displaying the UoM in the ALV, meaning it displayed CAR instead of KAR, but when I printed the list or chicked the print preview, it displayed stars (***) in the ...