Our previous consultant in our company use the following call function in the code to convert a flat file into another flat file for BW to read and the call function code is like:
CALL FUNCTION 'UNIT_OF_MEASURE_ISO_TO_SAP'
EXPORTING
ISO_CODE = Input_field(3)
IMPORTING
SAP_CODE = output_variable
UNIQUE =
EXCEPTIONS
NOT_FOUND = 1
OTHERS = 2
Could we know why this function has to be used? Does that mean that some unit from outside world cann't be accepted by SAP BW?
Thanks