Hi all,
I am uploading an excel file. Using TEXT_CONVERT_XLS_TO_SAP.
But I am getting runtime error " Type conflict when calling a function module.".
call function 'TEXT_CONVERT_XLS_TO_SAP'
exporting
i_field_seperator = 'X'
* I_LINE_HEADER =
i_tab_raw_data = it_type
i_filename = input
tables
i_tab_converted_data = it_pa30
exceptions
conversion_failed = 1
others = 2
.
if sy-subrc <> 0.
* Implement suitable error handling here
endif.