Skip to content

Commit b6adced

Browse files
committed
Update hibernate-calculate-view titles
1 parent 9b525f9 commit b6adced

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

tutorials/hana-hibernate-calculation-view/hana-hibernate-calculation-view.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: Create an application consuming a calculation view using Hibernate on SAP HANA
3-
description: This tutorial shows how to create an application which uses Hibernate on SAP HANA to read data from a calculation view
2+
title: Create an app consuming calculation view using Hibernate on SAP HANA
3+
description: Create an application that uses Hibernate on SAP HANA to read data from a calculation view.
44
primary_tag: products>sap-hana
55
tags: [ tutorial>intermediate, topic>java, products>sap-hana, products>sap-hana\,-express-edition ]
66
---
@@ -50,7 +50,7 @@ Replace `<Hibernate user>` with your actual Hibernate connection user. If your p
5050
[ACCORDION-END]
5151

5252

53-
[ACCORDION-BEGIN [Step 2: ](Update the project configuration)]
53+
[ACCORDION-BEGIN [Step 2: ](Update project configuration)]
5454

5555
Since the calculation view isn't a table that can be managed by Hibernate, Hibernate must be configured to not create the schema on startup. This can be done by setting the value of the property `hibernate.hbm2ddl.auto` to `none`.
5656

@@ -93,7 +93,7 @@ Save the `persistence.xml` file.
9393

9494
[ACCORDION-END]
9595

96-
[ACCORDION-BEGIN [Step 3: ](Create an entity for the calculation view)]
96+
[ACCORDION-BEGIN [Step 3: ](Create entity for calculation view)]
9797

9898
In order for Hibernate to be able to run queries against the calculation view and to map the data from the calculation view to Java objects, a Java Persistence API (JPA) entity for the calculation view has to be created. The calculation view's output columns will be mapped as the fields of the entity.
9999

@@ -161,7 +161,7 @@ Save the class file.
161161
[ACCORDION-END]
162162

163163

164-
[ACCORDION-BEGIN [Step 4: ](Run a simple query on the calculation view)]
164+
[ACCORDION-BEGIN [Step 4: ](Run simple query on calculation view)]
165165

166166
Using the entity created in the previous step, we can now run queries against the calculation view.
167167

@@ -246,7 +246,7 @@ Found 22472 products
246246
[ACCORDION-END]
247247

248248

249-
[ACCORDION-BEGIN [Step 5: ](Run a geospatial query on the calculation view)]
249+
[ACCORDION-BEGIN [Step 5: ](Run geospatial query on the calculation view)]
250250

251251
It's also possible to run more complex queries against a calculation view, for example, geospatial queries leveraging the SAP HANA geospatial engine.
252252

@@ -341,7 +341,7 @@ Found 10176 products from Europe
341341
[ACCORDION-END]
342342

343343

344-
[ACCORDION-BEGIN [Step 6: ]((Optional) Set the calculation view schema as the default schema)]
344+
[ACCORDION-BEGIN [Step 6 (optional): ](Set calculation view schema as default)]
345345

346346
For flexibility or maintainability reasons it might be preferrable to not have the calculation view schema hard-coded on each entity.
347347

0 commit comments

Comments
 (0)