Hi all,
My program is giving a performance issue. There is a fn module in the program SAP_CONVERT_TO_TEX_FORMAT which converts the data into text format. when i did runtime analysis this fn module is taking max. time to execute.
Is there any alternate method for conversion.
if not gt_output[] is initial.
call function 'SAP_CONVERT_TO_TEX_FORMAT'
exporting
i_field_seperator = '$'
tables
i_tab_sap_data = gt_output
changing
i_tab_converted_data = gv_text
exceptions
conversion_failed = 1
others = 2.
endif.
Help me in resolving this issue.