Defining Workbench Save Interval in SAP HANA Studio

SAP Expert
Updated on 24-Feb-2020 07:14:08

163 Views

This can be defined in Preferences under Window tab −When you open Preferences, you have to set this value in General tab.

Path for Log-Based Data Backups in SAP HANA

SAP ABAP Expert
Updated on 24-Feb-2020 07:05:55

233 Views

All the information is available under global.ini file which stores global configuration properties for each service in the landscape.These are the global properties most frequently used for extended storage configuration −Name                                    Section                Value                  Defaultbasepath_logbackup      persistence                File path ($DIR_INSTANCE)/backup/log

Use of Parameter BasePath for DataVolumes in SAP HANA Global Configuration

SAP ABAP Expert
Updated on 24-Feb-2020 07:03:58

334 Views

basepath_datavolumes_es parameter provides the default path to the dynamic tiering data directory (data_es). This path must be available to the dynamic tiering host, but need not be available to HANA hosts. Avoid including the default installation directory in the path.Value − File PathDefault − /HANA/data_es/

Use of Parameter basepath_logvolumes_es in Global Configuration File in SAP HANA

SAP ABAP Expert
Updated on 24-Feb-2020 07:02:52

249 Views

basepath_logvolumes_es provides the default path to the dynamic tiering log directory (log_es). This path must be available to the dynamic tiering host, but need not be available to HANA hosts. Avoid including the default installation directory in the path.Value − File Path          Default − /HANA/log_es/

Checking Enforced License in SAP HANA

SAP ABAP Expert
Updated on 24-Feb-2020 07:01:59

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.

Difference between SAP ERP and SAP S/4HANA

SAP ABAP Expert
Updated on 24-Feb-2020 07:00:55

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

Collections replaceAll Method and List replaceAll Method in Java

Maruthi Krishna
Updated on 24-Feb-2020 07:00:17

3K+ Views

The replaceAll() method of Collections interface accepts a List object, two typed parameters representing old and new values, replaces the old values with the new values in the list.Example Live Demoimport java.util.ArrayList; import java.util.Collections; import java.util.List; public class ReplaceAllExample {    public static void main(String args[]) {       List list = new ArrayList();       list.add("Java");       list.add("Java Script");       list.add("HBase");       list.add("CoffeeScript");       list.add("TypeScript");       System.out.println("Contents of list: "+list);       Collections.replaceAll(list, "Java", "JAVA");       System.out.print("Contents of list after replace operation: "+list);    } ... Read More

Vendors for SAP HANA Appliance Manufacturing

SAP ABAP Expert
Updated on 24-Feb-2020 06:59:50

329 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

Check All Alert Types in SAP HANA

SAP ABAP Expert
Updated on 24-Feb-2020 06:52:28

359 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.

Configuring SMTP in SAP HANA for Alerting

SAP ABAP Expert
Updated on 24-Feb-2020 06:50:43

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

Advertisements