This page will show related details for a customer. In this page, you will add an Object Header control that is used to display information (like first name, last name, date of birth, email address & phone number) about the header of an object and Static Key Value control to display key value pair items like address, city, postal code & country.
-
In SAP Business Application Studio project, Right-click the Pages folder | MDK: New Page | Section | Next.
-
In the Base Information step, enter the Page Name Customers_Detail
and click Finish to complete the page creation process.
-
In the Properties pane set the Caption to Details.
-
Next, you will add an Object Header container to display information like first name, last name, date of birth, email address & phone number.
In the Layout Editor, expand the Controls | Static Container group, drag and drop the Object Header control onto the page area.
-
Now, you will replace the default values of the control’s properties with the values from customer entity.
In the Properties pane, click the link icon to open the Object Browser for the BodyText
property.
Double click the DateOfBirth
property of the Customer entity to set it as the binding expression and click OK.
-
Repeat the above steps binding below Properties:
Property | Value |
---|
Description | {CustomerId} |
DetailImage | sap-icon://customer |
FootNote | {EmailAddress} |
HeadlineText | {LastName} |
Status | {PhoneNumber} |
Subhead | {FirstName} |
Substatus | Remove the default property |
DetailImage
property is referencing to the SAP font icon.
Make sure to select values for the mentioned properties only from Customer Entity. You may find similar values from other entities. For example,
Page should look like below.
-
In the main area of the page, let’s display some other details like; address, city, postal code, county.
Drag and drop a Static Key Value container onto the page under the Object Header.
-
Expand the Static Items section of the Controls palette and drag and drop a Key Value Item onto the Static Key Value container on the page.
-
Repeat the process and drag three more Key Value Items onto the Static Key Value section so you have a total of four when you are done.
-
Select the upper left Key Value Item and set the KeyName
to Address.
-
For this tutorial, you will set the value as a combined binding of house number and street. You can find more details about Target Path.
Start with first part of the binding for Address property.
Click the link icon next to the Value field to display the Object Browser and double click HouseNumber
to set it as the first part of the binding. Don’t click OK as you will set second part of the binding too.
Be careful not to select HouseNumber
from Address (ESPM.Address)
, final expression should be as per above animation.
Now, set second part of the binding.
The cursor will be at the end of binding in the Expression field. Add a space and then select Street property and click Insert.
Click OK to set the binding.
Be careful not to double click Street as that will replace the existing expression with just the Street property.
Street should be selected from Customer entity.
-
Repeat the process and set the upper right Key Value Item KeyName
to City and bind the value to the City
entity property.
-
Repeat the process and set the lower left Key Value Item KeyName
to Postal Code and bind the value to the PostalCode
entity property.
-
Repeat the process and set the lower right Key Value Item KeyName
to Country and bind the value to the Country
entity property.
Be careful not to select City, Postal Code & City from Customer.Address (ESPM.Address) collection.
The page design should look like as below screenshot.