Alex Ker
Alex Ker

Reputation: 1

Hana SQL SAP DSP , can't use standard functions

I am about to use standard functions and libraries of HANA Cloud SQL in the table function of SAP DSP. Looks like that none of these functions can be used.

For example, I would like to use the following function and DSP generates an error message:

DO
BEGIN

    USING SQLSCRIPT_STRING AS LIBRARY;
    
    DECLARE TEST_OUTPUT TABLE(RESULT NVARCHAR(5000));
    
    DECLARE TEST_STRING VARCHAR(50) := 'A,B,C,D,E,F,G,H';

    TEST_OUTPUT = LIBRARY:SPLIT_TO_TABLE(:TEST_STRING,',');
    
    SELECT * FROM :TEST_OUTPUT;

END

Is there a restriction for any HANA Cloud SQL standard functions in DSP?

Upvotes: 0

Views: 60

Answers (0)

Related Questions