Technology Blogs by Members
Explore a vibrant mix of technical expertise, industry insights, and tech buzz in member blogs covering SAP products, technology, and events. Get in the mix!
cancel
Showing results for 
Search instead for 
Did you mean: 
sudhiranjan_lenka
Contributor
Hello All,

In this blog, I will explain the step by step process to create a multi module business application(MTA) by using java as the middle-ware component with the help of SAP Web IDE full-stack and this application will be deployed onto the Cloud Foundry trail account.

Functionality of the Application :- Here I am going to display the list of employees of an organization.

Technical Architecture : -



Prerequisites: - 

  1. Access to SAP Web IDE Full-Stack.

  2. Enable SAP HANA Database Development Tools, Tools for Java Development, SAP HANA Database Explorer and SAP Cloud Platform Business Application Development Tools features in Web IDE.

  3. Enable Cloud foundry in the SCP trail account.

  4. Create Space and Organisation in the Cloud Foundry account.

  5. Configure the Cloud Foundry space and install the Builder.




Application: -

  • Launch SAP Web IDE full-stack and create a MTA application from the template.












  • One MTA project will be created in your workspace with name MTA_Employee.

  • Create a DB module for the MTA project as shown below.








  • Create a CDS view in the DB module as shown below.




  • Give the name of the CDS view as Organization.

  • One CDS view will be created under scr folder, now open the CDS view in the Code Editor and replace the entire code with the code given in the path Organization.hdbcds..

  • Build the CDS view to create the Employee table in the HANA DB.




  • Once the Build is successful one table will be created in the DB, which can be checked from the Data Base explores by adding the DB to the  DB explorer in the Web IDE.








  • Add some records into the table by generating and executing the insert statement.






  • Execute the above SQL query by putting some values as shown in the screenshot.

  • Create a calculation view in the DB module to read the Employee table.






  • One Calculation view will be created under the src folder with name GetEmployees, now open it in the Code Editor and replace the entire code with the code given in the path GetEmployees.hdbcalculationview.

  • Build the DB module by right clicking and selecting Build on the DB folder.

  • Now we will create Java module.










  • Now Java module is created and the folder structure will look like as below.




  • Open the pom.xml and replace the entire content with code given in the path pom.xml.




  • Open the web.xml and replace the entire content as given in the path web.xml.






  • Java module is now created, build the Java module as shown below.




  • Now Create UI module.










  • UI module is now created and the folder structure will look like as below.






  • Open the mta.yml file in the editor mode and replace the entire content with the code from the path mta.yaml.




  • MTA application is now ready, build the MTA application to create the achieve file.




  • Once the build is successful then you can find the archive file under the mta_archives folder.




  • Deploy the .mtar file to the Cloud Foundry.




  • You will be prompted to enter the details of the Cloud Foundry.

  • Once the deployment is successful then you can see three applications in the Cloud Foundry.




  • Click the UI application to find out the URL of the MTA App.




  • Click the URL to run the application.




This project is available in the Git repository at the location  https://github.com/sudhirlenka/MTA_Employee .

Same project can also be deployed onto HANA XSA system by doing few changes to mta.yml file and in the config file.

Hope this helps!!

Thanks,

Sudhir.
10 Comments
Labels in this area