Showing posts with label SAP HANA. Show all posts
Showing posts with label SAP HANA. Show all posts

Thursday, 20 September 2012

SAP HANA 1.0: Overview - Use HANA with BI 4.0


SAP HANA is a high-performance analytic appliance that provides SAP software components optimized on hardware from SAP's leading hardware partners. 

HANA's in-memory computing engine enables organizations to effectively analyze business operations based on very large volumes of detailed real-time data, without affecting backend enterprise applications or databases.

In this tutorial, you will review high-level steps for using SAP HANA with SAP BusinessObjects Business Intelligence (BI) tools.

Visit @ http://www.sap.com/LearnBI to view full catalog of interactive SAP BusinessObjects BI Suite tutorials. 


Monday, 11 June 2012

SAP HANA

This section gives the information of the documents available in SCN for SAP HANA and the links for them.

The below documents explains about:
a) What are all the basic navigation's that we have to perform on brand new 
    HANA system?
b) How to create tables, schema and packages in SAP HANA system.
c) Step by Step procedure to create Models in SAP HANA system like   Attribute 
    View, Analytic View and Calculation View.

d) What are the different types of measures available in HANA and how to 
    create  them?
e) How to connect HANA to excel using ODBO connection for reporting.

And many more.....































Thursday, 3 May 2012

Basic Navigations in SAP HANA Brand New System

Hi All,

In this post, I am going to show  the basic navigation's that we need to do when we login to the brand new SAP HANA system.

This includes the following.

1) Adding System

2) Package Creation

1) Adding System: Once the SAP HANA is installed and when we click on 'HANA Studio' the below screen will come up.


In the above screen left side, 'Navigator' space will show what are all the system available in this Studio. As this is new system the first step we have to do is add the system.

Step1: right click in the Navigator space, click on 'Add System'


Step2: In the next screen we have to mention 'Hostname' and 'Instance Number'.

Note: We can have multiple systems with same hostname but different instance number.


Select the language and click on 'Next'.

Step3: Here we have to authenticate this system by providing user name and password.


Click on 'Next' and then 'Finish' to see you system in the Navigator.


Once the system is added, a schema will be created based with the 'user name' we provided for authentication. In this if we drill down the 'catalog', we can see the schema with name 'P1001301'. Schema contains the objects(tables, views) created and customizations done by that particular user.

We have 2 main perspectives in SAP HANA.

i) Administration Console: Where in we can perform all DB level monitoring and activities.

ii) Information Modeler: This is the place where all can create their models in SAP HANA.

2) Package Creation: Package is a collection of objects modeled in SAP HANA. We can create 3 types of models/views in SAP HANA.

i) Attribute View.

ii) Analytic Views

iii) Calculation Views

iv) Analytical Privileges : Authenticate users before data is displayed or authentication of business rules.

Packaged is used to hold this objects in SAP HANA.

Step1: Goto 'Information Modeler' perspective (Window --> Open Perspective -->other -->Modeler -->Ok). We will get below screen.


The right side of the above screen is called 'Quick Launch' of Information Modeler.All the packages will be grouped under 'Content'

Step2: We can create the new package in 2 ways

1) Right Click on 'content' --> New Package

2) Directly click on 'Create' in the Quick Launch.

In then next screen give below details.

Package Name, Description.


Step3: Click on 'Ok' to see your package under 'Content' folder.

Each Package contains below sub folders.

1) Attribute Views

2) Analytic Views

3) Calculation Views

4) Analytic Privileges.

Hope this document will be helpful for beginers in SAP HANA hands on...


Different ways of table creation in SAP HANA

Hi All,

In this post, I would like to explain different ways of table creation in SAP HANA.

In SAP HANA, we can create tables in two ways.

1) Using SQL editor.

2) Using Information Modeler.

1) Using SQL Editor:

Step1: We can open SQL editor from i) Quick Launch ii) Right click on your schema --> SQL Editor iii) Right click on your system --> SQL Editor.
SQL syntax to create table in SAP HANA.

"create <table type> table <table name>(<field name1> <data type>, <field name2> <data type>, .....);"

we can create 3 types of tables in SAP HANA.

i) Column : Which stores the data on column level. This is mostly suitable for HANA data models. If we replicate tables from source, by default those will be replicated as column tables.

As we all know we get huge compression with columnar tables.

ii) Row: This tables are to store the system statistics or parameters. Sometimes Row store tables will give better performance on master data tables. however SAP HANA models gives very good performance on Columnar tables.

iii) Table Type: This tables are used to pass the parameters. These are used when we create Calculation views using SQL scripts in SAP HANA.

In this example, I am going to create table for customer information(CUST_INFO).

Step2: Open SQL editor and type the statement as given below.


Step3: Now click on arrow with green or F8 to execute this SQL statement.

Once it is successfully executed, we will get message like below


Step4: Now we can check the newly created table under our schema --> Tables like below.

Double click on the table name to display the Table Definition.


2) Using Information Modeler:

If we are not familiar with SQL, we can still create tables in SAP HANA by using graphical modeler.

Step1: Right click on your Schema in System and select 'New Table'


Step2: Now in the below screen give the Table Name, Schema and Table Type.

As we discussed already,we have 3 types of Table Types.

In this I am going to create the same table using graphical modeler.

Enter the required fileds and properties like data type, key and not null.


Use the 'Plus symbol' to add the new fields to the table.

Step4: Click on arrow or F8 to execute to deploy this table. After successful execution you will get the same message and given in first method.

Hope this document will be useful for beginners in SAP HANA.