Articles on Trending Technologies

Technical articles with clear explanations and examples

Integrate node.js with SAP HANA system

Srinivas Gorla
Srinivas Gorla
Updated on 12-Mar-2020 556 Views

You can insert data into HANA database using node.js. You can also connect to SAP HANA database via JDBC driver.To connect via JDBC, you need to install JDBC driver ngdbc.jar. This driver is installed as part of SAP HANA client installation. Ngdbc.jar file is available at this location −C:\Program Files\sap\hdbclient\ on Windows platforms /usr/sap/hdbclient/ on Linux and UNIX platformsNext is to add ngdb.jar to the classpath and write a Java program to connect to a database and execute SQL command.jdbc:sap://myServer:30015/?autocommit=falseYou can also add one or more failover servers by adding additional hosts.ExampleFollowing is an example of connecting SAP HANA Server ...

Read More

Suppressing duplicate entries in classical and ALV report in SAP ABAP

Nikitha N
Nikitha N
Updated on 12-Mar-2020 2K+ Views

To delete adjacent duplicate entries in an internal table, you can use the below command −DELETE ADJACENT DUPLICATE ENTRIES FROM                      [COMPARING ...                          |ALL FIELDS].Also, consider the below points −The system deletes all adjacent duplicate entries from the internal table . Entries are duplicate if they fulfill one of the following compare criteria:Without the COMPARING addition, the contents of the key fields of the table must be identical in both lines.If you use the addition COMPARING ...

Read More

Loading External Libraries in SAP UI5

Nikitha N
Nikitha N
Updated on 12-Mar-2020 2K+ Views

External libraries can be inserted using a file in a normal script tag. SAP UI5 also supports JQuery so it can be done by extending your heading from the controller.var s = document.createElement("script"); s.type = "text/javascript"; s.src = "http://domainname.com/somescript"; $("head").append(s);You can also add any external file using the following command −jQuery.sap.registerModulePath("ModuleName","http://Domainname.com"); jQuery.sap.require("ModuleName.jsFileName");You can navigate to the following path for more details−https://blogs.sap.com/2016/04/22/include-external-javascript-library-in-sapui5/

Read More

Connecting SAP in Ruby on Rails

Priya Pallavi
Priya Pallavi
Updated on 12-Mar-2020 647 Views

Try downloading nwrfcsdk library from sap and follow instructions mentioned in Readme to perform the installation. Use function Module like ENQUEUE_READ to perform remote call as below −#!/usr/bin/env ruby require 'sapnwrfc' require 'rubygems' conn = SAPNW::Base.rfc_connect(:client => '800',                                :sysnr  => '01',                                :lang   => 'EN',                                :ashost => 'hostname',               ...

Read More

How to create a multi-resolution favicon with GIMP?

Abhinanda Shri
Abhinanda Shri
Updated on 12-Mar-2020 2K+ Views

Favicons are generally 16x16, but these days we can multi-resolution favicons also. To create a multi-resolution favicon, first, you need to create the highest-resolution version of the favicon, with an image of 256 × 256 px. Reduce the size of multiple resolutions and export, 16x16, 32x32.Open GIMP and from the File menu, open the 32x32 version of the Favicon. After that rightclick on the image and Open the other Favicon icons as layers,After that Export the image as Favicon, with extension .ico and add it to the website using the following code −

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

Adding columns to output in an Attribute view in SAP HANA

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

This can be done in 2 waysYou can directly click on round circle in front of the column name in Details PaneYou can add a column to output by right click on the column and select → Add to OutputWhen you add a column to output pane, it is added in Output pane on the right side under columns list.

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

Different License types in SAP HANA

SAP ABAP Expert
SAP ABAP Expert
Updated on 12-Mar-2020 667 Views

HANA Support two types of license −Temporary License KeyPermanent License KeyTo check your system license, you have to select HANA system in Studio → right click → PropertiesThis will open Properties of your HANA system. Navigate to License option and there you can check license type in use −

Read More

Learning SAP HANA Modeling and Administration

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

There are various tutorials that you can follow and you can get a fair idea about SAP HANA Concepts. We have various text and video tutorials published free on our website which is developed by experts. You can easily follow them as they provide step by step documentation for all key functions in HANA.https://www.tutorialspoint.com/sap_hana_administration/index.htmhttps://www.tutorialspoint.com/sap_hana/index.htmThere are various sites which provide HANA demo system access with nominal payment. Happy Learning…!!

Read More
Showing 54531–54540 of 61,297 articles
Advertisements