cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

Hi experts,

During upload master data i got error message below

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
              LANGUAGE = EN
       EXPORTING
              LONG_TEXT
              OUTPUT      = 085

             SHORT_TEXT
       EXCEPTIONS
              UNIT_NOT_FOUND

   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 conversion ? ( maybe transaction CUNI )

Thanks in advance

Martin

0 Likes
View Entire Topic
jino_jose
Active Participant
0 Likes

Hi,

The function module select the value from table T006A  which holds the value maintined by the transaction CUNI.

Thanks,

Jino.

Former Member
0 Likes

for CONVERSION_EXIT_CUNIT_OUTPUT is used table T006A

  UD - > 085

for CONVERSION_EXIT_CUNIT_INPUT is used table T006B

  085 - > MPT

i need to have a conversion 085 - > UD in table T006B ( How do it ? )