I get that message (Internal Error number 25 in script.) when I am consulting many registries into the same section Type Daily.
What can I do?
Thanks
Best Regards.
*This post is locked for comments
Hi Manuel,
Can you share a screenshot with the full error?
Hi André.
Sure, here the screenshot:
Best Regards
I have seen it before but it as a long time ago. Try to delete the usage data and/or synchronize the database. If one user has the error while others with same permissions can continue without error, likely it is caused by usage data.
I have found this:
www.artofliving.org/mx-es/search/course#ctype=ctype=12410&paddr=0
But it is for AX4.0
Randomly I saw it in version 2.5 and found the reason:
It was a SWITCH statement, where the CASE branch resukted in a RETURN statement - without the following BREAK command
| switch { <condition> }
| {
| case: <value>: ... return ...;
| case: <anotherValue>: ...
| }
Changing this to
| boolean ret;
| ;
|
| switch ( <condition> )
| case <value>: ... ret = ...;
break;
| ...
| return ret;
solved the problem.
Best regards,
T.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
As AI tools become more common, we’re introducing a Responsible AI Use…
We are honored to recognize Abhilash Warrier as our Community Spotlight honoree for…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Martin Tocauer 4
Community Member 2
Nayyar Siddiqi 2