Hi CDATA Team,
There are many tables, views, and other database objects in the SAP application database. I wanted to check if the CDATA JDBC Driver aids in obtaining the filtered list based on SAP modules or an archive object, as it is quite difficult to identify tables based on any standard SAP module or standard archive object.
I therefore want to retrieve the list of all tables and views that are utilized in, say, the FI module or FI_Documents, as part of my requirement. Is it possible to retrieve the table and view names from SAP HANA DB using the CDATA JDBC Driver based on SAP modules?
Example:
If you're querying an SAP table, you could specify a filter such as:
SELECT * FROM "SAP_Material" WHERE "Module" = 'MM'
Or, for archived objects, the query might look something like:
SELECT * FROM "SAP_Archive" WHERE "ArchiveObject" = 'SomeArchiveObject'
Thanks