‎2020 Oct 01 8:26 AM
Hello everyone, we need help to solve this error.
We have one custom program (ZZMM02_ZZMO841) which runs and create files on server.We have made another custom program(ZZMM02_ZZMO841_IFRUN) which fetches entries from one table and then for every entry it triggers report
ZZMM02_ZZMO841.So if pre-program select the 1000 entries then report ZZMM02_ZZMO841 will run 1000 times.Here, everything work well unless and until total runs are less than 1000. For example, report ZZMM02_ZZMO841 runs successfully for 999 times but it gives ABAP dump for 1000th run.Here is details about dump :
-------------------------------------------------------------------------------------------------------------------------------
Category Internal Kernel Error
Runtime Errors EXTRACT_RESOURCEHANDLER_FAILED
Application Component BC-ABA-LA
Date and Time 01.10.2020 06:46:18
-------------------------------------------------------------------------------------------------------------------------------
Short text
Internal error: Error when logging on to delete the extract file.
-------------------------------------------------------------------------------------------------------------------------------
What happened?
Error in the SAP kernel.
The current ABAP "ZZMM02_ZZMO841" program had to be terminated because the
ABAP processor detected an internal system error.
-------------------------------------------------------------------------------------------------------------------------------
Source code extract
186 DESCRIBE TABLE ET_SOAP LINES TL.
187 PERFORM WRITE_SELECTION_LOG USING 0004 'ET_SOAP' TL.
188
189LOOP AT ET_SOAP.
190
>>>PERFORM EXTRACT_DATA.
192ENDLOOP.
193
194ENDFORM.