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
Hope this helps.
PS: This has already been discussed elsewhere..Please do a basic search before posting..
BR
Prabhith