is there any possibility to use something like SELECT * FROM xy WHERE xy.field in :array; in SQL SCRIPT? Im using Abap Managed Datebase Procedures
DECLARE arr NVARCHAR(5) ARRAY;
IF i_where = ''
THEN arr = ARRAY ('A1', 'A2', 'A3', 'A4', 'A5', 'A6', 'A7' );
ELSE arr = ARRAY ( i_where );
END IF;
e_result = SELECT DISTINCT
...
WHERE sales.hierarchy in :arr
Thanks!
Not directly, but you can use UNNEST to make a table out of it like so: