Dear All,
I need to call a procedure "HANA_XS_BASE"."sap.hana.xs.selfService.user.db::USS_INI_PARAMS" in another procedure. If I look at definition of this procedure, it doesn't have any input or output parameter. But when I call it from SQL console it returns a table.
How can I call it inside another procedure and assign results to temp table. I tried following statements -
call "HANA_XS_BASE"."sap.hana.xs.selfService.user.db::USS_INI_PARAMS"(lt_data) ; -- It gives syntax error for mismatch of number of parameters
lt_data = select * from 'call "HANA_XS_BASE"."sap.hana.xs.selfService.user.db::USS_INI_PARAMS"()' ; --SYNTAX ERROR
Please guide.
Regards,
Ashwini