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

Part 8: Debugging your solution

You will learn how to use the debugger in the SAP Cloud Application Studio. We will debug the code we created in the previous video tutorials and get a first understanding of the debugger.

In the previous video blog I explained how to add an object value selector to your UI.

More Videos

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

Watch the next part: Adding a node to your Business Object.

Assigned Tags

      4 Comments
      You must be Logged on to comment or reply to a post.
      Author's profile photo Pavan Pati
      Pavan Pati

      Jens Limbach Thank you so much! So far good, looking forward to see next part.

       

      How do I set Total Revenue Currency based on chosen Participant Currency

      Author's profile photo Saurabh Kabra
      Saurabh Kabra

      Hi,

      In the same BeforeSave event where you calculate the "Total Revenue" add a new line to pcy the "Price" currency to "Revenue" Currency:

      this.Revenue.currencyCode = this.ParticpantPrice.currencyCode;

      BR
      Saurabh

      Author's profile photo Jens Limbach
      Jens Limbach
      Blog Post Author

      Saurabh Kabra : Thank you so much for answering already! 🙂

      Author's profile photo Pavan Pati
      Pavan Pati

      Thanks Saurabh, worked!