Technology Blogs by SAP
Learn how to extend and personalize SAP applications. Follow the SAP technology blog for insights into SAP BTP, ABAP, SAP Analytics Cloud, SAP HANA, and more.
cancel
Showing results for 
Search instead for 
Did you mean: 
Jens-Limbach
Advisor
Advisor
You will learn how to log on to your tenant with the Cloud Application Studio, how to create a new solution and how to create your first business object.

In the previous video blog I explained the use case for our custom solution.

Please note, in the video I used for our teacher the data type "BusinessPartnerInternalID", please use instead the data type "EmployeeID" as given also in the below code sample.


More Videos


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

Watch the next part: Creating your business logic.

Code Samples


Code for Business Object "SeminarMgmt":
import AP.Common.GDT as apCommonGDT;

businessobject SeminarMgmt {

[Label("Name")] element Name :LANGUAGEINDEPENDENT_LONG_Text;
[Label("Description")] element Description:LANGUAGEINDEPENDENT_LONG_Text;
[Label("Seminar Start Date")] element SeminarStartDate:Date;
[Label("Seminar End Date")] element SeminarEndDate:Date;
[Label("Teacher")] element Teacher:EmployeeID;
[Label("Price per Participant")] element PriceperParticipant:Amount;
[Label("Number of Participants")] element NumberofParticipants:NumberValue;
[Label("Total Revenue")] element TotalRevenue:Amount;

}
3 Comments