Hi,
We are using try and catch in our program, but I'm not sure I understand how can I see the error that was caugth.
If I wouldn't write the try/catch, I would get a specified dump that explain what is exactly the issue, and in case of CX_SY_DYN_CALL_PARAM_NOT_FOUND error, it would have tell me which param is missing.
But if I use try/catch, I can't understand what is the issue during debugging.
I have the following code:
TRY.
.......
CATCH cx_root.
WRITE 'Exception during processing'.
ENDTRY.
Does someone know how can I see the long error like I see in st22? ot at least some more data other than "CX_SY_DYN_CALL_PARAM_NOT_FOUND"?
I tried to click on the variable cx_root, but it has no value..
Thanks