SlideShare une entreprise Scribd logo
1  sur  17
Télécharger pour lire hors ligne
SAP HANA Developer Access Beta
 program - 7 steps towards your
 first HANA report




Applies to:
HANA 1.0

Summary
So you receive an invitation to the SAP HANA Developer Access Beta program, but then what? Information
on how to use HANA is floating around the net, but as always, you need to know where to look. I did all the
research for you. The result is written in this document: 7 steps towards your first HANA report!
For those of you not aware what the SAP HANA Developer Access Beta program is, there is an excellent
FAQ on SDN which you can find here:
http://wiki.sdn.sap.com/wiki/pages/viewpage.action?bc=true&pageId=257820641



Author(s): Ronald Konijnenburg
Company: Logica
Created on: 3 December 2011




                Author Bio
                Ronald has been an SAP consultant for over 15 year. He is a Principal Business Intelligence
                Consultant at Logica, specialised in Consolidation, Planning, BW and BOBJ. He is currently
                involved in two Business Objects implementations and is SAP BI Practice lead for Logica. In
                that role he follows the latest SAP trends on Cloud, Mobility and HANA.




SAP COMMUNITY NETWORK                   SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                      1
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report




Table of Contents
 Step 1 – Cloudshare .................................................................................................................................. 3
 Step 2 – Getting big data ........................................................................................................................... 3
 Step 3 – Create your table in HANA ........................................................................................................... 4
 Step 4 – FTP and import your files into the HANA system .......................................................................... 5
 Step 5 – Create an Analytic view for reporting ............................................................................................ 7
 Step 6 – Using Explorer to report on your data ......................................................................................... 11
 Step 7 – Using Excel to report on your data ............................................................................................. 14




SAP COMMUNITY NETWORK                                 SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                                    2
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report




HANA Developer Access Beta program
A couple of days ago I was Lucky enough to receive an invitation to the SAP HANA Developer Access
Beta program. For those of you not aware what that is, there is an excellent FAQ on SDN which you can
find here:
http://wiki.sdn.sap.com/wiki/pages/viewpage.action?bc=true&pageId=257820641
The following paragraphs will describe 7 steps towards your first HANA reporting by using SAP HANA
Sandbox.

Step 1 – Cloudshare
In your invitation mail there is a link to cloudshare.com. Create a new account, log on to the desktop and
follow the following YouTube video on how to set up your own HANA system:
http://www.youtube.com/watch?v=9NKSYgt5eX4
A great tip is given on how to use remote desktop instead of using the web version which comes with
Cloudshare. This is highly recommended as navigation is much easier in the remote desktop.
 Logon details for your RDP session are given on the Cloudshare page each time you activate the
environment:




Step 2 – Getting big data
So you managed to set up a system and created a RDP session. Good job! Now to find some “big data”. In
this article I’m using data which I downloaded from the guys over at Infochimps. I’ve used the following data
sources which in total will give me about 20 million records.


    •   AMEX Exchange Daily 1970-2010 Open, Close, High, Low and Volume
    •   NASDAQ Exchange Daily 1970-2010 Open, Close, High, Low and Volume
    •   NYSE Exchange Daily 1970-2010 Open, Close, High, Low and Volume

The files contain stock exchange data. Great recipe for finding something interesting.
You will be getting a bunch of separate csv files. Use the daily prices ones. For simplicity sake I have
merged all files into three separate csv files. Good old DOS can help you with that by using the following
command:
copy *.csv importfile.csv


Make sure to execute the command in the same directory your files are placed. Replace importfile.csv with
something recognisable (like AMEX.csv, NASDAQ.csv, NYSE.csv).




SAP COMMUNITY NETWORK                   SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                      3
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report


Step 3 – Create your table in HANA
And now the fun begins! You need to create a table which holds all your data records.
Remember those files I downloaded from Infochimps? The files have the following structure:




That means I need to replicate that structure into my HANA table. You can create your table in the HANA
studio using the modeler or by using SQL.


Modeler:




Please note that you should create the table in your own schema and use Column Store (to witness
awesome speed later on).


SQL:
I prefer SQL because it’s faster. The following command will create your table:
create column table "S0001432066"."NASDAQ"(
        "EXCHANGE" VARCHAR (10) not null,
        "STOCK" VARCHAR (10) not null,
        "DATE" DATE not null,
        "PRICEOPEN" DECIMAL (15,2),
        "PRICEHIGH" DECIMAL (15,2),
        "PRICELOW" DECIMAL (15,2),
        "PRICECLOSED" DECIMAL (15,2),
        "STOCKVOLUME" DECIMAL (15),
        "PRICECLOSEDADJ" DECIMAL (15,2),
primary key ("EXCHANGE","STOCK","DATE"))




SAP COMMUNITY NETWORK                   SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                      4
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report


Step 4 – FTP and import your files into the HANA system
The guys over at SAP will make you do a little treasure hunt in order to find the user id and password for the
FTP server. Go into you HANA system and execute the following SQL statement:

Select * from SYSTEM.FTP_SERVER




Et voila, a username and password (masqued for obvious reasons):




Take note of what is mentioned on where to store the files. More specifically you should create a folder on
the server equal to your SCN number (in my case S0001432066).


Fire off your favourite FTP client (mine is FileZilla):




SAP COMMUNITY NETWORK                      SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                         5
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report


Create a directory and store your files:




Take note that next to my files containing the data there is a so called “ctl” file. These files are required in
order to be able to load data in your created (NASAQ) table. The files have the following content:


Import data
into table S0001432066."NASDAQ"
from 'AMEX.csv'
record delimited by 'n'
fields delimited by ','
optionally enclosed by '"'
error log 'Text_Tables.err


NASADAQ is the name of my created table, AMEX.csv the file I will load.


If required, additional information can be found in this post:
http://forums.sdn.sap.com/thread.jspa?threadID=2072330&tstart=0




SAP COMMUNITY NETWORK                      SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                         6
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report


Time to import your 20 million something records into HANA! Execute the following SQL statement:


IMPORT FROM '/dropbox/S0001432066/AMEX.ctl'


Note the name of the folder I created in step 4 (folder S0001432066), /dropbox/ is a prefix.


After a while you will get the following result back:
Statement 'IMPORT FROM '/dropbox/S0001432066/AMEX.ctl'' successfully executed in
7:22.046 minutes - Rows Affected: 0


Hang on I hear you thinking. 0 Rows? No it’s not actually. You can check by firing off the following SQL
statement:
select count(*) from NASDAQ




That looks promising! Let’s check some more:




We have data! Look at the log file:
Fetched 30 row(s) in 15 ms


Wow!

Step 5 – Create an Analytic view for reporting




SAP COMMUNITY NETWORK                     SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                        7
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report


First step create a package which will hold your view:




Create a so-called Analytic View:




Give it a name:




Select your table:




SAP COMMUNITY NETWORK                   SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                      8
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report




Drag your objects into the attributes and measures sections:




Validate, save and activate your view. Well done! We can use this view in Explorer and Excel. Note that you
can preview your data and even auto document if by using these buttons:




Important! In case preview fails it is likely you have to “grant” your schema by executing this statement:
grant select on schema s0001432066 to _SYS_REPO with grant option


Replace s0001432066 with your own namespace ofcourse.




SAP COMMUNITY NETWORK                    SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                       9
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report




As an extra step your could create an extra table which holds the stock names. If you follow the same
procedure as for creating the table with the stock records, you can join your two tables and have texts
together with the stock names. Sequence for this would be:

    1. Create and load your text table
    2. Create an attribute view
    3. Link your analytic view together with your attribute view

Result would be:




Preview:




SAP COMMUNITY NETWORK                   SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                     10
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report


Step 6 – Using Explorer to report on your data


On your desktop a shortcut to Explorer can be found:




Fire it off and be sure to enter the correct server which can be found in your invitation mail:




Go to manage spaces :




SAP COMMUNITY NETWORK                     SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                       11
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report


Select your view and press “New”:




Give it a name:




Put in your objects:




And press ok!




SAP COMMUNITY NETWORK               SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                 12
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report


Index your data:




Refresh your page and you have a new information space:




Press it and start analysing! This one is for you Steve. Apple stock prices in the year he had to leave Apple:




Be sure to select enough data to get a nice trend.




SAP COMMUNITY NETWORK                    SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                      13
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report


Step 7 – Using Excel to report on your data


There is also a possibility to use Excel pivot tables for your reporting needs. Fire off Excel and connect to
your view




Choose Other/advanced:




Select the MDX connection:




SAP COMMUNITY NETWORK                    SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                      14
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report



Enter server credentials (check your invitation mail if not known):




Select your view:




You now have your data in a pivot table format. Set some filters and analyse your data at great speed!




SAP COMMUNITY NETWORK                    SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                      15
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report




Note that data retrieval is at great speed, but Excel makes it a bit sluggish in a RDP session.


Many thanks for bearing with me till the end and good luck with this great opportunity to test drive HAHA!




Related Content
FAQ SAP HANA Developer Access (Beta) – HANA Sandbox System
SAP HANA Developer Access (Beta)
Forum: In-Memory Business Data Management




SAP COMMUNITY NETWORK                    SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                      16
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report




Copyright
© Copyright 2011 SAP AG. All rights reserved.
No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP AG.
The information contained herein may be changed without prior notice.
Some software products marketed by SAP AG and its distributors contain proprietary software components of other software vendors.
Microsoft, Windows, Excel, Outlook, and PowerPoint are registered trademarks of Microsoft Corporation.
IBM, DB2, DB2 Universal Database, System i, System i5, System p, System p5, System x, System z, System z10, System z9, z10, z9,
iSeries, pSeries, xSeries, zSeries, eServer, z/VM, z/OS, i5/OS, S/390, OS/390, OS/400, AS/400, S/390 Parallel Enterprise Server,
PowerVM, Power Architecture, POWER6+, POWER6, POWER5+, POWER5, POWER, OpenPower, PowerPC, BatchPipes,
BladeCenter, System Storage, GPFS, HACMP, RETAIN, DB2 Connect, RACF, Redbooks, OS/2, Parallel Sysplex, MVS/ESA, AIX,
Intelligent Miner, WebSphere, Netfinity, Tivoli and Informix are trademarks or registered trademarks of IBM Corporation.
Linux is the registered trademark of Linus Torvalds in the U.S. and other countries.
Adobe, the Adobe logo, Acrobat, PostScript, and Reader are either trademarks or registered trademarks of Adobe Systems
Incorporated in the United States and/or other countries.
Oracle is a registered trademark of Oracle Corporation.
UNIX, X/Open, OSF/1, and Motif are registered trademarks of the Open Group.
Citrix, ICA, Program Neighborhood, MetaFrame, WinFrame, VideoFrame, and MultiWin are trademarks or registered trademarks of
Citrix Systems, Inc.
HTML, XML, XHTML and W3C are trademarks or registered trademarks of W3C®, World Wide Web Consortium, Massachusetts
Institute of Technology.
Java is a registered trademark of Oracle Corporation.
JavaScript is a registered trademark of Oracle Corporation, used under license for technology invented and implemented by Netscape.
SAP, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP Business ByDesign, and other SAP products and services mentioned
herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and other countries.
Business Objects and the Business Objects logo, BusinessObjects, Crystal Reports, Crystal Decisions, Web Intelligence, Xcelsius, and
other Business Objects products and services mentioned herein as well as their respective logos are trademarks or registered
trademarks of Business Objects S.A. in the United States and in other countries. Business Objects is an SAP company.
All other product and service names mentioned are the trademarks of their respective companies. Data contained in this document
serves informational purposes only. National product specifications may vary.
These materials are subject to change without notice. These materials are provided by SAP AG and its affiliated companies ("SAP
Group") for informational purposes only, without representation or warranty of any kind, and SAP Group shall not be liable for errors or
omissions with respect to the materials. The only warranties for SAP Group products and services are those that are set forth in the
express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an
additional warranty.




SAP COMMUNITY NETWORK                             SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com
© 2011 SAP AG                                                                                                               17

Contenu connexe

Tendances

SAP HANA SPS10- Backup/Recovery
SAP HANA SPS10- Backup/RecoverySAP HANA SPS10- Backup/Recovery
SAP HANA SPS10- Backup/RecoverySAP Technology
 
SAP HANA SPS10- SAP HANA Dynamic Tiering
SAP HANA SPS10- SAP HANA Dynamic TieringSAP HANA SPS10- SAP HANA Dynamic Tiering
SAP HANA SPS10- SAP HANA Dynamic TieringSAP Technology
 
SAP HANA SPS10- Scale-Out, High Availability and Disaster Recovery
SAP HANA SPS10- Scale-Out, High Availability and Disaster RecoverySAP HANA SPS10- Scale-Out, High Availability and Disaster Recovery
SAP HANA SPS10- Scale-Out, High Availability and Disaster RecoverySAP Technology
 
SAP HANA for SAP Overview
SAP HANA for SAP OverviewSAP HANA for SAP Overview
SAP HANA for SAP OverviewIliya Ruvinsky
 
SAP HANA SPS10- SAP HANA Remote Data Sync
SAP HANA SPS10- SAP HANA Remote Data SyncSAP HANA SPS10- SAP HANA Remote Data Sync
SAP HANA SPS10- SAP HANA Remote Data SyncSAP Technology
 
What's new for SAP HANA SPS 11 Dynamic Tiering
What's new for SAP HANA SPS 11 Dynamic TieringWhat's new for SAP HANA SPS 11 Dynamic Tiering
What's new for SAP HANA SPS 11 Dynamic TieringSAP Technology
 
1310 success stories_and_lessons_learned_implementing_sap_hana_solutions
1310 success stories_and_lessons_learned_implementing_sap_hana_solutions1310 success stories_and_lessons_learned_implementing_sap_hana_solutions
1310 success stories_and_lessons_learned_implementing_sap_hana_solutionsBobby Shah
 
SAP HANA SPS09- Administration Monitoring
SAP HANA SPS09- Administration MonitoringSAP HANA SPS09- Administration Monitoring
SAP HANA SPS09- Administration MonitoringSAP Technology
 
Whats New on SAP HANA SPS 11 Core Database Capabilities
Whats New on SAP HANA SPS 11 Core Database CapabilitiesWhats New on SAP HANA SPS 11 Core Database Capabilities
Whats New on SAP HANA SPS 11 Core Database CapabilitiesSAP Technology
 
What's new on SAP HANA Workload Management
What's new on SAP HANA Workload ManagementWhat's new on SAP HANA Workload Management
What's new on SAP HANA Workload ManagementSAP Technology
 
SQL Anywhere Tips and Tricks
SQL Anywhere Tips and TricksSQL Anywhere Tips and Tricks
SQL Anywhere Tips and TricksSAP Technology
 
What's New in SAP HANA SPS 11 DB Control Center (Operations)
What's New in SAP HANA SPS 11 DB Control Center (Operations)What's New in SAP HANA SPS 11 DB Control Center (Operations)
What's New in SAP HANA SPS 11 DB Control Center (Operations)SAP Technology
 
Taking it all offline with SQL Anywhere
Taking it all offline with SQL AnywhereTaking it all offline with SQL Anywhere
Taking it all offline with SQL AnywhereZendCon
 
Best Practices to Administer, Operate, and Monitor an SAP HANA System
Best Practices to Administer, Operate, and Monitor an SAP HANA SystemBest Practices to Administer, Operate, and Monitor an SAP HANA System
Best Practices to Administer, Operate, and Monitor an SAP HANA SystemSAPinsider Events
 
SAP HANA System Replication simplified
SAP HANA System Replication simplifiedSAP HANA System Replication simplified
SAP HANA System Replication simplifiedDirk Oppenkowski
 

Tendances (20)

SAP HANA SPS10- Backup/Recovery
SAP HANA SPS10- Backup/RecoverySAP HANA SPS10- Backup/Recovery
SAP HANA SPS10- Backup/Recovery
 
SAP HANA SPS10- SAP HANA Dynamic Tiering
SAP HANA SPS10- SAP HANA Dynamic TieringSAP HANA SPS10- SAP HANA Dynamic Tiering
SAP HANA SPS10- SAP HANA Dynamic Tiering
 
SAP HANA SPS10- Scale-Out, High Availability and Disaster Recovery
SAP HANA SPS10- Scale-Out, High Availability and Disaster RecoverySAP HANA SPS10- Scale-Out, High Availability and Disaster Recovery
SAP HANA SPS10- Scale-Out, High Availability and Disaster Recovery
 
SAP HANA for SAP Overview
SAP HANA for SAP OverviewSAP HANA for SAP Overview
SAP HANA for SAP Overview
 
SAP HANA SPS10- SAP HANA Remote Data Sync
SAP HANA SPS10- SAP HANA Remote Data SyncSAP HANA SPS10- SAP HANA Remote Data Sync
SAP HANA SPS10- SAP HANA Remote Data Sync
 
What's new for SAP HANA SPS 11 Dynamic Tiering
What's new for SAP HANA SPS 11 Dynamic TieringWhat's new for SAP HANA SPS 11 Dynamic Tiering
What's new for SAP HANA SPS 11 Dynamic Tiering
 
HANA Modeling
HANA Modeling HANA Modeling
HANA Modeling
 
1310 success stories_and_lessons_learned_implementing_sap_hana_solutions
1310 success stories_and_lessons_learned_implementing_sap_hana_solutions1310 success stories_and_lessons_learned_implementing_sap_hana_solutions
1310 success stories_and_lessons_learned_implementing_sap_hana_solutions
 
SAP HANA Overview
SAP HANA OverviewSAP HANA Overview
SAP HANA Overview
 
SAP HANA SPS09- Administration Monitoring
SAP HANA SPS09- Administration MonitoringSAP HANA SPS09- Administration Monitoring
SAP HANA SPS09- Administration Monitoring
 
Whats New on SAP HANA SPS 11 Core Database Capabilities
Whats New on SAP HANA SPS 11 Core Database CapabilitiesWhats New on SAP HANA SPS 11 Core Database Capabilities
Whats New on SAP HANA SPS 11 Core Database Capabilities
 
What's new on SAP HANA Workload Management
What's new on SAP HANA Workload ManagementWhat's new on SAP HANA Workload Management
What's new on SAP HANA Workload Management
 
SQL Anywhere Tips and Tricks
SQL Anywhere Tips and TricksSQL Anywhere Tips and Tricks
SQL Anywhere Tips and Tricks
 
SAP Migrations made easy
SAP Migrations made easySAP Migrations made easy
SAP Migrations made easy
 
What's New in SAP HANA SPS 11 DB Control Center (Operations)
What's New in SAP HANA SPS 11 DB Control Center (Operations)What's New in SAP HANA SPS 11 DB Control Center (Operations)
What's New in SAP HANA SPS 11 DB Control Center (Operations)
 
Taking it all offline with SQL Anywhere
Taking it all offline with SQL AnywhereTaking it all offline with SQL Anywhere
Taking it all offline with SQL Anywhere
 
Lsmw
LsmwLsmw
Lsmw
 
Best Practices to Administer, Operate, and Monitor an SAP HANA System
Best Practices to Administer, Operate, and Monitor an SAP HANA SystemBest Practices to Administer, Operate, and Monitor an SAP HANA System
Best Practices to Administer, Operate, and Monitor an SAP HANA System
 
SAP Hana Overview
SAP Hana OverviewSAP Hana Overview
SAP Hana Overview
 
SAP HANA System Replication simplified
SAP HANA System Replication simplifiedSAP HANA System Replication simplified
SAP HANA System Replication simplified
 

Similaire à SAP HANA Developer Access Beta program - 7 steps towards your first HANA report

SAP HANA direct extractor:Data acquisition
SAP HANA direct extractor:Data acquisition SAP HANA direct extractor:Data acquisition
SAP HANA direct extractor:Data acquisition Deepak Chaubey
 
Dynamic variant creation
Dynamic variant creationDynamic variant creation
Dynamic variant creationyoung moon woo
 
Rda step by step
Rda   step by stepRda   step by step
Rda step by stepPhani Kumar
 
Using infoset query %2c sap query and quick viewer
Using infoset query %2c sap query and quick viewerUsing infoset query %2c sap query and quick viewer
Using infoset query %2c sap query and quick viewerShailendra Surana
 
Using infoset query ,sap query and quick viewer
Using infoset query ,sap query and quick viewerUsing infoset query ,sap query and quick viewer
Using infoset query ,sap query and quick viewerbsm fico
 
00- SAP-BASIS-EPSS-EN.pptx
00- SAP-BASIS-EPSS-EN.pptx00- SAP-BASIS-EPSS-EN.pptx
00- SAP-BASIS-EPSS-EN.pptxAhmedSeid38
 
Trigger bi process chain from ecc
Trigger bi process chain from eccTrigger bi process chain from ecc
Trigger bi process chain from eccObaid shaikh
 
[BTP HANA Cloud Database] _ How to access HANA Cloud Database & HDI Container...
[BTP HANA Cloud Database] _ How to access HANA Cloud Database & HDI Container...[BTP HANA Cloud Database] _ How to access HANA Cloud Database & HDI Container...
[BTP HANA Cloud Database] _ How to access HANA Cloud Database & HDI Container...RUPAK BHATTACHARJEE
 
Creating attachments to work items or to user decisions in workflows
Creating attachments to work items or to user decisions in workflowsCreating attachments to work items or to user decisions in workflows
Creating attachments to work items or to user decisions in workflowsHicham Khallouki
 
Power of the SAP HANA Platform – Integrating non-SAP data with custom HANA ap...
Power of the SAP HANA Platform – Integrating non-SAP data with custom HANA ap...Power of the SAP HANA Platform – Integrating non-SAP data with custom HANA ap...
Power of the SAP HANA Platform – Integrating non-SAP data with custom HANA ap...Dickinson + Associates
 
project proposal guidelines for bw on hana Dr Erdas
project proposal guidelines for bw on hana Dr Erdasproject proposal guidelines for bw on hana Dr Erdas
project proposal guidelines for bw on hana Dr ErdasProf Dr Mehmed ERDAS
 
Flow Chart to get Free access to SAP HANA Cloud Platform
Flow Chart to get Free access to SAP HANA Cloud PlatformFlow Chart to get Free access to SAP HANA Cloud Platform
Flow Chart to get Free access to SAP HANA Cloud PlatformSAPYard
 
Non-SAP Data Integration with SAP HANA_v5.0
Non-SAP Data Integration with SAP HANA_v5.0Non-SAP Data Integration with SAP HANA_v5.0
Non-SAP Data Integration with SAP HANA_v5.0Tim Korba
 
Impact of in-memory technology and SAP HANA (2012 Update)
Impact of in-memory technology and SAP HANA (2012 Update)Impact of in-memory technology and SAP HANA (2012 Update)
Impact of in-memory technology and SAP HANA (2012 Update)Vitaliy Rudnytskiy
 
7851bb94-db7d-0010-87a3-c30de2ffd8ff.pdf
7851bb94-db7d-0010-87a3-c30de2ffd8ff.pdf7851bb94-db7d-0010-87a3-c30de2ffd8ff.pdf
7851bb94-db7d-0010-87a3-c30de2ffd8ff.pdfzabasit
 
Practitioner perspective-erp-on-hana-and-fi-analytics 2015
Practitioner perspective-erp-on-hana-and-fi-analytics 2015Practitioner perspective-erp-on-hana-and-fi-analytics 2015
Practitioner perspective-erp-on-hana-and-fi-analytics 2015Benedict Yong (杨腾翔)
 

Similaire à SAP HANA Developer Access Beta program - 7 steps towards your first HANA report (20)

SAP HANA direct extractor:Data acquisition
SAP HANA direct extractor:Data acquisition SAP HANA direct extractor:Data acquisition
SAP HANA direct extractor:Data acquisition
 
Why SAP HANA?
Why SAP HANA?Why SAP HANA?
Why SAP HANA?
 
Dynamic variant creation
Dynamic variant creationDynamic variant creation
Dynamic variant creation
 
Rda step by step
Rda   step by stepRda   step by step
Rda step by step
 
Vipul mehta cv
Vipul mehta cvVipul mehta cv
Vipul mehta cv
 
Using infoset query %2c sap query and quick viewer
Using infoset query %2c sap query and quick viewerUsing infoset query %2c sap query and quick viewer
Using infoset query %2c sap query and quick viewer
 
Using infoset query ,sap query and quick viewer
Using infoset query ,sap query and quick viewerUsing infoset query ,sap query and quick viewer
Using infoset query ,sap query and quick viewer
 
00- SAP-BASIS-EPSS-EN.pptx
00- SAP-BASIS-EPSS-EN.pptx00- SAP-BASIS-EPSS-EN.pptx
00- SAP-BASIS-EPSS-EN.pptx
 
Query
QueryQuery
Query
 
Trigger bi process chain from ecc
Trigger bi process chain from eccTrigger bi process chain from ecc
Trigger bi process chain from ecc
 
[BTP HANA Cloud Database] _ How to access HANA Cloud Database & HDI Container...
[BTP HANA Cloud Database] _ How to access HANA Cloud Database & HDI Container...[BTP HANA Cloud Database] _ How to access HANA Cloud Database & HDI Container...
[BTP HANA Cloud Database] _ How to access HANA Cloud Database & HDI Container...
 
Creating attachments to work items or to user decisions in workflows
Creating attachments to work items or to user decisions in workflowsCreating attachments to work items or to user decisions in workflows
Creating attachments to work items or to user decisions in workflows
 
Power of the SAP HANA Platform – Integrating non-SAP data with custom HANA ap...
Power of the SAP HANA Platform – Integrating non-SAP data with custom HANA ap...Power of the SAP HANA Platform – Integrating non-SAP data with custom HANA ap...
Power of the SAP HANA Platform – Integrating non-SAP data with custom HANA ap...
 
project proposal guidelines for bw on hana Dr Erdas
project proposal guidelines for bw on hana Dr Erdasproject proposal guidelines for bw on hana Dr Erdas
project proposal guidelines for bw on hana Dr Erdas
 
Flow Chart to get Free access to SAP HANA Cloud Platform
Flow Chart to get Free access to SAP HANA Cloud PlatformFlow Chart to get Free access to SAP HANA Cloud Platform
Flow Chart to get Free access to SAP HANA Cloud Platform
 
Non-SAP Data Integration with SAP HANA_v5.0
Non-SAP Data Integration with SAP HANA_v5.0Non-SAP Data Integration with SAP HANA_v5.0
Non-SAP Data Integration with SAP HANA_v5.0
 
SAP HANA
SAP HANASAP HANA
SAP HANA
 
Impact of in-memory technology and SAP HANA (2012 Update)
Impact of in-memory technology and SAP HANA (2012 Update)Impact of in-memory technology and SAP HANA (2012 Update)
Impact of in-memory technology and SAP HANA (2012 Update)
 
7851bb94-db7d-0010-87a3-c30de2ffd8ff.pdf
7851bb94-db7d-0010-87a3-c30de2ffd8ff.pdf7851bb94-db7d-0010-87a3-c30de2ffd8ff.pdf
7851bb94-db7d-0010-87a3-c30de2ffd8ff.pdf
 
Practitioner perspective-erp-on-hana-and-fi-analytics 2015
Practitioner perspective-erp-on-hana-and-fi-analytics 2015Practitioner perspective-erp-on-hana-and-fi-analytics 2015
Practitioner perspective-erp-on-hana-and-fi-analytics 2015
 

Dernier

AI Fame Rush Review – Virtual Influencer Creation In Just Minutes
AI Fame Rush Review – Virtual Influencer Creation In Just MinutesAI Fame Rush Review – Virtual Influencer Creation In Just Minutes
AI Fame Rush Review – Virtual Influencer Creation In Just MinutesMd Hossain Ali
 
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDEADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDELiveplex
 
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration WorkflowsIgniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration WorkflowsSafe Software
 
UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6DianaGray10
 
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAAnypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAshyamraj55
 
Building AI-Driven Apps Using Semantic Kernel.pptx
Building AI-Driven Apps Using Semantic Kernel.pptxBuilding AI-Driven Apps Using Semantic Kernel.pptx
Building AI-Driven Apps Using Semantic Kernel.pptxUdaiappa Ramachandran
 
Crea il tuo assistente AI con lo Stregatto (open source python framework)
Crea il tuo assistente AI con lo Stregatto (open source python framework)Crea il tuo assistente AI con lo Stregatto (open source python framework)
Crea il tuo assistente AI con lo Stregatto (open source python framework)Commit University
 
Introduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxIntroduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxMatsuo Lab
 
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdfUiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdfDianaGray10
 
Connector Corner: Extending LLM automation use cases with UiPath GenAI connec...
Connector Corner: Extending LLM automation use cases with UiPath GenAI connec...Connector Corner: Extending LLM automation use cases with UiPath GenAI connec...
Connector Corner: Extending LLM automation use cases with UiPath GenAI connec...DianaGray10
 
UiPath Studio Web workshop series - Day 7
UiPath Studio Web workshop series - Day 7UiPath Studio Web workshop series - Day 7
UiPath Studio Web workshop series - Day 7DianaGray10
 
UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...
UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...
UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...UbiTrack UK
 
20230202 - Introduction to tis-py
20230202 - Introduction to tis-py20230202 - Introduction to tis-py
20230202 - Introduction to tis-pyJamie (Taka) Wang
 
NIST Cybersecurity Framework (CSF) 2.0 Workshop
NIST Cybersecurity Framework (CSF) 2.0 WorkshopNIST Cybersecurity Framework (CSF) 2.0 Workshop
NIST Cybersecurity Framework (CSF) 2.0 WorkshopBachir Benyammi
 
AI You Can Trust - Ensuring Success with Data Integrity Webinar
AI You Can Trust - Ensuring Success with Data Integrity WebinarAI You Can Trust - Ensuring Success with Data Integrity Webinar
AI You Can Trust - Ensuring Success with Data Integrity WebinarPrecisely
 
Cybersecurity Workshop #1.pptx
Cybersecurity Workshop #1.pptxCybersecurity Workshop #1.pptx
Cybersecurity Workshop #1.pptxGDSC PJATK
 
UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1DianaGray10
 
Machine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdfMachine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdfAijun Zhang
 
Artificial Intelligence & SEO Trends for 2024
Artificial Intelligence & SEO Trends for 2024Artificial Intelligence & SEO Trends for 2024
Artificial Intelligence & SEO Trends for 2024D Cloud Solutions
 

Dernier (20)

20150722 - AGV
20150722 - AGV20150722 - AGV
20150722 - AGV
 
AI Fame Rush Review – Virtual Influencer Creation In Just Minutes
AI Fame Rush Review – Virtual Influencer Creation In Just MinutesAI Fame Rush Review – Virtual Influencer Creation In Just Minutes
AI Fame Rush Review – Virtual Influencer Creation In Just Minutes
 
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDEADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
ADOPTING WEB 3 FOR YOUR BUSINESS: A STEP-BY-STEP GUIDE
 
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration WorkflowsIgniting Next Level Productivity with AI-Infused Data Integration Workflows
Igniting Next Level Productivity with AI-Infused Data Integration Workflows
 
UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6
 
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPAAnypoint Code Builder , Google Pub sub connector and MuleSoft RPA
Anypoint Code Builder , Google Pub sub connector and MuleSoft RPA
 
Building AI-Driven Apps Using Semantic Kernel.pptx
Building AI-Driven Apps Using Semantic Kernel.pptxBuilding AI-Driven Apps Using Semantic Kernel.pptx
Building AI-Driven Apps Using Semantic Kernel.pptx
 
Crea il tuo assistente AI con lo Stregatto (open source python framework)
Crea il tuo assistente AI con lo Stregatto (open source python framework)Crea il tuo assistente AI con lo Stregatto (open source python framework)
Crea il tuo assistente AI con lo Stregatto (open source python framework)
 
Introduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxIntroduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptx
 
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdfUiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
UiPath Solutions Management Preview - Northern CA Chapter - March 22.pdf
 
Connector Corner: Extending LLM automation use cases with UiPath GenAI connec...
Connector Corner: Extending LLM automation use cases with UiPath GenAI connec...Connector Corner: Extending LLM automation use cases with UiPath GenAI connec...
Connector Corner: Extending LLM automation use cases with UiPath GenAI connec...
 
UiPath Studio Web workshop series - Day 7
UiPath Studio Web workshop series - Day 7UiPath Studio Web workshop series - Day 7
UiPath Studio Web workshop series - Day 7
 
UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...
UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...
UWB Technology for Enhanced Indoor and Outdoor Positioning in Physiological M...
 
20230202 - Introduction to tis-py
20230202 - Introduction to tis-py20230202 - Introduction to tis-py
20230202 - Introduction to tis-py
 
NIST Cybersecurity Framework (CSF) 2.0 Workshop
NIST Cybersecurity Framework (CSF) 2.0 WorkshopNIST Cybersecurity Framework (CSF) 2.0 Workshop
NIST Cybersecurity Framework (CSF) 2.0 Workshop
 
AI You Can Trust - Ensuring Success with Data Integrity Webinar
AI You Can Trust - Ensuring Success with Data Integrity WebinarAI You Can Trust - Ensuring Success with Data Integrity Webinar
AI You Can Trust - Ensuring Success with Data Integrity Webinar
 
Cybersecurity Workshop #1.pptx
Cybersecurity Workshop #1.pptxCybersecurity Workshop #1.pptx
Cybersecurity Workshop #1.pptx
 
UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1UiPath Platform: The Backend Engine Powering Your Automation - Session 1
UiPath Platform: The Backend Engine Powering Your Automation - Session 1
 
Machine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdfMachine Learning Model Validation (Aijun Zhang 2024).pdf
Machine Learning Model Validation (Aijun Zhang 2024).pdf
 
Artificial Intelligence & SEO Trends for 2024
Artificial Intelligence & SEO Trends for 2024Artificial Intelligence & SEO Trends for 2024
Artificial Intelligence & SEO Trends for 2024
 

SAP HANA Developer Access Beta program - 7 steps towards your first HANA report

  • 1. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report Applies to: HANA 1.0 Summary So you receive an invitation to the SAP HANA Developer Access Beta program, but then what? Information on how to use HANA is floating around the net, but as always, you need to know where to look. I did all the research for you. The result is written in this document: 7 steps towards your first HANA report! For those of you not aware what the SAP HANA Developer Access Beta program is, there is an excellent FAQ on SDN which you can find here: http://wiki.sdn.sap.com/wiki/pages/viewpage.action?bc=true&pageId=257820641 Author(s): Ronald Konijnenburg Company: Logica Created on: 3 December 2011 Author Bio Ronald has been an SAP consultant for over 15 year. He is a Principal Business Intelligence Consultant at Logica, specialised in Consolidation, Planning, BW and BOBJ. He is currently involved in two Business Objects implementations and is SAP BI Practice lead for Logica. In that role he follows the latest SAP trends on Cloud, Mobility and HANA. SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 1
  • 2. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report Table of Contents Step 1 – Cloudshare .................................................................................................................................. 3 Step 2 – Getting big data ........................................................................................................................... 3 Step 3 – Create your table in HANA ........................................................................................................... 4 Step 4 – FTP and import your files into the HANA system .......................................................................... 5 Step 5 – Create an Analytic view for reporting ............................................................................................ 7 Step 6 – Using Explorer to report on your data ......................................................................................... 11 Step 7 – Using Excel to report on your data ............................................................................................. 14 SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 2
  • 3. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report HANA Developer Access Beta program A couple of days ago I was Lucky enough to receive an invitation to the SAP HANA Developer Access Beta program. For those of you not aware what that is, there is an excellent FAQ on SDN which you can find here: http://wiki.sdn.sap.com/wiki/pages/viewpage.action?bc=true&pageId=257820641 The following paragraphs will describe 7 steps towards your first HANA reporting by using SAP HANA Sandbox. Step 1 – Cloudshare In your invitation mail there is a link to cloudshare.com. Create a new account, log on to the desktop and follow the following YouTube video on how to set up your own HANA system: http://www.youtube.com/watch?v=9NKSYgt5eX4 A great tip is given on how to use remote desktop instead of using the web version which comes with Cloudshare. This is highly recommended as navigation is much easier in the remote desktop. Logon details for your RDP session are given on the Cloudshare page each time you activate the environment: Step 2 – Getting big data So you managed to set up a system and created a RDP session. Good job! Now to find some “big data”. In this article I’m using data which I downloaded from the guys over at Infochimps. I’ve used the following data sources which in total will give me about 20 million records. • AMEX Exchange Daily 1970-2010 Open, Close, High, Low and Volume • NASDAQ Exchange Daily 1970-2010 Open, Close, High, Low and Volume • NYSE Exchange Daily 1970-2010 Open, Close, High, Low and Volume The files contain stock exchange data. Great recipe for finding something interesting. You will be getting a bunch of separate csv files. Use the daily prices ones. For simplicity sake I have merged all files into three separate csv files. Good old DOS can help you with that by using the following command: copy *.csv importfile.csv Make sure to execute the command in the same directory your files are placed. Replace importfile.csv with something recognisable (like AMEX.csv, NASDAQ.csv, NYSE.csv). SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 3
  • 4. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report Step 3 – Create your table in HANA And now the fun begins! You need to create a table which holds all your data records. Remember those files I downloaded from Infochimps? The files have the following structure: That means I need to replicate that structure into my HANA table. You can create your table in the HANA studio using the modeler or by using SQL. Modeler: Please note that you should create the table in your own schema and use Column Store (to witness awesome speed later on). SQL: I prefer SQL because it’s faster. The following command will create your table: create column table "S0001432066"."NASDAQ"( "EXCHANGE" VARCHAR (10) not null, "STOCK" VARCHAR (10) not null, "DATE" DATE not null, "PRICEOPEN" DECIMAL (15,2), "PRICEHIGH" DECIMAL (15,2), "PRICELOW" DECIMAL (15,2), "PRICECLOSED" DECIMAL (15,2), "STOCKVOLUME" DECIMAL (15), "PRICECLOSEDADJ" DECIMAL (15,2), primary key ("EXCHANGE","STOCK","DATE")) SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 4
  • 5. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report Step 4 – FTP and import your files into the HANA system The guys over at SAP will make you do a little treasure hunt in order to find the user id and password for the FTP server. Go into you HANA system and execute the following SQL statement: Select * from SYSTEM.FTP_SERVER Et voila, a username and password (masqued for obvious reasons): Take note of what is mentioned on where to store the files. More specifically you should create a folder on the server equal to your SCN number (in my case S0001432066). Fire off your favourite FTP client (mine is FileZilla): SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 5
  • 6. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report Create a directory and store your files: Take note that next to my files containing the data there is a so called “ctl” file. These files are required in order to be able to load data in your created (NASAQ) table. The files have the following content: Import data into table S0001432066."NASDAQ" from 'AMEX.csv' record delimited by 'n' fields delimited by ',' optionally enclosed by '"' error log 'Text_Tables.err NASADAQ is the name of my created table, AMEX.csv the file I will load. If required, additional information can be found in this post: http://forums.sdn.sap.com/thread.jspa?threadID=2072330&tstart=0 SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 6
  • 7. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report Time to import your 20 million something records into HANA! Execute the following SQL statement: IMPORT FROM '/dropbox/S0001432066/AMEX.ctl' Note the name of the folder I created in step 4 (folder S0001432066), /dropbox/ is a prefix. After a while you will get the following result back: Statement 'IMPORT FROM '/dropbox/S0001432066/AMEX.ctl'' successfully executed in 7:22.046 minutes - Rows Affected: 0 Hang on I hear you thinking. 0 Rows? No it’s not actually. You can check by firing off the following SQL statement: select count(*) from NASDAQ That looks promising! Let’s check some more: We have data! Look at the log file: Fetched 30 row(s) in 15 ms Wow! Step 5 – Create an Analytic view for reporting SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 7
  • 8. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report First step create a package which will hold your view: Create a so-called Analytic View: Give it a name: Select your table: SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 8
  • 9. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report Drag your objects into the attributes and measures sections: Validate, save and activate your view. Well done! We can use this view in Explorer and Excel. Note that you can preview your data and even auto document if by using these buttons: Important! In case preview fails it is likely you have to “grant” your schema by executing this statement: grant select on schema s0001432066 to _SYS_REPO with grant option Replace s0001432066 with your own namespace ofcourse. SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 9
  • 10. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report As an extra step your could create an extra table which holds the stock names. If you follow the same procedure as for creating the table with the stock records, you can join your two tables and have texts together with the stock names. Sequence for this would be: 1. Create and load your text table 2. Create an attribute view 3. Link your analytic view together with your attribute view Result would be: Preview: SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 10
  • 11. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report Step 6 – Using Explorer to report on your data On your desktop a shortcut to Explorer can be found: Fire it off and be sure to enter the correct server which can be found in your invitation mail: Go to manage spaces : SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 11
  • 12. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report Select your view and press “New”: Give it a name: Put in your objects: And press ok! SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 12
  • 13. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report Index your data: Refresh your page and you have a new information space: Press it and start analysing! This one is for you Steve. Apple stock prices in the year he had to leave Apple: Be sure to select enough data to get a nice trend. SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 13
  • 14. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report Step 7 – Using Excel to report on your data There is also a possibility to use Excel pivot tables for your reporting needs. Fire off Excel and connect to your view Choose Other/advanced: Select the MDX connection: SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 14
  • 15. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report Enter server credentials (check your invitation mail if not known): Select your view: You now have your data in a pivot table format. Set some filters and analyse your data at great speed! SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 15
  • 16. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report Note that data retrieval is at great speed, but Excel makes it a bit sluggish in a RDP session. Many thanks for bearing with me till the end and good luck with this great opportunity to test drive HAHA! Related Content FAQ SAP HANA Developer Access (Beta) – HANA Sandbox System SAP HANA Developer Access (Beta) Forum: In-Memory Business Data Management SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 16
  • 17. SAP HANA Developer Access Beta program - 7 steps towards your first HANA report Copyright © Copyright 2011 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP AG. The information contained herein may be changed without prior notice. Some software products marketed by SAP AG and its distributors contain proprietary software components of other software vendors. Microsoft, Windows, Excel, Outlook, and PowerPoint are registered trademarks of Microsoft Corporation. IBM, DB2, DB2 Universal Database, System i, System i5, System p, System p5, System x, System z, System z10, System z9, z10, z9, iSeries, pSeries, xSeries, zSeries, eServer, z/VM, z/OS, i5/OS, S/390, OS/390, OS/400, AS/400, S/390 Parallel Enterprise Server, PowerVM, Power Architecture, POWER6+, POWER6, POWER5+, POWER5, POWER, OpenPower, PowerPC, BatchPipes, BladeCenter, System Storage, GPFS, HACMP, RETAIN, DB2 Connect, RACF, Redbooks, OS/2, Parallel Sysplex, MVS/ESA, AIX, Intelligent Miner, WebSphere, Netfinity, Tivoli and Informix are trademarks or registered trademarks of IBM Corporation. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries. Adobe, the Adobe logo, Acrobat, PostScript, and Reader are either trademarks or registered trademarks of Adobe Systems Incorporated in the United States and/or other countries. Oracle is a registered trademark of Oracle Corporation. UNIX, X/Open, OSF/1, and Motif are registered trademarks of the Open Group. Citrix, ICA, Program Neighborhood, MetaFrame, WinFrame, VideoFrame, and MultiWin are trademarks or registered trademarks of Citrix Systems, Inc. HTML, XML, XHTML and W3C are trademarks or registered trademarks of W3C®, World Wide Web Consortium, Massachusetts Institute of Technology. Java is a registered trademark of Oracle Corporation. JavaScript is a registered trademark of Oracle Corporation, used under license for technology invented and implemented by Netscape. SAP, R/3, SAP NetWeaver, Duet, PartnerEdge, ByDesign, SAP Business ByDesign, and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP AG in Germany and other countries. Business Objects and the Business Objects logo, BusinessObjects, Crystal Reports, Crystal Decisions, Web Intelligence, Xcelsius, and other Business Objects products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of Business Objects S.A. in the United States and in other countries. Business Objects is an SAP company. All other product and service names mentioned are the trademarks of their respective companies. Data contained in this document serves informational purposes only. National product specifications may vary. These materials are subject to change without notice. These materials are provided by SAP AG and its affiliated companies ("SAP Group") for informational purposes only, without representation or warranty of any kind, and SAP Group shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP Group products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. SAP COMMUNITY NETWORK SDN - sdn.sap.com | BPX - bpx.sap.com | BA - boc.sap.com | UAC - uac.sap.com © 2011 SAP AG 17