This blog is about how to transport a User-Role between two Tenants within one instance of SAP HANA 2.0 Express.

How to download & install SAP HANA Express is explained in this Youtube-Video

I am using the Package “Server only virtual machine”.

SAP HANA 2.0 Express Edition, Transport between Tenants

To have access to the VM Ware-Server via hostname hxehost, the local hosts-file C:windowssystem32driversetchosts needs to be adapted.

SAP HANA 2.0 Express Edition, Transport between Tenants
hxehost-src and hxehost-trg are two virtual hostnames which are used by SAP HANA’s Webdispatcher to forward the request to the Tenant Database.

Once the instance is registered in SAP HANA Studio the two Tenant Databases are created.

SAP HANA 2.0 Express Edition, Transport between Tenants

The statements are:

— Create Source Tenant Database
create database src system user password ***;

— Create Target Tenant Database
create database trg system user password ***;

— Configure Routing to Tenant Databases
— SRC
ALTER SYSTEM ALTER CONFIGURATION (‘xsengine.ini’, ‘database’, ‘SRC’)
    SET (‘public_urls’, ‘http_url’) = ‘https://hxehost-src:8090’ WITH RECONFIGURE;

— TRG
ALTER SYSTEM ALTER CONFIGURATION (‘xsengine.ini’, ‘database’, ‘TRG’)
   SET (‘public_urls’, ‘http_url’) = ‘https://hxehost-trg:8090’ WITH RECONFIGURE;

— Validate proper configuration of webdispatcher
select key, value, layer_name
   from sys.M_inifile_contents
     where file_name = ‘webdispatcher.ini’
    and section = ‘profile’
   and key like ‘wdisp/system%’

The output of the select-statement shows this:

SAP HANA 2.0 Express Edition, Transport between Tenants

That means, the Webdispatcher is contacted on port 8090. The hostname used is hxehost-src. So, it will forward the request to tenant SRC. This is described in detail in the Database Admin Guide, chapter “12.1.8.3 Configure HTTP(S) Access to Tenant Databases via SAP HANA XS Classic”.

For the database to be able to redirect the hosts internally, I have put the virtual hostnames also in the file /etc/hosts on the VM Ware host.

SAP HANA 2.0 Express Edition, Transport between Tenants

SAP HANA 2.0 Express Edition, Transport between Tenants

To be able for the Tenant Databases to logon to the XS Classic engine, a set of Roles is required which are not available on the Tenant Databases right away. To make them available, I use an initial logon to the XS Classic engine of the System Database. For that user SYSTEM of the System Database requires additional Roles.

SAP HANA 2.0 Express Edition, Transport between Tenants

After granting those roles, user SYSTEM is able to logon to the HANA Application Lifecycle Management on the System Database.

SAP HANA 2.0 Express Edition, Transport between Tenants

URL is: https://hxehost:8090/sap/hana/xs/lm/?page=HomeTab

After the login, the required Roles are available also on each Tenant Database. When you create a new tenant in the future and the roles are not available, login to the System Database first.

SAP HANA 2.0 Express Edition, Transport between Tenants

Please note: The virtual hostnames hxehost-src and hxehost-trg are not used for registration in SAP HANA Studio. For that I use hostname hxehost and the name of the Tenant Database.

Once the users of Tenant Database SRC and TRG have the required Roles assigned a login to the Tenant-Specific XS Classic engine should be possible.

SAP HANA 2.0 Express Edition, Transport between Tenants

URLs are:

https://hxehost-src:8090/sap/hana/xs/lm/index.html?page=HomeTab

https://hxehost-trg:8090/sap/hana/xs/lm/index.html?page=HomeTab

Now the transport route needs to be configured. Native transport on HANA works by pulling on the target from the source. That means, the transport route has to be configured on Tenant TRG.

Click on Transport -> https://hxehost-trg:8090/sap/hana/xs/lm/index.html?page=SystemsTab

SAP HANA 2.0 Express Edition, Transport between Tenants

Use Button Register to add the source system.

SAP HANA 2.0 Express Edition, Transport between Tenants
Pressing Next

SAP HANA 2.0 Express Edition, Transport between Tenants
Press Maintain Destination

SAP HANA 2.0 Express Edition, Transport between Tenants
I only maintain the logon data for tenant SRC on tab Authentication Details.

SAP HANA 2.0 Express Edition, Transport between Tenants
After pressing Save, I press the X on the upper right corner.

After pressing Finish on the next screen. The tenant database should be registered. A connection test was also successfully done.

SAP HANA 2.0 Express Edition, Transport between Tenants

Now we can create the role in the IDE on the source system using

URL: https://hxehost-src:8090/sap/hana/ide/editor/

SAP HANA 2.0 Express Edition, Transport between Tenants

First a package needs to be created. After that, I create Role R22_ADMIN. Creating a Package or Role is done via right mouseclick -> new -> …  After creation I added a simple Privilege.

To be able to transport the Package, it needs to be added to a Delivery Unit. To create a new Delivery UNIT, HALM of tenant SRC is used:

https://hxehost-src:8090/sap/hana/xs/lm/?page=DUManagementTab

SAP HANA 2.0 Express Edition, Transport between Tenants

I created Delivery Unit ROBINSON_R22 and added the Package that I created before.

Now, the transport can be done. It has to be started from the target system:

https://hxehost-trg:8090/sap/hana/xs/lm/?page=TransportTab

SAP HANA 2.0 Express Edition, Transport between Tenants

Push button Create

SAP HANA 2.0 Express Edition, Transport between Tenants

After pressing Create, the transport is created and is ready to be started.

SAP HANA 2.0 Express Edition, Transport between Tenants
Mark the transport and press Start Transport

SAP HANA 2.0 Express Edition, Transport between Tenants

SAP HANA 2.0 Express Edition, Transport between Tenants
Success!

Now we can check the new Role in the target system.

SAP HANA 2.0 Express Edition, Transport between Tenants

The role is active in the target system and can be assigned to a user.

That’s it, thank you very much, please like and subscribe Feel free to leave a comment..

New NetWeaver Information at SAP.com

Very Helpfull

User Rating: Be the first one !