Found 1044 Articles for SAP

Deleting inactive objects in SAP HANA

SAP ABAP Expert
Updated on 13-Mar-2020 07:34:28

941 Views

In SAP HANA, you can delete all inactive objects in workspace. In HANA Modeler Perspective → Delete Inactive Objects..You can also revert to last active version if exists.

Using Repair dependencies option in SAP HANA

SAP ABAP Expert
Updated on 30-Jul-2019 22:30:22

155 Views

Navigate to SAP HANA Modeler Perspective -> Repair Dependencies. You need to select a repair type and folder to save repair job log -> Next

Repairing repository objects in SAP HANA

SAP ABAP Expert
Updated on 30-Jul-2019 22:30:22

213 Views

In SAP HANA Modeler perspective, you have Repair Dependencies option, which can be used to repair objects. Select packages that have the objects to be repaired. This repair operation will replace the existing objects and save the new object types within the same packages.

Multilevel object impact in SAP HANA

SAP ABAP Expert
Updated on 30-Jul-2019 22:30:22

58 Views

With use of Where-Used option, you can only check first level of object. Multi-level Object impact or impact due to the change to a table is not directly visible.

Using Where-Used option in SAP HANA Modeling

SAP ABAP Expert
Updated on 13-Mar-2020 07:35:09

170 Views

With use of Where-used functionality you can easily find this information. Right click on object name → Where-Used

Checking all the list of fields for a table in SAP HANA

SAP ABAP Expert
Updated on 13-Mar-2020 07:36:06

508 Views

You can check this detail using a SQL query in HANA. You have to pass schema name in Where condition. Try running below SQL query −SELECT "DEPENDENT_OBJECT_NAME" from "SYS"."OBJECT_DEPENDENCIES" WHERE "BASE_SCHEMA_NAME"  = 'AF_HANA' AND "BASE_OBJECT_NAME" = 'STORE' AND "DEPENDENT_OBJECT_NAME" like '%hier%';

Checking dependent object of a table in SAP HANA

SAP ABAP Expert
Updated on 13-Mar-2020 07:38:59

567 Views

This can be checked via SQL query on view in HANA system. Try run the below query −SELECT "DEPENDENT_OBJECT_NAME" from "SYS"."OBJECT_DEPENDENCIES" WHERE "BASE_SCHEMA_NAME"  = 'AF_HANA' AND "BASE_OBJECT_NAME" = 'STORE' AND "DEPENDENT_OBJECT_NAME" Not like '%hier%';

Checking tables in a schema in SAP HANA database

SAP ABAP Expert
Updated on 13-Mar-2020 07:40:03

2K+ Views

You can check this detail using a SQL query in HANA. You have to pass schema name in Where condition. Try running below SQL query and this will show you list of all tables in a schema.Select distinct BASE_OBJECT_NAME from "SYS"."OBJECT_DEPENDENCIES" where BASE_SCHEMA_NAME like 'AF_HANA';AH_HANA- Schema name

Checking list of system schema in SAP HANA

SAP ABAP Expert
Updated on 13-Mar-2020 07:40:40

491 Views

This can be checked using below SQL query and it will display all system schema in HANA system.select distinct BASE_SCHEMA_NAME from "SYS"."OBJECT_DEPENDENCIES" where BASE_SCHEMA_NAME like ‘_SYS%’;

Checking list of all available schema in SAP HANA

SAP ABAP Expert
Updated on 13-Mar-2020 07:41:18

795 Views

This can be checked using below SQL query and it will display all the available schema in HANA system.select distinct BASE_SCHEMA_NAME from "SYS"."OBJECT_DEPENDENCIES"

Advertisements