Hi All,
I have created AMDP procedure and trying to consume in AMDP class which is implementing the required AMDP interface and everything is working fine, but in my procedure i am trying to use one table name (which has special character '/' in it) which is giving an error.
Please find my procedure as follows:
METHOD my_hana_procedure by database procedure
for hdb
language sqlscript
options read-only.
using /CPD/D_PFP_TEST.
table = select * from /CPD/D_PFP_TEST; /*------ Here i will get an error saying SQL SCRIPT : &a0&a1&a3&a4.......&a9 */
ENDMETHOD.
Note: The above mentioned table /CPD/D_PFP_TEST is in system SID schema.
FYI, If i am using any table which do not contains special character '/' in it will work without any error.
Did anyone faced the same issue?, at least here error information should be meaning full we can correct our errors inside AMDP procedures.
Thanks in advance,
Avinash