Found 694 Articles for SAP HANA

Consuming Graphical calculation view via SDA

SAP Expert
Updated on 06-Mar-2020 05:24:38

201 Views

Note that you can create Graphical Calculation Views using SMART Data access tables and you can also push aggregations to remote database.For more details, you can refer this blog to Smart Data Access: The power of Smart Data Access (SDA) with SAP HANA SP08http://www.saphanacentral.com/2015/03/the-power-of-smart-data-access-sda-with.html

Using parallel processing in SAP HANA

John SAP
Updated on 30-Jul-2019 22:30:22

612 Views

With the use of column based storage in HANA, data is available vertically and hence operations on different columns can be easily performed. When there is a requirement to process to process more than one column, it is processed by the different processor.

Connection SAP HANA with BusinessObjects

Priya Pallavi
Updated on 16-Dec-2019 07:21:20

443 Views

BO can connect to HANA in either of the following ways:OLAP SAP BICS ClientSAP BAPIOLAP SAP HANA ClientRelation DB Connectivity (JDBC/ODBC)OLAP SAP BICS (Business Intelligence Consumer Service) Client: This connection can be established either with the help of Information design tool or by using BI Server console. Naming BEx query is optional in this case. Therefore, solitaire BICS connectivity can be used to create reports on multiple BW cubes.SAP BAPI: This is the most prevalent way to connect BO server to BEx queries. For each BEx query one BAPI Connection is created. Therefore, if you have multiple BEx queries then ... Read More

Taking backup of schema in SAP HANA

Govinda Sai
Updated on 16-Dec-2019 07:50:51

284 Views

It is always recommended to back up your critical systems.ExampleFollowing SQL command can be used to export schema in HANA:EXPORT "SOURCE_SCHEMA_NAME".* AS BINARY INTO '/tmp/DESTINATION SCHEMA NAME' WITH    REPLACE;This can also be directly zipped to Linux as below:tar -czf SOURCE_SCHEMA.tgz /tmp/DESTINATION_SCHEMA/

Analyzing code coverage results in SAP Design Studio on top of HANA

John SAP
Updated on 13-Dec-2019 06:36:46

46 Views

To consume HANA view, you need to start by creating an ODBC connection to SAP HANA system through odbcad32.exe.Next step is open SAP Design Studio and add a data source by connecting to HANA system and open view as below:This way you can view your SAP HANA view in Design Studio, now to analyze code coverage results, you can refer this SAP blog for step by step process:SAP blog

Query in Analytic view creating unexpected results in SAP HANA

John SAP
Updated on 17-Feb-2020 12:40:49

180 Views

You haven’t provided complete details what you are trying to achieve. Refer SAP OSS note 1993033 Wrong result for query on analytic viewDuring activation of an analytic view, column view is generated. However, there are some artifacts that cannot be calculated in this column view. In this case, one additional calculation view is generated on top of it. The generation of the calculation view has to be performed if the following elements are defined in the analytic view:Input parametersCalculated attributesUnit or currency conversionsIf at least one of these elements is defined in the analytic view, the activation creates one OLAP ... Read More

Calling an ABAP Function Module using Python script to put data in SAP HANA

John SAP
Updated on 17-Feb-2020 12:44:48

438 Views

You can refer this SAP blog how to use SAP NetWeaver library with Python.SAP Link

Integrating HANA and R using RJDBC

John SAP
Updated on 30-Jul-2019 22:30:20

83 Views

I think there is a typo error. Try correcting your code like classPath="Z:/SAP/hdbclient/ngdbc.jar

Difference between Open SQL, Native SQL in SAP HANA

John SAP
Updated on 13-Dec-2019 06:44:16

1K+ Views

As you know SAP was not providing any db for ECC and it had to be purchased separately. When you call your database in ABAP program, you need to write a SQL. As R/3 from SAP works with most relational databases, a common set of features had to be used, with some SAP specific extensions which are translated by the ABAP kernel to be understood by the actual DB. This language is known as Open SQL language.When you develop only for one database, it uses native instructions. IT is developed in Native SQL. Now when you use SAP HANA as ... Read More

Getting memory error while doing UNION in SAP HANA

John SAP
Updated on 13-Dec-2019 06:45:39

209 Views

The SQL UNION clause/operator is used to combine the results of two or more SELECT statements without returning any duplicate rows.To use this UNION clause, each SELECT statement must haveThe same number of columns selectedThe same number of column expressionsThe same data type andHave them in the same orderWhile performing UNION you need to note that what data it will bring. To perform UNION ALL you need to ensure that views should be fully materialized.To know more about SAP HANA Modeling, you can refer SAP Guide:SAP HANA Guide

Advertisements