Found 694 Articles for SAP HANA

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

507 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

566 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

793 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"

Checking object dependency in SAP HANA system

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

1K+ Views

In SAP HANA system, you have one view available in SAP System schema named called as “OBJECT_DEPENDENCIES” and it can be used to get the information of SAP Tables.To see details in this view, run this query: select * from "SYS"."OBJECT_DEPENDENCIES";This will display all the details of SAP HANA system.

View to find object dependency in SAP HANA

SAP ABAP Expert
Updated on 13-Mar-2020 07:42:30

260 Views

In SAP HANA system, you have one view available in SAP System schema named called as “OBJECT_DEPENDENCIES”

Using Package specific default schema in SAP HANA

SAP ABAP Expert
Updated on 13-Mar-2020 07:45:39

404 Views

 In SAP HANA, you can define package specific default schema as an authoring schema in your schema mapping definition and maintain it in the table M_PACKAGE_DEFAULT_SCHEMA.To perform this, navigate to SAP HANA Modeler perspective →; Maintain Package Specific Default SchemaSelect HANA system and it will show you schema names mapping as per package.  You can maintain a default schema for each package. You can also add packages by clicking on Add button.

Setting schema mapping in SAP HANA

SAP ABAP Expert
Updated on 13-Mar-2020 07:44:32

944 Views

Schema mapping in SAP HANA is used to move objects from one system to other system i.e. from Development system to Test or Test system to production system.To open schema mapping, navigate to SAP HANA Modeler → Schema Mapping → Select system you want to perform operationIn next window, you have to perform schema mapping between Authoring schema and physical schema.

Advertisements