Friday 10 March 2023

Create a CAPM Application using SAP Business application studio for file-based persistence.

In this session we will discuss about the file base persistence of a local file using a simple CAPM application developed in SAP Business Application Studio.

SAP CAPM (Cloud Application Programming Model) is a framework on Cloud Foundry environment provided for boiling service and application which can use to solve different business scenario for enterprise corporation. The Core Data & Services (CDS) to build data models and service definitions  consuming the data from the underlying SQL database like HANA  and exposed as a service to different platform. The are two types of runtime environments in CAPM i.e. Java and Node.JS. The Structure looks like below –

CAPM Application, SAP Business Application Studio, SAP HANA Exam, SAP HANA Career, SAP HANA Skills, SAP HANA Jobs, SAP HANA Tutorial and Materials

Today We will create a simple CAMP application in which we will upload a CSV file Data. Link with another dataset using Association and expose as a services.

1. Create New Project from Template and Select CAP Project and put the name. Use node.js runtime environment. In our case we put name as TIRE_STORE. Click on Finish.

CAPM Application, SAP Business Application Studio, SAP HANA Exam, SAP HANA Career, SAP HANA Skills, SAP HANA Jobs, SAP HANA Tutorial and Materials

CAPM Application, SAP Business Application Studio, SAP HANA Exam, SAP HANA Career, SAP HANA Skills, SAP HANA Jobs, SAP HANA Tutorial and Materials

2. Execute “npm install” from new Terminal. It will installs dependencies from your package.json.

CAPM Application, SAP Business Application Studio, SAP HANA Exam, SAP HANA Career, SAP HANA Skills, SAP HANA Jobs, SAP HANA Tutorial and Materials

3. Open the Run Configurations window and select Create Configuration. Choose the TIRE Store Created Project and name the run configuration as Run “TIRE_STORE-3” and run it.

CAPM Application, SAP Business Application Studio, SAP HANA Exam, SAP HANA Career, SAP HANA Skills, SAP HANA Jobs, SAP HANA Tutorial and Materials

4. Create two CSV file which will act as source of two data set. You can upload two CSV file also. While data modeling we will associate with DealerID filed to link this two entity to get the dealer name for a Tire.

CAPM Application, SAP Business Application Studio, SAP HANA Exam, SAP HANA Career, SAP HANA Skills, SAP HANA Jobs, SAP HANA Tutorial and Materials

CAPM Application, SAP Business Application Studio, SAP HANA Exam, SAP HANA Career, SAP HANA Skills, SAP HANA Jobs, SAP HANA Tutorial and Materials

5. Create the data modeling CDS file named “data-model.cds” to link two entity with the below code –

namespace Dealer;

using
{
    Currency,
    managed,
    sap,
    cuid
}
from '@sap/cds/common';

entity TireStore : managed
{
    key ID : Integer;
    Brand : String(111);
    TireType : String(1111);
    Price : Decimal(9,2);    
    DealerID : Integer;
    tireDealer : Association to one TireDealer;
}

entity TireDealer : managed
{
    key DealerID : Integer;
    DealerName : String(111);
}

Then in the graphical mode check  the association is already created –

CAPM Application, SAP Business Application Studio, SAP HANA Exam, SAP HANA Career, SAP HANA Skills, SAP HANA Jobs, SAP HANA Tutorial and Materials

6. Create the CDS file which will consume the entities and expose as a service. Name it  –

CAPM Application, SAP Business Application Studio, SAP HANA Exam, SAP HANA Career, SAP HANA Skills, SAP HANA Jobs, SAP HANA Tutorial and Materials

7. Now we have completed all the modeling part .Now deploy  the project into Node.JS environments using cds deploy –to Sqlite so that data will persists in sqlite.db. After deploy when service exposed. Data will be served to the exposed service  served from the file sqlite.db

CAPM Application, SAP Business Application Studio, SAP HANA Exam, SAP HANA Career, SAP HANA Skills, SAP HANA Jobs, SAP HANA Tutorial and Materials

8. Then run the application using the configuration created.

CAPM Application, SAP Business Application Studio, SAP HANA Exam, SAP HANA Career, SAP HANA Skills, SAP HANA Jobs, SAP HANA Tutorial and Materials

9. Open the service in a new table and you can see the Tire Store and Dealer entries exposed as OData services from the database persistence files in sqlite.db.

CAPM Application, SAP Business Application Studio, SAP HANA Exam, SAP HANA Career, SAP HANA Skills, SAP HANA Jobs, SAP HANA Tutorial and Materials

CAPM Application, SAP Business Application Studio, SAP HANA Exam, SAP HANA Career, SAP HANA Skills, SAP HANA Jobs, SAP HANA Tutorial and Materials

No comments:

Post a Comment