BW on SAP HANA Cookbook



BW on SAP HANA Cookbook

This cookbook provides recipes for success when migrating your business warehouse (BW) to the SAP HANA® database. It contains an overview of the SAP HANA platform, how it can impact your business information, hands-on step-by-step guidance through the data migration process, a guide to day-to-day system operations, and an introduction to the tools and techniques needed to get the most from your data models.

An introduction to core concepts of SAP HANA in-memory computing, and how these concepts can help your SAP NetWeaver 7.3 Business Warehouse (BW) run better. We also consider some of the technical implications of upgrading your current data warehouse to version 7.3, and of migrating it to the SAP HANA database. Lastly, we cover what you might expect during the process of transitioning to this new technology.
Deploying BW on HANA Step-by-step migration
Starting with SAP NetWeaver 7.3 SPS05 and SAP HANA SPS03, you can replace the relational database underlying your SAP Business Warehouse (BW) system with the SAP HANA database.
This procedure involves migration of your existing SAP NetWeaver Business Warehouse data to the SAP HANA database, with no disruption to existing Business Warehouse content or processes. After data migration, BW simply uses HANA as the underlying database.
Operating HANA HANA administration and BW
Once you have the SAP HANA appliance software up and running, you will have to perform the same kinds of system administration tasks required of any system. SAP offers tools designed and developed especially for the HANA platform. You will need to download, install, learn and use these to support this addition to your system landscape.
Here we review how you license, configure, monitor and troubleshoot the SAP HANA appliance. We also cover updating and patching software, backup and restore, and user authentication, as well as system expansion and availability.
Modeling BW Data Optimizing your data models
Your current SAP Business Warehouse data models need not change to run on SAP HANA. But, to bring out the best in BW on SAP HANA, you will want to work with your data models to take full advantage of the HANA appliance software.
This section covers two important aspects of migrating your data to BW on SAP HANA:
  • Changes to your current BW models that will get the most out of the SAP HANA database
  • Basic principles and guidance for the creation of new HANA data models 

1540608 - SAP system does not start after applying SAP kernel

Symptom
  • Can't start after kernel upgrade kernel
  • Effected kernels 46DEX2; 640EX2; 701; 710 and 720
  • Cant start SAP after reboot
  • In Windows event viewer Microsoft.VC80.CRT and SideBySide errors

Reproducing the Issue
If you are running an SAP system with kernel 7.01 and higher and you downloaded and applied a new kernel patch from SAP Service Marketplace, you cannot start your SAP system without the Microsoft security patch.
The same applies for SAP systems older than 7.01 that run with an EX2 kernel.

Cause
Cause is missing C runtime Microsoft Dll's needed by SAP kernel.

Resolution
Check if the MS C-runtime with the so called "ATL" patch is installed on your system:
  • Open a command-prompt:
  • Go to the c:\windows\winsxs folder.
  • Type   dir  *4053*
  • You should get an output like this:
 Directory of C:\Windows\winsxs x86_microsoft.vc80.atl_1fc8b3b9a1e18e3b_8.0.50727.4053_none_d1c7
4053 is the patchlevel of the ATL patch from Microsoft.
If you don't get this output you can find the ATL package here: ATL Link. Download and install the correct patch for your platform.

Keywords
  • Can't start system
  • The system cannot execute the specified program.
  • Microsoft.VC80.CRT errors
  • Windows event viewer error SideBySide.


Header Data
Released On16.02.2011 20:39:53
Release StatusReleased to Customer
ComponentBC-OP-NT Windows
Other Components
BC-OP-NT-CLU Please use BC-OP-NT
PriorityNormal
CategoryProblem

Product
Product
Product Version
SAP NetWeaver
All versions

References
This document refers to:
CSS SAP Notes
684106Microsoft runtime DLLs

Execute OS Commands from SAP GUI

The report RSBDCOS0 enable you to execute operating system commands from the SAP level. You can directly execute the command without log in to the operating system.
1. Execute SE38 and put RSBDCOS0 in the program field. Click on execute.
2. In this example, i run command to ping www.google.com. As you can see, the result is the same like when you are running on operating system level. You can try to run other commands. Just make sure to check current operating system running so that you are executing the right command.

Create New Data Class in SAP (Oracle)

1. Look at the DDART table. You may see a list of all the active, created data classes in your SAP system in the table.

2. Ensure the tablespace are known to the SAP system.

3. Log into your SQLplus account. Insert a new value into the DDART database to create a new data class.
SQL> select * from SAPSR3.DDART;
SQL> desc SAPSR3.DDART;
 Name                                      Null?    Type
 ----------------------------------------- -------- ----------------------------
 TABART                                    NOT NULL VARCHAR2(15)
 DDCLASS                                   NOT NULL VARCHAR2(9)
SQL> insert into SAPSR3.DDART (TABART, DDCLASS) values
('DATA-CLASS-NAME', 'CATEGORY');
SQL> commit;
4. You must now connect the newly formed data class to the memory area (tablespace). You'll need to update the tables TAORA and IAORA with the new data class. SQLplus can alternatively be used to complete these processes.