‎2022 Jun 27 11:14 AM
Hi everyone ! hope you're fine this morning 🙂
I had this dump, can someone explain to me why this happened plz ? and wich object is concerned by the dump.

Thnx
‎2022 Jun 27 11:22 AM
This is timeout error which occurs once the set limit of program execution is exceeded. Connect with BASIS Team for the same.
‎2022 Jun 27 11:45 AM
Hi
Check your program. It is going into Endless loop Do - Enddo.
The Exit condition may not occur at your scenario.
Please review your EXIT statement to occur.
‎2022 Jun 27 3:58 PM
thank you, but what is the object is concerned by the dump ?
‎2022 Jun 27 4:31 PM
‎2022 Jun 27 4:34 PM
The object is your Zprogram - that gone into the loop and did not come out
that causes the timeout error.
There is a Do - Enddo loop.
Inside that your are looking for IF subrc = 0
If that is ne 0, - then there is no option to come out
Insted of do-enddo
you may have to re-arrange this loop statement
‎2022 Jun 28 1:38 PM
‎2022 Jun 28 2:13 PM
‎2022 Aug 04 9:21 AM
i have to add a stop condition ? wich one plz ?
‎2022 Aug 04 9:48 AM
sandra.rossi ELSE ?
do i just need to uncomment the last ' if ' condition ?
thnaks
‎2022 Jun 27 11:57 AM
I see one logical flaw (there maybe more): if table lt_persw is initial (sy-subrc = 4) the code goes to an infinite loop, as it reaches no 'EXIT' statement within the 'DO'-'ENDDO' iteration.
‎2022 Jun 27 4:31 PM
‎2022 Aug 04 10:04 AM
in my code, how i can stop the DO iteration please and infinite loop?