cancel
Showing results for 
Search instead for 
Did you mean: 

Tables involved in HANA views

Former Member
0 Kudos

Hi All,

Lets assume we have some views like cal, analytical and attribute views.

Is there a way to know what are the physical tables are involved in those views?

Is there some kind of query to know the same?

I dont want to open every view and see it what tables are involved.

Any ideas and pointers please?

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

You may also use SQL: "HANA_Objects_ObjectDependencies" (SAP Note 1969700) for that purpose.

Former Member
0 Kudos

Thanks a ton Martin.

Answers (1)

Answers (1)

former_member182302
Active Contributor
0 Kudos

You can try like below:

SELECT * FROM "SYS"."OBJECT_DEPENDENCIES"

WHERE DEPENDENT_SCHEMA_NAME = '_SYS_BIC'

AND DEPENDENT_OBJECT_NAME = <Enter View Name'>

Regards,

Krishna Tangudu

Former Member
0 Kudos

Thanks Krishna,