SAP Basis Articles

Page 33 of 50

Checking list of system schema in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 1K+ 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%’;

Read More

Checking tables in a schema in SAP HANA database

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 3K+ 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

Read More

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

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 1K+ 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%';

Read More

Using Where-Used option in SAP HANA Modeling

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 389 Views

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

Read More

Deleting inactive objects in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 2K+ 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.

Read More

Adding rows in an internal table with header line in SAP ABAP

karthikeya Boyini
karthikeya Boyini
Updated on 13-Mar-2020 2K+ Views

Note that you shouldn’t use headers with internal tables. As you are using it, and header of in_table2 is empty. Use the loop to print it as below −LOOP AT in_table2.   "here in_table2 means table (an internal table)   WRITE / in_table2. "here in_table2 means the header of the table (a structure) ENDLOOP.When you have headers with internal tables, you shouldn’t use it in the same way. You should use field symbols for looping and append like this −FIELD-SYMBOLS: LIKE LINE OF in_table2[]. LOOP AT in_table2[] ASSIGNING .   WRITE / . ENDLOOP.

Read More

Checking transaction list waiting for lock-in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 13-Mar-2020 1K+ Views

M_BLOCKED_TRANSACTIONS System View is used to provide a transaction list waiting for locks.You can run the following SQL query in the editor −SELECT * FROM M_BLOCKED_TRANSACTIONS;Details available under M_BLOCKED_TRANSACTIONS System View in SAP HANA

Read More

Activating an Attribute view in SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 12-Mar-2020 300 Views

This can be checked by looking at view name in a package. If there is a Grey diamond mark on the name it means View is not activated.

Read More

Defining a primary key in an Attribute view in SAP HANA

Anil SAP Gupta
Anil SAP Gupta
Updated on 12-Mar-2020 813 Views

This can be done by selecting column name from the list of columns under Output pane.

Read More

Getting statistics details of SAP HANA system

SAP Expert
SAP Expert
Updated on 12-Mar-2020 1K+ Views

_SYS_STATISTICS- This schema stores all system configuration and parameter details of HANA system.You can find this under Catalog folder in HANA Studio once you select relevant HANA system in System pane.

Read More
Showing 321–330 of 498 articles
« Prev 1 31 32 33 34 35 50 Next »
Advertisements