Skip to content
This repository has been archived by the owner on Dec 29, 2020. It is now read-only.

Latest commit

 

History

History
24 lines (16 loc) · 1.71 KB

ex0_prerequisite_steps.md

File metadata and controls

24 lines (16 loc) · 1.71 KB

Prerequisite Steps

The following prerequisite steps all relate to configuring SAP Web IDE in readiness for performing the first exercise.

Please ensure that you have successfully completed all of the following steps before proceeding with exercise 1.

  1. Log on to and Configure Web IDE
  2. Create a New Project
  3. Compile and Deploy the CDS Data Model to HANA

Summary

After completing these steps you will have achieved the following:

  1. You have logged on to and configured your Web IDE editor
  2. Within Web IDE, you have created a new project (either manually or by cloning a Git repository)
  3. You have used the Core Data Services (CDS) compiler in two stages to achieve three things:
    1. "Build CDS" invokes the CDS compiler to generate all the .hdbcds files that now appear in the db/src/gen/ folder. (The CDS compiler can actually do much more than this, but here, we are interested only in the creation of database artefacts)
    2. The second Build process (selected from the context menu of the db folder) then does two things:
      • The CDS compiler connects to Web IDE Builder tool installed in your Cloud Foundry Space, and transfers over all the .hdbcds table information. The Web IDE Builder tool then generates the database tables within an HDI container in the HANA DB
      • Using the configuration found in the JSON file db/src/csv/Data.hdbtabledata (found in the referenced repository), the Web IDE builder additionally populates the database tables using the data found in the various .csv files in the db/src/csv folder

</prerequisite steps>