SlideShare a Scribd company logo
1 of 24
Download to read offline
Topics What's New
Community Groups Answers Blogs Events Programs Resources Explore SAP
Ask a Question Write a Blog Post
Technical Articles
Showkath Ali Naseem
January 18, 2023 | 8 minute read
[BTP HANA Cloud Database] : How to access HANA Cloud
Database & HDI Container in BTP
 1  4  370
In this blogpost . I would like to provide guidance on how to access HANA Cloud Database & HDI Container in your BTP.
If your BTP account already has HANA Cloud setup & your application (space) in sub-account already has Hana HDI container then
you can directly jump to section“Get Started with the SAP HANA Database Explorer” in this blog post”.
Introduction
Follow
 Like
 RSS Feed
Login
SAP HANA Cloud is a SAP HANA Cloud is a database as a service (DBaaS) , provides a single place to access, store, and process all
enterprise data in real time with high availability .You can develop smart applications with embedded machine learning , analytics
(advanced data processing capabilities , insights ) ,document store . SAP HANA Cloud provides all of the advanced SAP HANA
technologies for multi-model data processing ,store and access data in-memory and column-based [ it Process mission-critical
data at proven in-memory speed] or on disk . By combining in-memory storage with columnar store, data operations are performed
faster than in a traditional database with a disk-based storage. Using SAP HANA Cloud, you can set up and manage SAP HANA
databases and bind them to applications running on SAP Business Technology Platform (SAP BTP) or elsewhere. You can benefit
from cloud qualities such as availability, security, automatic software updates, elasticity, and low total cost of ownership by using
SAP HANA Cloud either as a stand-alone solution or as an extension to your existing on-premise environment.
Prerequisites
If you already have an SAP HANA Cloud service in your BTP then skip this step i.e. continue with Use your BTP Existing SAP HANA
Cloud service instance and go to section“Get Started with the SAP HANA Database Explorer” in this blog post.
If you need to create an SAP HANA Cloud service instance first → continue with Create an SAP HANA Cloud service instance.
1) Create SAP HANA Cloud service in your BTP
SAP HANA Cloud instances are not created automatically for any type of BTP account. Therefore, you will have to create an SAP
HANA Cloud service instance first, if you don’t have one yet.
How to create SAP HANA Cloud instance in the trial BTP environment.
Refer below document ,
How to Get an SAP HANA Cloud Instance for SAP Business Technology Platform, Cloud Foundry environment to learn.
On BTP trial, your SAP HANA Cloud instance will be automatically
stopped overnight, according to the server region time zone.
That means you need to restart your instance every day
before you start working with your trial.
Once you complete the tutorial steps in Provision an Instance of SAP HANA Cloud, SAP HANA Database
1. Set UpYour SAP HANA Cloud, SAP HANA Database (free tier model or trial) and Understand the Basics
2. Take Your First Steps with SAP HANA Cloud, SAP HANA Database
As an optional step if you are completely new to the SAP HANA Cloud environment, you might want to consider also going through
this tutorial: Tools to Manage and Access the SAP HANA Cloud, SAP HANA Database in order to familiarize yourself with the various
tools that can be used to manage and develop with SAP HANA Cloud.
2) HDI
After provisioning a HANA Cloud DB next step is to create an instance of HANA Schema and HDI Service. This service generates a
schema (if you use schema plan) which allows your Spring Boot application to create its database artifacts. There are other plans
for different use-cases. For example, if you follow the SAP CAP (SAP Cloud Application Programming Model) is a framework
developed by SAP to build cloud applications, services based on either JavaScript/Node.js or Java (Spring Boot). Core Data
Services (CDS), which in turn generated into a database objects (tables , views..) & with only few lines of code you have a Web API
(OData/REST) which offers functionality to create, read, Query, update ,delete (CRUD+ Q) transactions …In SAP CAP, hdi-
shared plan is used, which deploys the database artifacts from your CDS files.All these database artifacts are clubbed into a
wrapper called Schema, staged, built and then deployed into SAP HANA Cloud Database in the form of a database container.
In an SAP HANA Cloud instance, the SAP HDI is enabled by default.
So the SAP HANA Deployment Infrastructure (HDI) is a service layer of the SAP HANA database and helps create runtime database
objects [e.g., Tables, Views, Procedures, etc] from design-time artifacts like CDS, JPA Entities.
HDI creates a new HANA repository (with both design time and runtime management) per project. Each Container gets its own
unique technical user to control database artifacts.
You have two options to create HDI Instance. Manual or Automatic (program)
1) Manually :
You can use BTP Cockpit : Set Up a HANA Schema or an HDI Container
or Commands (CLI)
create-service hana-cloud-trial hdi-shared sap-demo-hdi-db
2) Programming : You can use SAP CAP Framework or Java or NodeJS or Python
- name: sap-demo-hdi-db
type: com.sap.xs.hdi-container
parameters:
service: hana-cloud-trial # 'hana-cloud-trial' 'hanatrial' on BTP trial landscapes
#for BTP enterprise account please use 'hana'
Fo your reference :
HDI with SAP HANA Cloud | Video Tutorial
Tutorials :
Develop a CAP Node.js App Using SAP Business Application Studio
Build a Business Application Using CAP for Java
Sample apps:
https:/
/github.com/SAP-samples/cloud-cap-samples
https:/
/github.com/SAP-samples/cloud-cap-samples-java
https:/
/github.com/SAP-samples/cap-sflight
Official Document :
https:/
/cap.cloud.sap
Developing Java in the Cloud Foundry Environment
Developing Node.js in the Cloud Foundry Environment
Developing Python in the Cloud Foundry Environment
In case you’ve a question, find a bug, or otherwise need support, use our community
Now , it is time to learn how to access HANA Cloud Database in your BTP Cockpit.
Get Started with the SAP HANA Database Explorer Cockpit
SAP HANA Database Explorer is a tool used to interact with SAP HANA databases, as well as use the SAP Graph and Spatial
engines. In the HANA Database Explorer, you can also access the SQL console.The SAP HANA database explorer can be
opened from multiple locations as shown below:
Option1: Access Cockpit using BTP HDI Instances Technical (Container
Runtime(RT)/DT Credentials)
From the SAP Business Technology Platform (SAP BTP) Cockpit
In SAP BTP cockpit, enter your global account, subaccount, and space.
On the menu on left-side of the screen, click on Instance
Choose your HDI instance as shown below
Click on View Credentials
Note down or Download Credentials.
In your BTP Space Left-side of the screen, click on SAP HANA Cloud as shown below .
Click on Open DaseBase Explorer Cockpit.
Note : Instead of creating HANA Cloud in your BTP Space ,If your BTP Admin has setup central HANA cloud for your sub-account
(for all spaces) then ask to share central “BTP Hana Cloud Database Explorer ” URL.
Click on Login Enter Database credentials
If Login success then you can view user screen as below.
Click on SQLConsole.
This open HANA SQLCockpit & then you can choose your HDI schema as shown below.
Schema ID is your BTP Space HDI instance, choose accordingly .
Once you access Schema then you can view tables , views , procedures .. etc
One additional tip : If you have other technical credentials ,you can switch user by right click on Schema & login with different user ,
enter technical user credentials ..
You can further refer tutorials How to Create Database Objects with SAP HANA Database Explorer .
Option2: Access BTP HDI Container using SAP HANA Database Explorer
If you know SAP HANA Database Explorer Cockpit & have access to BTP Space then follow below steps.
Click on + Symbol.
Choose HDI Container in instance Type.
Choose HDI instance.
You can enter Display name to visible in SAP HANA Database Explorer Cockpit.
Option3: Connect to HANA Database using SAP HANA Database Explorer
You can provide the host, port, user name, password from HDI instance of BTP Space
Note :
It is good to know about which Credentials to use ,so few notes for you.
1. If you have access to BTP & HANA Cloud instance then ,the HANA Database Explorer will open in a new browser tab and
automatically select the database entry for your project’s HDI container.
2. Note that the credentials can be saved so they do not need to be re-entered if they are entered into the SAP HANA cockpit.
3. As best practise you should avoid DBADMIN Credentials usage.Also be aware that if DBADMIN User locked ( I mean , if
someone tried with wrong password ,it is not easy to Unlock /Reset Password, We need to reach to HANA Cloud ,it will take
time as there is no self-service as of now to rest DBADMIN User so better to avoid Locking of DBADMIN User )
4. Recommendation
It is highly recommended that you do not use DBADMIN for day-to-day activities in production environments.
Instead, use it to create database users with the minimum privilege set required for their duties (for example, user administration,
system administration). Then deactivate DBADMIN. You may temporarily reactivate the DBADMIN user for emergency or
bootstrapping tasks.
You can also create alternative ADMIN User ,follow official guide for HANA Database Users.
Create Users and Manage Roles and Privileges
User Management with the SAP HANA Database Administrator DBADMIN
Documentation
SAP HANA Cloud Guide
SAP HANA Cloud community
SAP HANA Cloud Onboarding Guide Module 01 – Fundamentals
Security Administration and User Management
Thank you for reading this blog post. If you find this material useful then please leave your feedback in the comments section below.
Kindly let me know if you need any further assistance in comments section below.
Also ‘Like’ ,‘Share’ , ‘Follow’ me to get new updates.
Alert Moderator
View more... 
Assigned Tags
SAP BTP, Cloud Foundry environment | SAP Business Technology Platform | SAP Cloud Application Programming Model |
SAP HANA Cloud, SAP HANA database | SAP HANA service for SAP BTP | #hdi | Access HANA Database
Similar Blog Posts
Getting Started with SAP HANA Cloud | Video Tutorials
By Denys van Kempen Mar 29, 2020
Consume SAP HANA Cloud HDI containers with HAA and eSAC/SAC
By Piotr T
esny Mar 19, 2022
SAP Business Technology Platform Extension Generators | Hands-on Video
Tutorials
By Denys van Kempen May 31, 2021
Related Questions
CAPM on BTP Points to HANA DB On premise
By Sreehari V Pillai Nov 19, 2022
How can I connect a BTP app and SAP HANA Cloud instance in different BTP
Global Accounts?
By Mustafa Bensan Apr 21, 2022
Cloud Connector cannot connect to SAP BTP HANA server instance
By Manoj Prasanna Mar 31, 2021


1 Comment
You must be Logged on to comment or reply to a post.
Find us on
Privacy T
erms of Use
Legal Disclosure Copyright
T
rademark Cookie Preferences
Newsletter Support
Diksha Srivastava
January 19, 2023 at 1:51 pm
I was looking for this.
|
Like 0 Share

More Related Content

What's hot

Migrating Data and Databases to Azure
Migrating Data and Databases to AzureMigrating Data and Databases to Azure
Migrating Data and Databases to AzureKaren Lopez
 
Azure Arc Overview from Microsoft
Azure Arc Overview from MicrosoftAzure Arc Overview from Microsoft
Azure Arc Overview from MicrosoftDavid J Rosenthal
 
Snowflake free trial_lab_guide
Snowflake free trial_lab_guideSnowflake free trial_lab_guide
Snowflake free trial_lab_guideslidedown1
 
Sap fiori-ux-architecture-for-s4h
Sap fiori-ux-architecture-for-s4hSap fiori-ux-architecture-for-s4h
Sap fiori-ux-architecture-for-s4hAkhilendra Singh
 
Intro to Azure Data Factory v1
Intro to Azure Data Factory v1Intro to Azure Data Factory v1
Intro to Azure Data Factory v1Eric Bragas
 
An overview of snowflake
An overview of snowflakeAn overview of snowflake
An overview of snowflakeSivakumar Ramar
 
Azure Data Factory Data Flow
Azure Data Factory Data FlowAzure Data Factory Data Flow
Azure Data Factory Data FlowMark Kromer
 
Einstein recommendations how it works
Einstein recommendations  how it works  Einstein recommendations  how it works
Einstein recommendations how it works Cloud Analogy
 
Deep Dive on AWS Migration Hub - AWS Online Tech Talks
Deep Dive on AWS Migration Hub - AWS Online Tech TalksDeep Dive on AWS Migration Hub - AWS Online Tech Talks
Deep Dive on AWS Migration Hub - AWS Online Tech TalksAmazon Web Services
 
HTTP Session Replication with Oracle Coherence, GlassFish, WebLogic
HTTP Session Replication with Oracle Coherence, GlassFish, WebLogicHTTP Session Replication with Oracle Coherence, GlassFish, WebLogic
HTTP Session Replication with Oracle Coherence, GlassFish, WebLogicOracle
 
Azure Data Factory presentation with links
Azure Data Factory presentation with linksAzure Data Factory presentation with links
Azure Data Factory presentation with linksChris Testa-O'Neill
 
Flow builder pros and cons
Flow builder pros and consFlow builder pros and cons
Flow builder pros and consMelissa Shook
 
A Step By Step Guide To Put DB2 On Amazon Cloud
A Step By Step Guide To Put DB2 On Amazon CloudA Step By Step Guide To Put DB2 On Amazon Cloud
A Step By Step Guide To Put DB2 On Amazon CloudDeepak Rao
 

What's hot (20)

Migrating Data and Databases to Azure
Migrating Data and Databases to AzureMigrating Data and Databases to Azure
Migrating Data and Databases to Azure
 
Azure Arc Overview from Microsoft
Azure Arc Overview from MicrosoftAzure Arc Overview from Microsoft
Azure Arc Overview from Microsoft
 
Snowflake free trial_lab_guide
Snowflake free trial_lab_guideSnowflake free trial_lab_guide
Snowflake free trial_lab_guide
 
Azure Data Factory v2
Azure Data Factory v2Azure Data Factory v2
Azure Data Factory v2
 
Sap fiori-ux-architecture-for-s4h
Sap fiori-ux-architecture-for-s4hSap fiori-ux-architecture-for-s4h
Sap fiori-ux-architecture-for-s4h
 
Intro to Azure Data Factory v1
Intro to Azure Data Factory v1Intro to Azure Data Factory v1
Intro to Azure Data Factory v1
 
An overview of snowflake
An overview of snowflakeAn overview of snowflake
An overview of snowflake
 
Azure Data Factory Data Flow
Azure Data Factory Data FlowAzure Data Factory Data Flow
Azure Data Factory Data Flow
 
Einstein recommendations how it works
Einstein recommendations  how it works  Einstein recommendations  how it works
Einstein recommendations how it works
 
Azure Cosmos DB
Azure Cosmos DBAzure Cosmos DB
Azure Cosmos DB
 
Deep Dive on AWS Migration Hub - AWS Online Tech Talks
Deep Dive on AWS Migration Hub - AWS Online Tech TalksDeep Dive on AWS Migration Hub - AWS Online Tech Talks
Deep Dive on AWS Migration Hub - AWS Online Tech Talks
 
Azure storage
Azure storageAzure storage
Azure storage
 
HTTP Session Replication with Oracle Coherence, GlassFish, WebLogic
HTTP Session Replication with Oracle Coherence, GlassFish, WebLogicHTTP Session Replication with Oracle Coherence, GlassFish, WebLogic
HTTP Session Replication with Oracle Coherence, GlassFish, WebLogic
 
Getting Started with Amazon EC2
Getting Started with Amazon EC2Getting Started with Amazon EC2
Getting Started with Amazon EC2
 
Introduction to AWS Glue
Introduction to AWS GlueIntroduction to AWS Glue
Introduction to AWS Glue
 
Azure Data Factory presentation with links
Azure Data Factory presentation with linksAzure Data Factory presentation with links
Azure Data Factory presentation with links
 
Azure web apps
Azure web appsAzure web apps
Azure web apps
 
Flow builder pros and cons
Flow builder pros and consFlow builder pros and cons
Flow builder pros and cons
 
Laravel Eloquent ORM
Laravel Eloquent ORMLaravel Eloquent ORM
Laravel Eloquent ORM
 
A Step By Step Guide To Put DB2 On Amazon Cloud
A Step By Step Guide To Put DB2 On Amazon CloudA Step By Step Guide To Put DB2 On Amazon Cloud
A Step By Step Guide To Put DB2 On Amazon Cloud
 

Similar to [BTP HANA Cloud Database] _ How to access HANA Cloud Database & HDI Container in BTP _ SAP Blogs.pdf

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
 
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report
SAP HANA Developer Access Beta program - 7 steps towards your first HANA reportSAP HANA Developer Access Beta program - 7 steps towards your first HANA report
SAP HANA Developer Access Beta program - 7 steps towards your first HANA reportRonald Konijnenburg
 
SAP Hana Cloud Platform - Development Landscape Planning
SAP Hana Cloud Platform - Development Landscape PlanningSAP Hana Cloud Platform - Development Landscape Planning
SAP Hana Cloud Platform - Development Landscape PlanningNagesh Caparthy
 
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
 
SAP HANA SPS10- Multitenant Database Containers
SAP HANA SPS10- Multitenant Database ContainersSAP HANA SPS10- Multitenant Database Containers
SAP HANA SPS10- Multitenant Database ContainersSAP Technology
 
Hortonworks Setup & Configuration on Azure
Hortonworks Setup & Configuration on AzureHortonworks Setup & Configuration on Azure
Hortonworks Setup & Configuration on AzureAnita Luthra
 
Connect dashboard designer
Connect dashboard designerConnect dashboard designer
Connect dashboard designerDucat
 
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 TechEd 2013: CD105: Extending SuccessFactors EmployeeCentral with apps on...
SAP TechEd 2013: CD105: Extending SuccessFactors EmployeeCentral with apps on...SAP TechEd 2013: CD105: Extending SuccessFactors EmployeeCentral with apps on...
SAP TechEd 2013: CD105: Extending SuccessFactors EmployeeCentral with apps on...SAP HANA Cloud Platform
 
Extending SAP SuccessFactors in the Cloud and how not to do it
Extending SAP SuccessFactors in the Cloud and how not to do itExtending SAP SuccessFactors in the Cloud and how not to do it
Extending SAP SuccessFactors in the Cloud and how not to do itChris Paine
 
Hadoop integration with SAP HANA
Hadoop integration with SAP HANAHadoop integration with SAP HANA
Hadoop integration with SAP HANADebajit Banerjee
 
What is Sap HANA Convista Consulting Asia.pdf
What is Sap HANA Convista Consulting Asia.pdfWhat is Sap HANA Convista Consulting Asia.pdf
What is Sap HANA Convista Consulting Asia.pdfankeetkumar4
 
SAP HANA Cloud Platform Community BOF @ Devoxx 2013
SAP HANA Cloud Platform Community BOF @ Devoxx 2013SAP HANA Cloud Platform Community BOF @ Devoxx 2013
SAP HANA Cloud Platform Community BOF @ Devoxx 2013SAP HANA Cloud Platform
 
Instantly Deploy and Use SAP Solutions in The Cloud – within minutes
Instantly Deploy and Use SAP Solutions in The Cloud – within minutesInstantly Deploy and Use SAP Solutions in The Cloud – within minutes
Instantly Deploy and Use SAP Solutions in The Cloud – within minutesINDUSCommunity
 
#sitROME 2015 - SAP HANA project experiences
#sitROME 2015 - SAP HANA project experiences#sitROME 2015 - SAP HANA project experiences
#sitROME 2015 - SAP HANA project experiencesSbgMartin
 

Similar to [BTP HANA Cloud Database] _ How to access HANA Cloud Database & HDI Container in BTP _ SAP Blogs.pdf (20)

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
 
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report
SAP HANA Developer Access Beta program - 7 steps towards your first HANA reportSAP HANA Developer Access Beta program - 7 steps towards your first HANA report
SAP HANA Developer Access Beta program - 7 steps towards your first HANA report
 
SAP Hana Cloud Platform - Development Landscape Planning
SAP Hana Cloud Platform - Development Landscape PlanningSAP Hana Cloud Platform - Development Landscape Planning
SAP Hana Cloud Platform - Development Landscape Planning
 
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)
 
SAP HANA SPS10- Multitenant Database Containers
SAP HANA SPS10- Multitenant Database ContainersSAP HANA SPS10- Multitenant Database Containers
SAP HANA SPS10- Multitenant Database Containers
 
Hortonworks Setup & Configuration on Azure
Hortonworks Setup & Configuration on AzureHortonworks Setup & Configuration on Azure
Hortonworks Setup & Configuration on Azure
 
Connect dashboard designer
Connect dashboard designerConnect dashboard designer
Connect dashboard designer
 
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 TechEd 2013: CD105: Extending SuccessFactors EmployeeCentral with apps on...
SAP TechEd 2013: CD105: Extending SuccessFactors EmployeeCentral with apps on...SAP TechEd 2013: CD105: Extending SuccessFactors EmployeeCentral with apps on...
SAP TechEd 2013: CD105: Extending SuccessFactors EmployeeCentral with apps on...
 
Cool features 7.4
Cool features 7.4Cool features 7.4
Cool features 7.4
 
Extending SAP SuccessFactors in the Cloud and how not to do it
Extending SAP SuccessFactors in the Cloud and how not to do itExtending SAP SuccessFactors in the Cloud and how not to do it
Extending SAP SuccessFactors in the Cloud and how not to do it
 
Hadoop integration with SAP HANA
Hadoop integration with SAP HANAHadoop integration with SAP HANA
Hadoop integration with SAP HANA
 
What is Sap HANA Convista Consulting Asia.pdf
What is Sap HANA Convista Consulting Asia.pdfWhat is Sap HANA Convista Consulting Asia.pdf
What is Sap HANA Convista Consulting Asia.pdf
 
SAP HANA Cloud Platform Community BOF @ Devoxx 2013
SAP HANA Cloud Platform Community BOF @ Devoxx 2013SAP HANA Cloud Platform Community BOF @ Devoxx 2013
SAP HANA Cloud Platform Community BOF @ Devoxx 2013
 
SAP HANA Cloud Platform Expert Session - SAP HANA Cloud Platform Analytics
SAP HANA Cloud Platform Expert Session - SAP HANA Cloud Platform AnalyticsSAP HANA Cloud Platform Expert Session - SAP HANA Cloud Platform Analytics
SAP HANA Cloud Platform Expert Session - SAP HANA Cloud Platform Analytics
 
SAP HANA
SAP HANASAP HANA
SAP HANA
 
Instantly Deploy and Use SAP Solutions in The Cloud – within minutes
Instantly Deploy and Use SAP Solutions in The Cloud – within minutesInstantly Deploy and Use SAP Solutions in The Cloud – within minutes
Instantly Deploy and Use SAP Solutions in The Cloud – within minutes
 
Hana faq
Hana faqHana faq
Hana faq
 
Uotm workshop
Uotm workshopUotm workshop
Uotm workshop
 
#sitROME 2015 - SAP HANA project experiences
#sitROME 2015 - SAP HANA project experiences#sitROME 2015 - SAP HANA project experiences
#sitROME 2015 - SAP HANA project experiences
 

More from RUPAK BHATTACHARJEE

Grade_6-8_Newsletter_27th_-8th_March.pdf
Grade_6-8_Newsletter_27th_-8th_March.pdfGrade_6-8_Newsletter_27th_-8th_March.pdf
Grade_6-8_Newsletter_27th_-8th_March.pdfRUPAK BHATTACHARJEE
 
MKTG12_LambHairMcDaniel_Ch15_updated_SH.pptx
MKTG12_LambHairMcDaniel_Ch15_updated_SH.pptxMKTG12_LambHairMcDaniel_Ch15_updated_SH.pptx
MKTG12_LambHairMcDaniel_Ch15_updated_SH.pptxRUPAK BHATTACHARJEE
 
8 proven ways to develop your leadership skills with Tony.pdf
8 proven ways to develop your leadership skills with Tony.pdf8 proven ways to develop your leadership skills with Tony.pdf
8 proven ways to develop your leadership skills with Tony.pdfRUPAK BHATTACHARJEE
 
Tool overview – how to capture – how to create basic workflow .pptx
Tool overview – how to capture – how to create basic workflow .pptxTool overview – how to capture – how to create basic workflow .pptx
Tool overview – how to capture – how to create basic workflow .pptxRUPAK BHATTACHARJEE
 

More from RUPAK BHATTACHARJEE (9)

Grade_6-8_Newsletter_27th_-8th_March.pdf
Grade_6-8_Newsletter_27th_-8th_March.pdfGrade_6-8_Newsletter_27th_-8th_March.pdf
Grade_6-8_Newsletter_27th_-8th_March.pdf
 
MKTG12_LambHairMcDaniel_Ch15_updated_SH.pptx
MKTG12_LambHairMcDaniel_Ch15_updated_SH.pptxMKTG12_LambHairMcDaniel_Ch15_updated_SH.pptx
MKTG12_LambHairMcDaniel_Ch15_updated_SH.pptx
 
8 proven ways to develop your leadership skills with Tony.pdf
8 proven ways to develop your leadership skills with Tony.pdf8 proven ways to develop your leadership skills with Tony.pdf
8 proven ways to develop your leadership skills with Tony.pdf
 
Rupak V-B12.pdf
Rupak V-B12.pdfRupak V-B12.pdf
Rupak V-B12.pdf
 
Tool overview – how to capture – how to create basic workflow .pptx
Tool overview – how to capture – how to create basic workflow .pptxTool overview – how to capture – how to create basic workflow .pptx
Tool overview – how to capture – how to create basic workflow .pptx
 
CPM155_154.pptx
CPM155_154.pptxCPM155_154.pptx
CPM155_154.pptx
 
INFORMATION MODELS.pptx
INFORMATION MODELS.pptxINFORMATION MODELS.pptx
INFORMATION MODELS.pptx
 
ADVANCED MODELLING.pptx
ADVANCED MODELLING.pptxADVANCED MODELLING.pptx
ADVANCED MODELLING.pptx
 
Anand gupta
Anand guptaAnand gupta
Anand gupta
 

Recently uploaded

John Deere 300 3029 4039 4045 6059 6068 Engine Operation and Service Manual
John Deere 300 3029 4039 4045 6059 6068 Engine Operation and Service ManualJohn Deere 300 3029 4039 4045 6059 6068 Engine Operation and Service Manual
John Deere 300 3029 4039 4045 6059 6068 Engine Operation and Service ManualExcavator
 
UNIT-II-ENGINE AUXILIARY SYSTEMS &TURBOCHARGER
UNIT-II-ENGINE AUXILIARY SYSTEMS &TURBOCHARGERUNIT-II-ENGINE AUXILIARY SYSTEMS &TURBOCHARGER
UNIT-II-ENGINE AUXILIARY SYSTEMS &TURBOCHARGERDineshKumar4165
 
GREEN VEHICLES the kids picture show 2024
GREEN VEHICLES the kids picture show 2024GREEN VEHICLES the kids picture show 2024
GREEN VEHICLES the kids picture show 2024AHOhOops1
 
原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证
原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证
原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证jjrehjwj11gg
 
办理(PITT毕业证书)美国匹兹堡大学毕业证成绩单原版一比一
办理(PITT毕业证书)美国匹兹堡大学毕业证成绩单原版一比一办理(PITT毕业证书)美国匹兹堡大学毕业证成绩单原版一比一
办理(PITT毕业证书)美国匹兹堡大学毕业证成绩单原版一比一F La
 
(8264348440) 🔝 Call Girls In Shaheen Bagh 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Shaheen Bagh 🔝 Delhi NCR(8264348440) 🔝 Call Girls In Shaheen Bagh 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Shaheen Bagh 🔝 Delhi NCRsoniya singh
 
VIP Kolkata Call Girl Kasba 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kasba 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kasba 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kasba 👉 8250192130 Available With Roomdivyansh0kumar0
 
Independent Andheri Call Girls 9833363713
Independent Andheri Call Girls 9833363713Independent Andheri Call Girls 9833363713
Independent Andheri Call Girls 9833363713Komal Khan
 
定制昆士兰大学毕业证(本硕)UQ学位证书原版一比一
定制昆士兰大学毕业证(本硕)UQ学位证书原版一比一定制昆士兰大学毕业证(本硕)UQ学位证书原版一比一
定制昆士兰大学毕业证(本硕)UQ学位证书原版一比一fjjhfuubb
 
FULL ENJOY - 9953040155 Call Girls in Sector 61 | Noida
FULL ENJOY - 9953040155 Call Girls in Sector 61 | NoidaFULL ENJOY - 9953040155 Call Girls in Sector 61 | Noida
FULL ENJOY - 9953040155 Call Girls in Sector 61 | NoidaMalviyaNagarCallGirl
 
Digamma - CertiCon Team Skills and Qualifications
Digamma - CertiCon Team Skills and QualificationsDigamma - CertiCon Team Skills and Qualifications
Digamma - CertiCon Team Skills and QualificationsMihajloManjak
 
(办理学位证)(Toledo毕业证)托莱多大学毕业证成绩单修改留信学历认证原版一模一样
(办理学位证)(Toledo毕业证)托莱多大学毕业证成绩单修改留信学历认证原版一模一样(办理学位证)(Toledo毕业证)托莱多大学毕业证成绩单修改留信学历认证原版一模一样
(办理学位证)(Toledo毕业证)托莱多大学毕业证成绩单修改留信学历认证原版一模一样gfghbihg
 
Digamma / CertiCon Company Presentation
Digamma / CertiCon Company  PresentationDigamma / CertiCon Company  Presentation
Digamma / CertiCon Company PresentationMihajloManjak
 
UNIT-V-ELECTRIC AND HYBRID VEHICLES.pptx
UNIT-V-ELECTRIC AND HYBRID VEHICLES.pptxUNIT-V-ELECTRIC AND HYBRID VEHICLES.pptx
UNIT-V-ELECTRIC AND HYBRID VEHICLES.pptxDineshKumar4165
 
Dubai Call Girls Services Call 09900000000
Dubai Call Girls Services Call 09900000000Dubai Call Girls Services Call 09900000000
Dubai Call Girls Services Call 09900000000Komal Khan
 
VDA 6.3 Process Approach in Automotive Industries
VDA 6.3 Process Approach in Automotive IndustriesVDA 6.3 Process Approach in Automotive Industries
VDA 6.3 Process Approach in Automotive IndustriesKannanDN
 
办理学位证(MLU文凭证书)哈勒 维滕贝格大学毕业证成绩单原版一模一样
办理学位证(MLU文凭证书)哈勒 维滕贝格大学毕业证成绩单原版一模一样办理学位证(MLU文凭证书)哈勒 维滕贝格大学毕业证成绩单原版一模一样
办理学位证(MLU文凭证书)哈勒 维滕贝格大学毕业证成绩单原版一模一样umasea
 
Call Girl Service Global Village Dubai +971509430017 Independent Call Girls G...
Call Girl Service Global Village Dubai +971509430017 Independent Call Girls G...Call Girl Service Global Village Dubai +971509430017 Independent Call Girls G...
Call Girl Service Global Village Dubai +971509430017 Independent Call Girls G...kexey39068
 
2024 WRC Hyundai World Rally Team’s i20 N Rally1 Hybrid
2024 WRC Hyundai World Rally Team’s i20 N Rally1 Hybrid2024 WRC Hyundai World Rally Team’s i20 N Rally1 Hybrid
2024 WRC Hyundai World Rally Team’s i20 N Rally1 HybridHyundai Motor Group
 

Recently uploaded (20)

John Deere 300 3029 4039 4045 6059 6068 Engine Operation and Service Manual
John Deere 300 3029 4039 4045 6059 6068 Engine Operation and Service ManualJohn Deere 300 3029 4039 4045 6059 6068 Engine Operation and Service Manual
John Deere 300 3029 4039 4045 6059 6068 Engine Operation and Service Manual
 
UNIT-II-ENGINE AUXILIARY SYSTEMS &TURBOCHARGER
UNIT-II-ENGINE AUXILIARY SYSTEMS &TURBOCHARGERUNIT-II-ENGINE AUXILIARY SYSTEMS &TURBOCHARGER
UNIT-II-ENGINE AUXILIARY SYSTEMS &TURBOCHARGER
 
Indian Downtown Call Girls # 00971528903066 # Indian Call Girls In Downtown D...
Indian Downtown Call Girls # 00971528903066 # Indian Call Girls In Downtown D...Indian Downtown Call Girls # 00971528903066 # Indian Call Girls In Downtown D...
Indian Downtown Call Girls # 00971528903066 # Indian Call Girls In Downtown D...
 
GREEN VEHICLES the kids picture show 2024
GREEN VEHICLES the kids picture show 2024GREEN VEHICLES the kids picture show 2024
GREEN VEHICLES the kids picture show 2024
 
原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证
原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证
原版工艺美国普林斯顿大学毕业证Princeton毕业证成绩单修改留信学历认证
 
办理(PITT毕业证书)美国匹兹堡大学毕业证成绩单原版一比一
办理(PITT毕业证书)美国匹兹堡大学毕业证成绩单原版一比一办理(PITT毕业证书)美国匹兹堡大学毕业证成绩单原版一比一
办理(PITT毕业证书)美国匹兹堡大学毕业证成绩单原版一比一
 
(8264348440) 🔝 Call Girls In Shaheen Bagh 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Shaheen Bagh 🔝 Delhi NCR(8264348440) 🔝 Call Girls In Shaheen Bagh 🔝 Delhi NCR
(8264348440) 🔝 Call Girls In Shaheen Bagh 🔝 Delhi NCR
 
VIP Kolkata Call Girl Kasba 👉 8250192130 Available With Room
VIP Kolkata Call Girl Kasba 👉 8250192130  Available With RoomVIP Kolkata Call Girl Kasba 👉 8250192130  Available With Room
VIP Kolkata Call Girl Kasba 👉 8250192130 Available With Room
 
Independent Andheri Call Girls 9833363713
Independent Andheri Call Girls 9833363713Independent Andheri Call Girls 9833363713
Independent Andheri Call Girls 9833363713
 
定制昆士兰大学毕业证(本硕)UQ学位证书原版一比一
定制昆士兰大学毕业证(本硕)UQ学位证书原版一比一定制昆士兰大学毕业证(本硕)UQ学位证书原版一比一
定制昆士兰大学毕业证(本硕)UQ学位证书原版一比一
 
FULL ENJOY - 9953040155 Call Girls in Sector 61 | Noida
FULL ENJOY - 9953040155 Call Girls in Sector 61 | NoidaFULL ENJOY - 9953040155 Call Girls in Sector 61 | Noida
FULL ENJOY - 9953040155 Call Girls in Sector 61 | Noida
 
Digamma - CertiCon Team Skills and Qualifications
Digamma - CertiCon Team Skills and QualificationsDigamma - CertiCon Team Skills and Qualifications
Digamma - CertiCon Team Skills and Qualifications
 
(办理学位证)(Toledo毕业证)托莱多大学毕业证成绩单修改留信学历认证原版一模一样
(办理学位证)(Toledo毕业证)托莱多大学毕业证成绩单修改留信学历认证原版一模一样(办理学位证)(Toledo毕业证)托莱多大学毕业证成绩单修改留信学历认证原版一模一样
(办理学位证)(Toledo毕业证)托莱多大学毕业证成绩单修改留信学历认证原版一模一样
 
Digamma / CertiCon Company Presentation
Digamma / CertiCon Company  PresentationDigamma / CertiCon Company  Presentation
Digamma / CertiCon Company Presentation
 
UNIT-V-ELECTRIC AND HYBRID VEHICLES.pptx
UNIT-V-ELECTRIC AND HYBRID VEHICLES.pptxUNIT-V-ELECTRIC AND HYBRID VEHICLES.pptx
UNIT-V-ELECTRIC AND HYBRID VEHICLES.pptx
 
Dubai Call Girls Services Call 09900000000
Dubai Call Girls Services Call 09900000000Dubai Call Girls Services Call 09900000000
Dubai Call Girls Services Call 09900000000
 
VDA 6.3 Process Approach in Automotive Industries
VDA 6.3 Process Approach in Automotive IndustriesVDA 6.3 Process Approach in Automotive Industries
VDA 6.3 Process Approach in Automotive Industries
 
办理学位证(MLU文凭证书)哈勒 维滕贝格大学毕业证成绩单原版一模一样
办理学位证(MLU文凭证书)哈勒 维滕贝格大学毕业证成绩单原版一模一样办理学位证(MLU文凭证书)哈勒 维滕贝格大学毕业证成绩单原版一模一样
办理学位证(MLU文凭证书)哈勒 维滕贝格大学毕业证成绩单原版一模一样
 
Call Girl Service Global Village Dubai +971509430017 Independent Call Girls G...
Call Girl Service Global Village Dubai +971509430017 Independent Call Girls G...Call Girl Service Global Village Dubai +971509430017 Independent Call Girls G...
Call Girl Service Global Village Dubai +971509430017 Independent Call Girls G...
 
2024 WRC Hyundai World Rally Team’s i20 N Rally1 Hybrid
2024 WRC Hyundai World Rally Team’s i20 N Rally1 Hybrid2024 WRC Hyundai World Rally Team’s i20 N Rally1 Hybrid
2024 WRC Hyundai World Rally Team’s i20 N Rally1 Hybrid
 

[BTP HANA Cloud Database] _ How to access HANA Cloud Database & HDI Container in BTP _ SAP Blogs.pdf

  • 1. Topics What's New Community Groups Answers Blogs Events Programs Resources Explore SAP Ask a Question Write a Blog Post Technical Articles Showkath Ali Naseem January 18, 2023 | 8 minute read [BTP HANA Cloud Database] : How to access HANA Cloud Database & HDI Container in BTP  1  4  370 In this blogpost . I would like to provide guidance on how to access HANA Cloud Database & HDI Container in your BTP. If your BTP account already has HANA Cloud setup & your application (space) in sub-account already has Hana HDI container then you can directly jump to section“Get Started with the SAP HANA Database Explorer” in this blog post”. Introduction Follow  Like  RSS Feed Login
  • 2. SAP HANA Cloud is a SAP HANA Cloud is a database as a service (DBaaS) , provides a single place to access, store, and process all enterprise data in real time with high availability .You can develop smart applications with embedded machine learning , analytics (advanced data processing capabilities , insights ) ,document store . SAP HANA Cloud provides all of the advanced SAP HANA technologies for multi-model data processing ,store and access data in-memory and column-based [ it Process mission-critical data at proven in-memory speed] or on disk . By combining in-memory storage with columnar store, data operations are performed faster than in a traditional database with a disk-based storage. Using SAP HANA Cloud, you can set up and manage SAP HANA databases and bind them to applications running on SAP Business Technology Platform (SAP BTP) or elsewhere. You can benefit from cloud qualities such as availability, security, automatic software updates, elasticity, and low total cost of ownership by using SAP HANA Cloud either as a stand-alone solution or as an extension to your existing on-premise environment. Prerequisites If you already have an SAP HANA Cloud service in your BTP then skip this step i.e. continue with Use your BTP Existing SAP HANA Cloud service instance and go to section“Get Started with the SAP HANA Database Explorer” in this blog post. If you need to create an SAP HANA Cloud service instance first → continue with Create an SAP HANA Cloud service instance. 1) Create SAP HANA Cloud service in your BTP SAP HANA Cloud instances are not created automatically for any type of BTP account. Therefore, you will have to create an SAP HANA Cloud service instance first, if you don’t have one yet. How to create SAP HANA Cloud instance in the trial BTP environment. Refer below document , How to Get an SAP HANA Cloud Instance for SAP Business Technology Platform, Cloud Foundry environment to learn.
  • 3. On BTP trial, your SAP HANA Cloud instance will be automatically stopped overnight, according to the server region time zone. That means you need to restart your instance every day before you start working with your trial. Once you complete the tutorial steps in Provision an Instance of SAP HANA Cloud, SAP HANA Database 1. Set UpYour SAP HANA Cloud, SAP HANA Database (free tier model or trial) and Understand the Basics 2. Take Your First Steps with SAP HANA Cloud, SAP HANA Database As an optional step if you are completely new to the SAP HANA Cloud environment, you might want to consider also going through this tutorial: Tools to Manage and Access the SAP HANA Cloud, SAP HANA Database in order to familiarize yourself with the various tools that can be used to manage and develop with SAP HANA Cloud. 2) HDI After provisioning a HANA Cloud DB next step is to create an instance of HANA Schema and HDI Service. This service generates a schema (if you use schema plan) which allows your Spring Boot application to create its database artifacts. There are other plans for different use-cases. For example, if you follow the SAP CAP (SAP Cloud Application Programming Model) is a framework developed by SAP to build cloud applications, services based on either JavaScript/Node.js or Java (Spring Boot). Core Data Services (CDS), which in turn generated into a database objects (tables , views..) & with only few lines of code you have a Web API (OData/REST) which offers functionality to create, read, Query, update ,delete (CRUD+ Q) transactions …In SAP CAP, hdi- shared plan is used, which deploys the database artifacts from your CDS files.All these database artifacts are clubbed into a wrapper called Schema, staged, built and then deployed into SAP HANA Cloud Database in the form of a database container.
  • 4. In an SAP HANA Cloud instance, the SAP HDI is enabled by default. So the SAP HANA Deployment Infrastructure (HDI) is a service layer of the SAP HANA database and helps create runtime database objects [e.g., Tables, Views, Procedures, etc] from design-time artifacts like CDS, JPA Entities. HDI creates a new HANA repository (with both design time and runtime management) per project. Each Container gets its own unique technical user to control database artifacts. You have two options to create HDI Instance. Manual or Automatic (program) 1) Manually : You can use BTP Cockpit : Set Up a HANA Schema or an HDI Container or Commands (CLI) create-service hana-cloud-trial hdi-shared sap-demo-hdi-db 2) Programming : You can use SAP CAP Framework or Java or NodeJS or Python
  • 5. - name: sap-demo-hdi-db type: com.sap.xs.hdi-container parameters: service: hana-cloud-trial # 'hana-cloud-trial' 'hanatrial' on BTP trial landscapes #for BTP enterprise account please use 'hana' Fo your reference : HDI with SAP HANA Cloud | Video Tutorial Tutorials : Develop a CAP Node.js App Using SAP Business Application Studio Build a Business Application Using CAP for Java Sample apps: https:/ /github.com/SAP-samples/cloud-cap-samples https:/ /github.com/SAP-samples/cloud-cap-samples-java https:/ /github.com/SAP-samples/cap-sflight Official Document : https:/ /cap.cloud.sap Developing Java in the Cloud Foundry Environment Developing Node.js in the Cloud Foundry Environment Developing Python in the Cloud Foundry Environment
  • 6. In case you’ve a question, find a bug, or otherwise need support, use our community Now , it is time to learn how to access HANA Cloud Database in your BTP Cockpit. Get Started with the SAP HANA Database Explorer Cockpit SAP HANA Database Explorer is a tool used to interact with SAP HANA databases, as well as use the SAP Graph and Spatial engines. In the HANA Database Explorer, you can also access the SQL console.The SAP HANA database explorer can be opened from multiple locations as shown below: Option1: Access Cockpit using BTP HDI Instances Technical (Container Runtime(RT)/DT Credentials) From the SAP Business Technology Platform (SAP BTP) Cockpit In SAP BTP cockpit, enter your global account, subaccount, and space. On the menu on left-side of the screen, click on Instance Choose your HDI instance as shown below
  • 7. Click on View Credentials Note down or Download Credentials.
  • 8. In your BTP Space Left-side of the screen, click on SAP HANA Cloud as shown below .
  • 9. Click on Open DaseBase Explorer Cockpit.
  • 10. Note : Instead of creating HANA Cloud in your BTP Space ,If your BTP Admin has setup central HANA cloud for your sub-account (for all spaces) then ask to share central “BTP Hana Cloud Database Explorer ” URL. Click on Login Enter Database credentials
  • 11. If Login success then you can view user screen as below. Click on SQLConsole.
  • 12. This open HANA SQLCockpit & then you can choose your HDI schema as shown below.
  • 13. Schema ID is your BTP Space HDI instance, choose accordingly .
  • 14.
  • 15.
  • 16. Once you access Schema then you can view tables , views , procedures .. etc One additional tip : If you have other technical credentials ,you can switch user by right click on Schema & login with different user , enter technical user credentials ..
  • 17.
  • 18. You can further refer tutorials How to Create Database Objects with SAP HANA Database Explorer . Option2: Access BTP HDI Container using SAP HANA Database Explorer If you know SAP HANA Database Explorer Cockpit & have access to BTP Space then follow below steps. Click on + Symbol. Choose HDI Container in instance Type. Choose HDI instance. You can enter Display name to visible in SAP HANA Database Explorer Cockpit.
  • 19.
  • 20. Option3: Connect to HANA Database using SAP HANA Database Explorer You can provide the host, port, user name, password from HDI instance of BTP Space
  • 21. Note : It is good to know about which Credentials to use ,so few notes for you. 1. If you have access to BTP & HANA Cloud instance then ,the HANA Database Explorer will open in a new browser tab and automatically select the database entry for your project’s HDI container. 2. Note that the credentials can be saved so they do not need to be re-entered if they are entered into the SAP HANA cockpit. 3. As best practise you should avoid DBADMIN Credentials usage.Also be aware that if DBADMIN User locked ( I mean , if someone tried with wrong password ,it is not easy to Unlock /Reset Password, We need to reach to HANA Cloud ,it will take time as there is no self-service as of now to rest DBADMIN User so better to avoid Locking of DBADMIN User ) 4. Recommendation It is highly recommended that you do not use DBADMIN for day-to-day activities in production environments. Instead, use it to create database users with the minimum privilege set required for their duties (for example, user administration, system administration). Then deactivate DBADMIN. You may temporarily reactivate the DBADMIN user for emergency or bootstrapping tasks. You can also create alternative ADMIN User ,follow official guide for HANA Database Users. Create Users and Manage Roles and Privileges User Management with the SAP HANA Database Administrator DBADMIN
  • 22. Documentation SAP HANA Cloud Guide SAP HANA Cloud community SAP HANA Cloud Onboarding Guide Module 01 – Fundamentals Security Administration and User Management Thank you for reading this blog post. If you find this material useful then please leave your feedback in the comments section below. Kindly let me know if you need any further assistance in comments section below. Also ‘Like’ ,‘Share’ , ‘Follow’ me to get new updates. Alert Moderator View more...  Assigned Tags SAP BTP, Cloud Foundry environment | SAP Business Technology Platform | SAP Cloud Application Programming Model | SAP HANA Cloud, SAP HANA database | SAP HANA service for SAP BTP | #hdi | Access HANA Database
  • 23. Similar Blog Posts Getting Started with SAP HANA Cloud | Video Tutorials By Denys van Kempen Mar 29, 2020 Consume SAP HANA Cloud HDI containers with HAA and eSAC/SAC By Piotr T esny Mar 19, 2022 SAP Business Technology Platform Extension Generators | Hands-on Video Tutorials By Denys van Kempen May 31, 2021 Related Questions CAPM on BTP Points to HANA DB On premise By Sreehari V Pillai Nov 19, 2022 How can I connect a BTP app and SAP HANA Cloud instance in different BTP Global Accounts? By Mustafa Bensan Apr 21, 2022 Cloud Connector cannot connect to SAP BTP HANA server instance By Manoj Prasanna Mar 31, 2021   1 Comment You must be Logged on to comment or reply to a post.
  • 24. Find us on Privacy T erms of Use Legal Disclosure Copyright T rademark Cookie Preferences Newsletter Support Diksha Srivastava January 19, 2023 at 1:51 pm I was looking for this. | Like 0 Share