CALLFUNCTION'CONVERSION_EXIT_CUNIT_OUTPUT'EXPORTINGinput=LANGUAGE= SY-LANGUIMPORTING*LONG_TEXT =OUTPUT=*SHORT_TEXT =*EXCEPTIONS*UNIT_NOT_FOUND = 1*OTHERS = 2.IFsy-subrc <>0.*MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO*WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.ENDIF....
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
FUNCTION CONVERSION_EXIT_CUNIT_INPUT. IMPORTING INPUT = 085 LANGUAGE = EN EXPORTING OUTPUT = MPT EXCEPTIONS UNIT_NOT_FOUND UD as input parameter ( CONVERSION_EXIT_CUNIT_OUTPUT ) should be the same as MPT output parameter ( CONVERSION_EXIT_CUNIT_INPUT ) Where should i set the correct conversio...
Functionally I am not sure whats the difference between these two FMs (conversion exit cunit output vs iso_to_sap) as both seem to perform the same functions. JL23 Active Contributor 2015 Feb 14 0 Kudos it is certainly the right FM in case your se...
外部系统传入SAP的单位用的中文,需要切换为SAP内部格式的单位 调用函数:CONVERSION_EXIT_CUNIT_INPUT 1CALLFUNCTION'CONVERSION_EXIT_CUNIT_INPUT'2EXPORTING3input = ls_data-meins4language ='1'5IMPORTING6output = ls_data-meins7EXCEPTIONS8unit_not_found =19OTHERS =2....
Error in conversion exit CONVERSION_EXIT_CUNIT_INPUT Former Member on 2005 Dec 08 0 Kudos 1,605 SAP Managed Tags: BW (SAP Business Warehouse), Cloud Dear all I got the following error " Error in conversion exit CONVERSION_EXIT_CUNIT_INPUT " This is an original sample data...
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...
内部单位外部单位转换[CONVERSION_EXIT_CUNIT_OUTPUT] 1, 内部单位转到外部单位 写BDC程序时,遇到物料单位需要输入外部单位,比如是‘PC’,但是通常在程序中读到的是内部单位‘ST',这就需要进行一个内部单位和外部单位的转换,ST转换到PC。 可以通过CONVERSION_EXIT_CUNIT_OUTPUT进行转换,...
外部系统传入SAP的单位用的中文,需要切换为SAP内部格式的单位 调用函数:CONVERSION_EXIT_CUNIT_INPUT 1CALLFUNCTION'CONVERSION_EXIT_CUNIT_INPUT'2EXPORTING3input = ls_data-meins4language ='1'5IMPORTING6output = ls_data-meins7EXCEPTIONS8unit_not_found =19OTHERS =2....
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 260 SAP Managed Tags: ABAP Development Hi Gaurav, Thanks for your reply, I have used this, its working fine in DEV system bu...