Quantcast
Channel: SCN: Message List
Viewing all articles
Browse latest Browse all 9146

Re: How to identify Involved tables within a HANA view

$
0
0

Hello Amrith,

 

As you rightly told, SQL would be a good option. Try querying on SYS.object_dependencies.

 

Please try the code below:(this is what we normally do...)


Select distinct BASE_OBJECT_NAME from SYS.object_dependencies

where (DEPENDENT_OBJECT_NAME LIKE 'sap.hba.ecc/BOMHeader/BillOfMaterial/hier/BillOfMaterial')

and BASE_OBJECT_TYPE = 'TABLE'

and DEPENDENT_OBJECT_TYPE = 'VIEW'

order by BASE_OBJECT_NAME ASC

 

Please note that here am using the view --> sap.hba.ecc/BOMHeader/BillOfMaterial/hier/BillOfMaterial

Dependent Tables.JPG

 

Hope this helps.

 

PS: This has already been discussed elsewhere..Please do a basic search before posting..

 

 

BR

Prabhith


Viewing all articles
Browse latest Browse all 9146

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>