Hello,
I have a similar problem:
Inside an AMDP Method I am calling a HANA stored procedure.
This is the code:
METHOD execute_procedure BY DATABASE PROCEDURE
FOR HDB LANGUAGE SQLSCRIPT.
CALL "_SYS_BIC"."home.version08d/MyProcedure" (:it_items, et_itemschanged);
ENDMETHOD.
The syntax check keeps telling me
Message: column store error: [34011] failed to save calculation scenario : The following errors occured: Inconsistent calculation model (34011) Details (Errors): – CalculationNode (356067649) –> operation (CustomLOp): Input table 'IT_ITEMS' has wrong type for column 'E_DATE': expected '(Null)String' from the model, but was 'Date' in the signature of the main function.
This reads like the date column is mistyped. I tried with CHAR10 which is supposed to be a valid equivalent ABAP type for the HANA type LocalDate.
Did you come to a solution (even though the question is not answered)?