Hello everybody,
Well, I have a calculation View in SAP HANA, which contains 3 input parameters.
The values passed to these input parameters have to be dinamyc, they will be <DATE - 1> and <DATE - 1095>.
I were able to execute the SQL in BODS, passing static values to these input parameters:
SELECT "MATERIAL", "CUSTOMER", "CALDAY", "_BIC_CA_DTCOL", "_BIC_CA_TPLOJA",
"_BIC_KF_VOLVAR", "_BIC_KF_RECVAR"
FROM "<tablename>"
('PLACEHOLDER' = ('$$HISTORICO$$', '20120821'),
'PLACEHOLDER' = ('$$ONTEM$$', '20150820'),
'PLACEHOLDER' = ('$$DATACOLAB$$', '20150820'))
But I am not being able to pass a dinamyc function, for example, instead of a static value. I have tried to pass function sysdate(), but no success..
Thank you in advance for your help.
Cristina.