How to assign a boolean variable?
I can declare a variable as boolean. But neither can I assign 0 nor false to the variable :o
I can active the procedure but the get error:
SAP DBTech JDBC: [7]: feature not supported: not supported constant type
Example:
Proceedure .... out isNumeric boolean) ... isNumeric := false;
SQLScript logic blocks do not support BOOLEAN and IN/OUTPUT parameter types (check the documentation).
You already have an active moderator alert for this content.
Hmm... interestingly I got a more explicit error message indicating that boolean is not supported. What revision are you using here?
instead, please use int and assign 1/0
Add comment