Create Your First SAPUI5 Application
参考资料:
You can include a bootstrap to the SAPUI5 JavaScript libraries to use SAPUI5 in an HTML page without having set up the SAPUI5 application development tools in Eclipse.
This page explains how to create and run a simple SAPUI5 application from scratch within twenty seconds (with some practice… the current record is 16 seconds).
If you are interested in exactly doing this without reading too much, you can skip the background information and read the And how to do it in 20 Seconds section below.
Background Information
As SAPUI5 is a client-side web UI library meaning that it runs in a browser, a SAPUI5 application typically is composed of an HTML page and, if required, many more files.
SAPUI5 is implemented in JavaScript. For loading SAPUI5, its bootstrap needs to be included with a tag. The last two attributes select the visual design to apply initially (other choices would be sap_hcb orsap_goldreflection) and the SAPUI5 control library/libraries to use . In your scenario you need to make sure the URL points to a SAPUI5 installation.
As a minor detail, the
should have a certain CSS class, so the page background and some other styles are properly set:
There are two meta tags at the beginning of the
: The first meta tag is used to ensure that Internet Explorer 8+ uses its most standard-compliant rendering mode. The second meta tag is used to let all browsers treat the file as UTF-8 encoded (assuming that you use this encoding when editing/saving the file):
And How to do it in 20 Seconds
Assumption for these instructions to work exactly as described: You have a Windows Computer (other OS will work similarly), Internet Explorer 9+ with security option set to Access data across domains for the respective zone, Firefox, Safari or Chrome in the latest version, and you know where you can refer to SAPUI5 on some server.
NoteThe URL in the script tag is pre-filled as https://sapui5.hana.ondemand.com/resources/sap-ui-core.js. This is the URL where the resources are located in the SAP HANA Cloud Platform delivery. Test this URL first and if it does not work, replace this URL with the location of SAPUI5 on your local server.
Proceed as follows:
- Right click your desktop and select
- New
- Text Document
- .
- Name the new file, for example "ui5.html", and accept the extension change warning.
- Right click the new file and select Edit. Make sure that the file opens in Notepad andnot in MS Word.
- Copy and paste the below HTML code. Keep in mind to adapt the SAPUI5 URL
- Drag the file to the browser window.
- That was it.
Result
If you followed the steps above you should now see a button like this which fades out when clicked:
Next Steps
You can now do the following:
- Add more buttons.
- Let them do trickier things.
- Find out about further properties and events of button controls and use those.
- .
Related Content
The following content is not part of SAP product documentation. For more information, see the followingdisclaimer
.
Product Availability
- Product Availability Matrix (PAM)
- PAM Documentation Support Information
- Search for SAP Notes and SAP Knowledge Base Articles