I Managed to create an Exception class in Eclipse and use the constructor to accept more information.
When back in SAPGUI, it refused to let me changed the constructor.
Error 00198
The constructor of an exception class is generated when saving the class
definition. Changing or implementing the interface is not permitted.
What is going on ?
What is going on ?
The automatic generation of the constructor is suppressed by the pragma ##ADT_SUPPRESS_GENERATION
For further info you can refer to this post- .
In ABAP 740 you cannot regenerate the constructor of the exception class from Eclipse. You'll have to manually adjust it in Eclipse.
Does removing the pragma help?
Add a comment