Hello.
Is there any way to catch a stored procedure error when retrievign a datawindow?. I get the error 999 Select error: Requested result set number 1 not found, so I need to catch the return number that I specifed in the definition of the SP. Edit: The DBError only catches Raiserror from SP (ASE Sybase) not the Return number.
Thx.
Oh Okay: SAP sybase ASE, in that case you could return a SELECT "myerrormessage" from DUMMY;
the amount of columns and type in that Select have to coincide with the columns you would normally return when there's no error.
Thank u!
yw.