Hi,
I am processing a lot of files and it take some time to do it. I want to display a message when a file is processing. And one message when the process of all files is finished.
LOOP AT LT_FILES. CONCATENATE 'File processing: ' LT_FILES-NAME INTO LV_MSG MESSAGE LV_MSG TYPE 'S'. PERFORM F_PROCESS_FILE USING LT_FILES-NAME. ENDLOOP. MESSAGE 'The files are been processed' TYPE 'S'.
But it doesn't show anything while the files are been processing, just at the end the last message appears. Someone knows how can I do this? Like parallel tasks or something like threads?
Regards,
Isaac Melendez