Skip to content

Commit c654598

Browse files
authored
Merge pull request #18574 from ale-biagi/master
Automatic commit: Move 'cap-extend-sfsf-add-logic' from QA to Production
2 parents 4593546 + 49a904c commit c654598

115 files changed

Lines changed: 2166 additions & 34 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
29.7 KB
Loading
45.6 KB
Loading
29.3 KB
Loading
48.1 KB
Loading
52.4 KB
Loading
49.2 KB
Loading
Lines changed: 155 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,155 @@
1+
---
2+
title: Add the SAP SuccessFactors Extension to the Launchpad
3+
description: In this last phase of the development journey you will finally add your deployed extension to an SAP Fiori Launchpad on BTP.
4+
auto_validation: true
5+
time: 7
6+
tags: [ tutorial>beginner, software-product>sap-btp--cloud-foundry-environment]
7+
primary_tag: software-product-function>sap-cloud-application-programming-model
8+
---
9+
10+
## Prerequisites
11+
- Complete the tutorial: [**Prepare to Develop the SAP SuccessFactors Extension**](cap-extend-sfsf-intro)
12+
- Complete the tutorial: [**Jump start the SAP SuccessFactors Extension CAP Project**](cap-extend-sfsf-jumpstart)
13+
- Complete the tutorial: [**Import SAP SuccessFactors OData Services definitions**](cap-extend-sfsf-import-services)
14+
- Complete the tutorial: [**Create the CDS Data Model for the SAP SuccessFactors Extension**](cap-extend-sfsf-data-model)
15+
- Complete the tutorial: [**Create the CAP Service for the SAP SuccessFactors Extension**](cap-extend-sfsf-create-service)
16+
- Complete the tutorial: [**Add Business Logic to the SAP SuccessFactors Extension**](cap-extend-sfsf-add-logic)
17+
- Complete the tutorial: [**Prepare the SAP SuccessFactors Extension UI with CDS Annotations**](cap-extend-sfsf-ui-annotations)
18+
- Complete the tutorial: [**Add Security to the SAP SuccessFactors Extension**](cap-extend-sfsf-add-security)
19+
- Complete the tutorial: [**Deploy the SAP SuccessFactors Extension Database to SAP HANA Cloud**](cap-extend-sfsf-deploy-hc)
20+
- Complete the tutorial: [**Develop the SAP Fiori Elements Application for the SAP SuccessFactors Extension**](cap-extend-sfsf-fiori-elements)
21+
- Complete the tutorial: [**Deploy the SAP SuccessFactors Extension to Cloud Foundry**](cap-extend-sfsf-deploy-cf)
22+
23+
## Details
24+
### You will learn
25+
- How to **access the Launchpad Service Site Manager**
26+
- How to **prepare the business content** for the Launchpad Site
27+
- How to **assign the application** to the **business content** and **launchpad roles**
28+
- How to **create the Launchpad Site**
29+
- How to **test the Launchpad Site and your application**
30+
31+
---
32+
33+
[ACCORDION-BEGIN [Step 1: ](Access the Launchpad Service Site Manager)]
34+
35+
In the **SAP BTP cockpit**, on the **left-hand pane** expand the **Services** menu and click on **Instances and Subscriptions**. On the right side, locate the **Launchpad Service** under **Subscriptions** and click on the **Go to Application** icon next to it.
36+
37+
![Figure 1 – Go to Application on Launchpad Service subscription](launch-service.png)
38+
39+
The **Site Manager UI** will open-up in a new browser tab. So, the first thing you need to do is to **refresh** (grab) the content from the **HTML5 applications** repository for bring in our application from there.
40+
41+
Click on the **sandwich menu** at the top-left corner of the page to expand the app menu and click on the **Provider Manager** option. Then, click on the **refresh button** at the far right of the **HTML5 apps** provider to bring-in the content from there.
42+
43+
![Figure 2 – Refresh content from the HTML5 apps repository](refresh-content.png)
44+
45+
[DONE]
46+
[ACCORDION-END]
47+
48+
[ACCORDION-BEGIN [Step 2: ](Prepare Business Content: Application, Group and Catalog)]
49+
50+
To learn about the **concepts** managed by the **SAP Launchpad Service**, please refer to the official documentation in [**this link**](https://help.sap.com/viewer/8c8e1958338140699bd4811b37b82ece/Cloud/en-US/3f619a13ca2a4a59a14bec8507c3fb69.html).
51+
52+
Click on the **Content Manager** option, then on the **Content Explorer** tab and, finally, on the **HTML5 Apps** tile.
53+
54+
![Figure 3 – Access HTML5 Apps Repository](access-repo.png)
55+
56+
Select the **Manage Projects** app, then click on the **Add to My Content** button.
57+
58+
![Figure 4 – Add Manage Projects App to My Content](add-app.png)
59+
60+
Click on the **My Content** tab, then on the **New** button and select **Catalog** from the menu.
61+
62+
![Figure 5 – Add New Catalog](add-catalog.png)
63+
64+
Type **Project Management** as **Title** and **Project Management Catalog** as **Description**. Click on the **Assign Items** search bar and, then, on the "**+**" icon to the right of the **Manage Projects** app. Finally, click on the **Save** button.
65+
66+
![Figure 6 – Project Management Catalog Information](catalog-info.png)
67+
68+
Go back to the **Content Manager** home page, click on the **New** button and select **Group** from the menu.
69+
70+
![Figure 7 – Add New Group](add-group.png)
71+
72+
Type **SuccessFactors Extensions** as **Title** and **SuccessFactors Extensions Group** as **Description**. Click on the **Assign Items** search bar and, then, on the "**+**" icon to the right of the **Manage Projects** app. Finally, click on the **Save** button.
73+
74+
![Figure 8 – SuccessFactors Extensions Group Information](group-info.png)
75+
76+
[DONE]
77+
[ACCORDION-END]
78+
79+
[ACCORDION-BEGIN [Step 3: ](Assign the Application to Everyone)]
80+
81+
Go back to the **Content Manager** home page and click on the **Everyone** role in the list.
82+
83+
![Figure 9 – Access the Everyone Role](access-role.png)
84+
85+
Click on the **Edit** button at the top-right and then on the **Assign Items** search bar. Click on the "**+**" icon to the right of the **Manage Projects** app. Finally, click on the **Save** button.
86+
87+
![Figure 10 – Assign the Manage Projects app to the Everyone Role](assign-app.png)
88+
89+
[DONE]
90+
[ACCORDION-END]
91+
92+
[ACCORDION-BEGIN [Step 4: ](Create the Launchpad Site)]
93+
94+
Click on the **Site Directory** option and then on the **Create Site** button.
95+
96+
![Figure 11 – Create New Site](create-site.png)
97+
98+
Name the site **BTP Extensions** and click on the **Create** button.
99+
100+
![Figure 12 – Site Name](site-name.png)
101+
102+
[DONE]
103+
[ACCORDION-END]
104+
105+
[ACCORDION-BEGIN [Step 5: ](Test the Site and Application)]
106+
107+
Click on the link below the **URL** field to **launch the site**, which will open-up in a new browser tab.
108+
109+
![Figure 13 – Launch the Site](launch-site.png)
110+
111+
Click on the **Maintain Projects** tile to **launch the application**.
112+
113+
> **NOTE**: the title "**Maintain Projects**" is taken from the **SAP Fiori Launchpad (FLP) configuration** that was done when the SAP Fiori Elements application has been created following this tutorial: [**Develop the SAP Fiori Elements Application for the SAP SuccessFactors Extension**](cap-extend-sfsf-fiori-elements).
114+
115+
![Figure 14 – Launch Application](launch-app.png)
116+
117+
The **List Report page** for the **Project** entity will be loaded:
118+
119+
![Figure 15 – List Report page for Project entity](list-report.png)
120+
121+
Now, click on the **Go** button and the **initial test data** (loaded to the HANA database from the CSV files) will be displayed:
122+
123+
![Figure 16 – Initial test data displayed](test-data.png)
124+
125+
And that's it! You have successfully added a **fully working SAP Fiori Elements application** deployed to **SAP BTP's HTML5 Apps Repository** to an **SAP Launchpad Service** site.
126+
127+
You can, now, test it at your will, in the same way you did using the **Fiori Preview** in **step 6** of the tutorial: [**Prepare the SAP SuccessFactors Extension UI with CDS Annotations**](cap-extend-sfsf-ui-annotations).
128+
129+
And this is the **final step** to **Extend SAP SuccessFactors on SAP BTP with CAP**!
130+
131+
[DONE]
132+
[ACCORDION-END]
133+
134+
[ACCORDION-BEGIN [Step 6: ](Check Your Knowledge)]
135+
136+
[VALIDATE_1]
137+
[ACCORDION-END]
138+
139+
[ACCORDION-BEGIN [Step 7: ](Stretch Yourself)]
140+
141+
**Congratulations**! After having gone through and completed the tutorials in this group you should have successfully **Extended SAP SuccessFactors on SAP BTP with CAP** with a **simple project management application**!
142+
143+
But there's a lot of room for improvement in this solution, so don't miss the opportunity to challenge yourself and go deeper in learning the technologies showcased in this tutorials group by enhancing your application!
144+
145+
Here's a list of suggestions for enhancements:
146+
147+
- Directly assign an SAP SuccessFactors employee to a project as the "Project Owner" adding the corresponding assignment to the employee profile
148+
- Implement a mechanism to remove the assignment from the employee profile whenever he/she is removed from a project team (either by member deletion or replacement). The same would apply to the "Project Owner"
149+
- Implement validations such as: projects must start at least from the current date (not before) and must end after the start date and activities due dates must be within the project's start and end dates
150+
- Implement a mechanism to avoid activities to be added before there's at least one member in the team to assign them
151+
- Implement restrictions such as: users can only view/manage projects that have been created by themselves, only employees who report to the project creator can be assigned as team members, etc.
152+
- And so on, and so forth… the sky's the limit!
153+
154+
[DONE]
155+
[ACCORDION-END]
39.5 KB
Loading
22.2 KB
Loading
53.1 KB
Loading

0 commit comments

Comments
 (0)