Skip to Content
Technical Articles
Author's profile photo Jens Limbach

Part 3: Creating your business logic

You will learn how to generate the user interfaces (UIs) for your solution and the very minimal fine tuning to make them work. After that you can directly start testing your full application!

In the previous video blog I explained how you can create your first custom solution and how to create your first business object.

More Videos

Here you can find all videos of the new SAP Cloud Application Studio video series.

Watch the next part: Generating the UI and minimal fine tuning.

Assigned Tags

      2 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Nick Yang
      Nick Yang

      This is the code used in the above video.

      import ABSL;
      
      var tempRevenue;
      
      tempRevenue = this.NumberofParticipants * this.PriceperParticipant.content;
      
      this.TotalRevenue.content = tempRevenue;
      Author's profile photo Jens Limbach
      Jens Limbach
      Blog Post Author

      Thanks for completing my post! 🙂