Articles on Trending Technologies

Technical articles with clear explanations and examples

Checking enforced license in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 2K+ Views

This details can be checked from M_LICENSE view in HANA database. Try executing below query in SQL editor −SELECT EXPIRATION_DATE, ENFORCED, PERMANENT, LOCKED_DOWN FROM "SYS"."M_LICENSE" ;When Enforced value column is shown false so it means that license in use is not Enforced and you are using unenforced license.

Read More

Difference between SAP ERP and SAP S/4 HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 2K+ Views

SAP S/4 HANA stands for SAP Business Suite for SAP HANA and it provides simplified user experience, business processes and data models.SAP S/4 HANA is built on following features −Simplified data modelsFiori User interfaceGuided Configuration

Read More

Vendors for SAP HANA appliance manufacturing

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 343 Views

SAP HANA appliance, SAP has partnered with top IT hardware vendors to provide SAP HANA appliance and licensed is provides by SAP.  To provide installation and configuration of SAP HANA platform, there are total 11 vendors for HANA appliance manufacturing.IBMDellHPLenovoCiscoFujitsuNECHuaweiUnisysHitachiSGI

Read More

Checking all alert types in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 373 Views

This can be checked in Alerts tab under SAP HANA Administration. From drop down, you need to select “All Alerts” as shown below −You can also check occurrence of each alert raised in HANA by double click on Alert description. It shows you date and time when alert was previously raised.

Read More

Configuring SMTP in SAP HANA for alerting

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 1K+ Views

You can configure SMTP in Alerts tab under SAP HANA Administration. Click on Configure button and you need to enter the below information −Sender EmailSMTP serverSMTP PortRecipient email

Read More

Defining threshold values for alerting in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 491 Views

You can define this under Configure → Configure Check Thresholds. You have an option to define Low, Medium and High values for these parameters.

Read More

Checking version of SAP HANA system

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 3K+ Views

In SAP HANA Studio, select HANA system and right click. Select last option Properties from the list as below −In Properties window, navigate to Version history and you can see the version of your SAP HANA system.

Read More

SAP HANA Release/version with date

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 294 Views

From the below table you can match SAP HANA Revision/Version with Release details −

Read More

Different table symbol in SAP HANA database

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 624 Views

In SAP HANA Studio, you can check the table type from table symbol under Schema. In below snapshot you can see the different symbol for row table and a column table.TEST_Row − Row store table.SHOPFACT − Column store tableTo change the table type, you can use alter table command.Alter table column table_name;

Read More

Running an OLTP query in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 24-Feb-2020 268 Views

When you have to run an OLTP query just to display the specific records, In row based storage, when you run a Select statement all the different datatypes come together so it will be much faster to run a SELECT statement in Row based storage.Select * from FCT_SALES where Country=’US’;When the same query is run in column based storage, you need to find the values of each column in database and it is time consuming so it is not recommended to create a column based storage tables when your queries are not aggregated and required to run simple SELECT statement.

Read More
Showing 52081–52090 of 61,248 articles
Advertisements