cancel
Showing results for 
Search instead for 
Did you mean: 

Unable to debug Table function in SAP HANA

mdruhul_amin
Explorer
0 Kudos

Hello Experts.

Is it possible to debugg table function in SAP Hana??

I have created .hdbtablefunction in sap hana but unable to debugg the same and also gone through various blogs but not able to find any better option.

Alternatively I have copied the codes to a procedure in SAP HANA and could debug it easily but its not a right way to debugg table function.

your kind help will highly appreciated.

Regards,

Ruhul

Accepted Solutions (0)

Answers (1)

Answers (1)

SergioG_TX
Active Contributor
0 Kudos

1) one way is already how you did it... by copying it to the stored proc...

2) alternatively, you can put your code into an anonymous block and copy the code from your table function into the sql console

do

begin

-- your code here

end;

I do not recall if you can debug the hdbtable object itself .. but there are 2 alternatives listed above

mdruhul_amin
Explorer
0 Kudos

Hello Sergio,

I am agree with your point listed above but looking for some standard approach which SAP has provided.

It will be great if you have some other insight on it.

Regards,

Ruhul