Experience SAP HANA Cloud Portal

Size: px
Start display at page:

Download "Experience SAP HANA Cloud Portal"

Transcription

1 Experience SAP HANA Cloud Portal Develop business applications for SAP HANA Cloud Portal sites, leveraging on-premise and cloud solutions, simply and intuitively.

2 Table of Contents Exercise 1: Setting up the Work Environment Prerequisites: set up your environment Access your trial account Access SAP Web IDE Activate Cloud Portal Plugin for SAP Web IDE Get the source code... 6 Exercise 2: Creating Lightweight Applications Create the Fiori designed application Create a project in SAP Web IDE Import the source code into your project View the project tree Create the Opportunity Form Application Import the source code into your SAP Web IDE Create the model and connect it to the view Cross-site request forgery Create Opportunity Create the Partner Registration Application Import the source code into your SAP Web IDE Add the OpenSocial specification xml file to the application Deploy and manage your code in the SAP HANA Cloud Platform Git Deploy the fioriwidget application to SAP HANA Cloud Platform Deploy the destination file Start your application Customize the fioriwidget application Preview fioriwidget in SAP Web IDE Customize the fioriwidget application Commit your changes and create a new application version Exercise 3: Adding Widgets to Cloud Portal Test the URLs to the widget files Access Cloud Portal Manually create widgets for use in Cloud Portal Exercise 4: Creating and Configuring a New Cloud Portal site Manage files in the document repository Import a site from the Cloud Portal Market Place Exercise 5: Adding Content and Managing Pages in Your Site Update the Register page Update the List and Create Opportunity subpages Restrict access to the Opportunities page Reorder the site pages

3 Exercise 6: Managing Page Templates in Your Site Add a new page template and assign it to a page Edit the new page template Open the template editor and remove the menu Edit the left panel Edit the header Edit the right panel and the footer Edit the default page template Exercise 7: Managing Roles and Groups Define organization roles View the roles in Cloud Portal Restrict access to the site and pages Explore page authorizations Remove roles from pages Exercise 8: Previewing the Site and Publishing it Preview the site Publish the site and edit the site URL View the site in consumption mode Access the site with your mobile device View the site usage analytics Exercise 9: Adjusting the Site Layout and Theme Download the theme Edit general settings of the site Upload the new theme and apply it to the site Appendix: Setting up Your Trial Account

4 Welcome Welcome to our hands-on for SAP HANA Cloud Portal site and content development. We will guide you in developing widgets for your Cloud Portal site, deploying them to SAP HANA Cloud Platform, and then building your complete site in SAP HANA Cloud Portal. After this session, you will have the knowledge and skills to: Work in SAP Web IDE to develop SAPUI5 applications Manage your development projects in your own Git repository Deploy your applications to the cloud as Cloud Portal widgets Create Cloud Portal sites and populate the site pages with the content that you have developed Enhance a site layout and theme Preview sites and publish them Exercise Agenda 1. Setting up the Work Environment To begin, you will activate your SAP HANA Cloud trial account (if you haven t already), access and activate SAP Web IDE, enable the Cloud Portal plugin for the Web IDE, and learn about the online cloud-based tools that you will use to develop your widgets for your portal site. 2. Creating Lightweight Applications In this section, you will develop SAPUI5-based applications in the SAP Web IDE, and store them in a dedicated Git repository. 3. Adding Widgets to Cloud Portal You will then deploy your applications to SAP HANA Cloud, and add them as widgets to SAP HANA Cloud Portal. 4. Creating and Configuring a New Cloud Portal Site Once your content is ready, you will create a new Cloud Portal site based on an existing site that you import from the Cloud Portal Market Place. 5. Adding Content and Managing Pages in Your Site In this exercise, you will focus on finalizing your page structure. 6. Managing Page Templates in Your Site You will learn how to use and customize page templates to create different page layouts. 7. Managing Roles and Groups In this section, you will learn how to define organization roles and use them to restrict site and page access to selected groups of users. 8. Previewing the Site and Publishing It Before you publish your site for end users, you can preview it on the different devices. 9. Exploring Advanced Site Management and Authoring Features Once your site is published, you can learn about additional features for building your Cloud Portal sites. Prerequisites You have established a trial account for SAP HANA Cloud Portal and have your SAP ID or SCN credentials. Note: You will need to use the name and password of your trial account in some of the exercises. Good luck with your content development. 3

5 Exercise 1: Setting up the Work Environment In this exercise, you will initiate a free SAP HANA Cloud trial account, start SAP Web IDE and enable the Cloud Portal project plugin for it Prerequisites: set up your environment You have a trial HANA Cloud account. If you have not set up your account, see the Appendix for the relevant instructions Access your trial account 1. Open your Chrome browser. 2. Access the SAP HANA Cloud Platform cockpit: a. Go to b. Log on with your SAP ID or SCN credentials. 3. From the side-panel menu at the left, click Services. 4. From the Services list, click Enable to activate SAP HANA Cloud Portal. SAP HANA Cloud Portal opens, displaying the Site Directory Access SAP Web IDE All HANA Cloud Platform trial accounts have access to the new SAP Web IDE application. Users can instantly start developing in this web environment by accessing it from their trial account s cockpit. 1. In the side-panel menu at the left of the HANA Cloud Platform cockpit, click Subscriptions. 2. Under the Subscribed HTML5 Applications table, notice the webide application. 3. Click the webide link in the Name column. The webide application cockpit screen opens. 4. Click the Application URL link to launch SAP Web IDE. This may take a few seconds. 4

6 SAP Web IDE opens Activate Cloud Portal Plugin for SAP Web IDE To enable the new Cloud Portal plugin for SAP Web IDE, we need to configure the Web IDE s plugin settings. 1. Switch back to your SAP Web IDE 2. In the SAP Web IDE main menu at the top, go to Tools > External Plugins. 3. If prompted for authentication, enter your SAP ID or SCN credentials. 4. From the Plugin Repository dropdown list, select SAP Plugins. 5

7 5. Check the Enabled checkbox to enable the SAP HANA Cloud Portal external plugins. 6. Click OK 7. From your Chrome browser, click F5 or to apply the changes Get the source code 1. In your Chrome browser, navigate to Note: If prompted to Select a certificate click Cancel to continue. 2. Click on cloud-portal-pcm.zip and save the file to your file system. 3. Extract the ZIP file, which contains the following subfolders: SAP Web IDE project folders, which contain the solution source code for this exercise: o fioriapp o opportunityform 6

8 o Resources: o o o o partnerregistration Destinations: the destination files that enable connections from your trial account to external systems required for this exercise (detailed information about destinations follows). Documents: the soft-copy version of this exercise. You can use it to easily copy and paste the needed code. Project ZIPs: Three ZIP files that contain the projects to be imported into your SAP Web IDE. Static Content: Contains the various static resources required for this exercise 7

9 Exercise 2: Creating Lightweight Applications In this exercise, you will develop SAPUI5-based lightweight applications in your SAP Web IDE. The applications consist only of front-end code. All applications use connectivity to a Cloud for Customers (C4C) back-end instance to consume or persist data through OData services. You will manage each set of application code and resources in a dedicated Git repository that is automatically allocated to your SAP HANA Cloud Platform account upon deployment. At the end of this exercise, the following applications will be ready for consumption in your Cloud Portal. Name fioriwidget opportunityform partnerregistration Description A Fiori designed application displaying a list of records from the Cloud for Customers Opportunity entity in the master-detail paradigm A form that enables users to create a new opportunity record in the Cloud for Customers back end A form that enables users to register for the partner portal in the Cloud for Customers back end 2.1. Create the Fiori designed application We want to create a Fiori-like SAPUI5 master-detail application, to display specific data coming from the Cloud for Customers Opportunity business object Create a project in SAP Web IDE Create a new SAP HANA Cloud Portal Widgets project, in which you will develop your Fiori-like application. 1. Open your SAP Web IDE. 2. In the main menu, click File > New > Project. The New Project wizard opens. 3. Enter the following exact project name: fioriwidget It is important to enter this name exactly, and to use lowercase letters. 4. Click Next. 8

10 5. In the second step, Select a Template, choose the SAP HANA Cloud Portal Widgets option from the dropdown list. 6. Click on the Cloud Portal SAPUI5 Starter Widget tile. 7. Click Next. A list of Open Social features supported by the Cloud Portal Open Social container is displayed. 8. Mark the first and last features for inclusion in your widget: a. SAP UI5 integration [sap-xhrwrapper]: Proxifies requests from our application code, enabling us to perform client-to-client requests through the SAP HANA Cloud Platform proxy b. Site Navigation [sap-navigation]: Allows navigation from the widget to other pages in the Cloud Portal site 9. Click Next. 10. Click Finish. A new project is created in our project panel. 9

11 Import the source code into your project Import the application s source code, located under:..\ cloud-portal-pcm\resources\project ZIPs\fioriapp.zip 1. Open your SAP Web IDE. 2. Right-click on the fioriwidget project root and click Import > Archive. The Import Archive dialog box opens. 3. Browse to the Project Zips folder under the cloud-portal-pcm folder ( \cloud-portal-pcm\resources\project Zips\) that you unzipped previously. 4. Select the ZIP file named fioriapp and click Open. Make sure that you import the correct ZIP file named fioriapp.zip; if you have questions, consult with the instructors. 5. Click Import. 6. Click OK on the confirmation dialog 10

12 You ve successfully created a new Cloud Portal Widget project and imported the implemented source code for its Fiorilike application. Your project tree should look like this: View the project tree From the folder hierarchy at the left, expand the fioriwidget project. The view folder contains the JavaScript resources for this application, separated according to the MVC pattern. splitapp.controller.js is responsible for setting the application s data model to the application s view. This is done in the oninit method splitapp.view.js is responsible for building the application UI. The various UI elements are initiated and returned in the createcontent method. Under the project s root folder, you can find the following resources: project.json is the descriptor of the SAP Web IDE projects. index.html serves as the end point for our application. It builds the view of the application linked to its dedicated controller and places it inside the application markup. neo-app.json describes the application welcome file, required destination files for connectivity, authentication level and so on. fioriwidget.spec.xml is the specification XML file that enables the application to run inside the Cloud Portal OpenSocial container. The file points to the SAPUI5 application s index.html and contains the required OpenSocial features that we selected in step

13 2.2. Create the Opportunity Form Application We want to create an SAPUI5 form that allows users to create a new Sale s Opportunity record and persist it in the Cloud for Customers back-end system Import the source code into your SAP Web IDE Import the SAP Web IDE projects that you extracted from the ZIP file into SAP Web IDE. 1. Open your Web IDE. 2. Click on the root Local folder. 3. Right-click and click New > Folder. The Create Folder dialog box opens. 4. In the Folder name field, enter opportunityform, and click Create. The new folder is created under the main Local folder. 5. Right-click on the opportunityform folder and click Import > Archive. The Import Archive dialog box opens. 6. Click Browse in the Open dialog box, and navigate to the ProjectZIPs folder under the folder that you extracted (...\cloud-portal-pcm\resources\project ZIPs). 7. Select opportunityform.zip and click Open. 12

14 8. Click Import. The opportunityform source code is imported into the Web IDE environment. When you finish, the Web IDE should look like this: Create the model and connect it to the view The form.view.js creates the SAPUI5 elements needed to display a list of customized rows. The controller creates a model object in order to connect the actual back-end data (model) to the UI (view) in a twoway mode for reading and creating data. The model object references a specific OData service in this example, the OpportunityCollection service supporting CRUD operations on data from the Opportunities business object. This is accomplished in the oninit function, which is one of the four hook methods available in the controller. 1. From your SAP Web IDE environment, go to the opportunityform project. 2. Browse to the view folder. 3. Open the form.controller.js file. 4. Look for the oninit method. 5. Create an ODataModel and bind it to the view. 13

15 a. Instantiate a new sap.ui.model.odata.odatamodel object instance. (Notice that the constructor receives the service URL as a parameter (defined at the top) and a Boolean for receiving the results in JSON format.) var odatamodel = new sap.ui.model.odata.odatamodel( this.odataserviceurl, true ); b. Bind the omodel object to the application view. this.getview().setmodel(odatamodel); 6. Save the file by clicking File > Save or by pressing Ctrl+S. Your oninit method should look like this: oninit: function() { /**** * Place your code here */ var odatamodel = new sap.ui.model.odata.odatamodel( this.odataserviceurl ); this.getview().setmodel(odatamodel); /* * ******/ /**** * Place your code here */ /* * ******/ }, 14

16 Cross-site request forgery To prevent cross-site request forgery, OData service providers protect their resources by using a CSRF token. Any client that requests a change in the service provider s back-end resources must initially perform a GET operation with an x-csrf-token: fetch header in its request. The response from the service provider will then contain a CSRFtoken key. The client should use this token in its header when performing any state changing requests on the service provider for the rest of his session. The ODataModel API includes an easy-to-use implementation of this procedure. 1. From your SAP Web IDE environment, go to the opportunityform project. 2. Browse to the view folder. 3. Open the form.controller.js file. 4. Complete section of the oninit method by handling the security token: Use the auto-complete (Ctrl + space bar) on the odatamodel object instance to explore its available methods and find the relevant one. The method receives two callback functions as parameters already implemented in the code. 5. Save the file by clicking File > Save or by pressing Ctrl+S. odatamodel.refreshsecuritytoken(this.refreshtokensuccess, this.refreshtokenerror, true); When done, the oninit method of your form.controller.js file should look like this: oninit: function() { /**** * Place your code here */ var odatamodel = new sap.ui.model.odata.odatamodel( this.odataserviceurl ); this.getview().setmodel(odatamodel); /* * ******/ /**** * Place your code here */ odatamodel.refreshsecuritytoken(this.refreshtokensuccess, this.refreshtokenerror, true); /* * ******/ }, 15

17 Create Opportunity Using the sap.ui.model.odata.odatamodel APIs to create a new record in the back end performs a POST operation with the payload data of the new records. In this part, we will complete the implementation of the callback method createopportunity, invoked from the view when the user clicks the Register button and creates the new opportunity record in the back end. 1. From your SAP Web IDE environment, go to the opportunityform project. 2. Browse to the view folder 3. Open the form.controller.js file. 4. Find the createopportunity method. 5. Notice the oentry variable, which contains the opportunity properties and values read from the form. 6. Create a new params map variable with success and error keys pointing to the already-implemented createopportunitysuccess and createopportunityerror methods. var params = {}; params.success = this.createopportunitysuccess; params.error = this.createopportunityerror; 7. Invoke the create method of the ODataModel with the Opportunity service path, the new entry, and the parameter map. omodel.create('/opportunitycollection', oentry, params); 8. Save the file. When done, the createopportunity method in your form.controller.js file should look like this: createopportunity: function(){ var core = sap.ui.getcore(); var viewelement = core.byid("form"); viewelement.setbusy(true); var omodel = viewelement.getmodel(); var oentry = this.createentryobject(); /**** * Place your code here */ var params = {}; params.success = this.createopportunitysuccess; params.error = this.createopportunityerror; omodel.create('/opportunitycollection', oentry, params); /* * ******/ }, 16

18 Create the Partner Registration Application We created a SAPUI5 form that allows partners to register themselves for the Partner Portal. The registration will create a new record in the Cloud for Customers back-end system. The implemented lightweight application is similar to the previous two applications. Browse through the application resources and note the use of the ODataModel APIs and the destination file Import the source code into your SAP Web IDE Import the projects that you extracted from the ZIP file into SAP Web IDE. 1. Open your SAP Web IDE. 2. Right-click on the root Local folder and click New > Folder. The Create Folder dialog box opens. 3. In the Folder name field, enter partnerregistration, and click Create. The new folder is created under the main Local folder. 4. Right-click on the partnerregistration folder and click Import > Archive. The Import Archive dialog box opens. 5. Click Browse in the Open dialog box, and navigate to the ProjectZIPs folder under the folder that you extracted (...\cloud-portal-pcm\resources\project ZIPs). 6. Select partnerregistration.zip and click Open. The Import Archive dialog box opens. 17

19 7. Click Import. The partnerregistration source code is imported into SAP Web IDE. When you finish, the SAP Web IDE hierarchy should look like this: Add the OpenSocial specification xml file to the application In this section, we will create a specification XML (spec XML) file that defines the required dependencies and enables the rendering of the application as a widget by the OpenSocial container (Shindig ) in SAP HANA Cloud Portal. 1. In your SAP Web IDE, go to the partnerregistration project. 2. Right-click on the project folder, and click New > File. The Create File dialog box opens. 3. Enter the file name partnerregistration.spec.xml and click Create. 18

20 4. Paste the following code into the new file: <?xml version="1.0" encoding="utf-8"?> <Module> <ModulePrefs title="partner Registration Form"> <Require feature="sap-xhrwrapper"></require> </ModulePrefs> <Content href="index.html" view="authoring, consumption, mobile, preview"></content> </Module> 5. Save the file. Note: The specification XML file points to the SAPUI5 application. In addition, the required feature sap-xhrwrapper, enables you to load SAPUI5 modules and any related application resource, and to perform OData AJAX calls. This feature "proxifies" all AJAX requests using the Cloud Portal proxy Deploy and manage your code in the SAP HANA Cloud Platform Git In this part of the exercise, we will deploy our SAP Web IDE application project to SAP HANA Cloud Platform, and manage the source code in the Git repositories allocated for the application. The application deployment to SAP HANA Cloud Platform automatically creates a Git repository that stores all artifacts of our project that have been staged, committed and pushed to it Deploy the fioriwidget application to SAP HANA Cloud Platform The following steps describe the deployment of the fioriwidget project and should be repeated for the opportunityform and partnerregistration projects as well. 1. From the SAP Web IDE project hierarchy, select the fioriwidget project node. 2. Right-click and click Deploy > Deploy to SAP HANA Cloud. The SAP HANA Cloud Server Connection Properties dialog box opens. 19

21 3. Enter the following properties: a. Application Name: fioriwidget (lowercase only). b. Password: your SAP HANA Cloud Platform trial account/scn password. c. Create Version: Create a version from the code that you are deploying by selecting the checkbox and entering a version name (for example: 1.0). d. Active: Select the checkbox to activate and start the newly-created version of your application. 4. Click Deploy, and after a successful deployment, click OK in the Success dialog box Deploy the destination file The deployment has created Git repositories for our application. We can now create versions of the application based on individual commits that we push to each Git repository from our SAP Web IDE environment. We can then activate specific versions of our application and make them available for consumption. These actions are available through the applications dashboard. 1. Go back to the SAP HANA Cloud Platform cockpit. 2. Click HTML5 Applications in the navigation menu at the left. 3. Notice that the fioriwidget application that you deployed is now available in your account. 20

22 4. Click the link of your newly-created application to navigate to the applications dashboard. Notice the red square in the Referenced Destinations table. This means that a destination file named c4cservices, required by the fioriwidget application (as we stated in the applications neo-app.json file), is missing from our Cloud Platform account. Our application will fail to connect without it. 5. Switch back to the SAP HANA Cloud Platform cockpit by clicking on the Account ID. 6. Select Destinations in the navigation menu at the left. 7. Above the Destinations table, click Import from File to import the missing destination. 21

23 8. Browse to the Destinations folder under the cloud-portal-pcm project ( \cloud-portal-pcm\resources\destinations) that you unzipped previously. 9. Select the destination file named c4cservices and click OK. The destination is uploaded, and you can view its configuration properties. 10. Click Save. The destination file is uploaded and takes effect after 5 minutes maximum Start your application 1. Navigate back to the fioriwidget application dashboard by clicking HTML5 Applications > fioriwidget. 2. Notice that the missing c4cservices destination file is now available (status green). 22

24 3. At the top of the State table, check that the application has started. If the icon indicates that has is not, start it by clicking the (Play) icon. Now that we have an active version of the fioriwidget application, we can run it by clicking on the link displayed in the Application URL field Customize the fioriwidget application Up till now you ve developed the applications in your SAP Web IDE and deployed them to your SAP HANA Cloud Platform account. In this section, you will add some changes to the fioriwidget application and preview them in SAP Web IDE. Once your changes are complete, you will commit and push your changes to the application s Git repository (allocated by the Cloud Platform upon initial deployment) using the Git Client pane in SAP Web IDE Preview fioriwidget in SAP Web IDE Preview the current state of the fioriwidget application before changing it. 1. Switch back to SAP Web IDE. 2. Open the fioriwidget project tree. 3. Select the index.html file. 4. Click to run the application in the application preview The Application Preview opens in a new Chrome tab, displaying the fioriwidget application runtime. 23

25 5. Click the button at the top right. The application preview changes from portrait to landscape and vice versa. 6. Click the Resolution Tool Bar at the top left: The application preview changes to the selected resolution: Large Desktop, Medium Tablet, Small Smartphone, or Custom Customize the fioriwidget application In this section, we will add an additional attribute to the details header of selected opportunity records. 1. Switch back to SAP Web IDE. 2. Navigate to the splitapp.view.js file under fioriwidget > view. 3. Double-click to open the file for edit 4. Click Ctrl+F to open the SAP Web IDE search bar, and search for the method name builddetailpage 5. Complete section in method builddetailpage by creating an ObjectAttribute, binding the OData attribute AccountName to it and adding it to the details header. At the end of the section, your code should look like this: /**** * Place your code here */ var newattribute = new sap.m.objectattribute({ title: "Account Name", text: "{" + selectedcontext.getpath() + "/AccountName}" }); header.addattribute(newattribute); /* * ******/ 6. Save your changes. 24

26 5. Click the Run button to preview the changes: Commit your changes and create a new application version 1. Switch back to SAP Web IDE. 2. Click on the fioriwidget root folder. 3. In the right-panel menu, click to open the Git pane. Here you can view all of the resources that have been modified in the project, stage them for commit, and push them into the branch. 25

27 1. Select the Stage All checkbox to stage all of your modifications for commit 2. In the Commit Description text box at the bottom, describe the changes that you are committing. 3. Click Commit and Push at the bottom left side of the Git pane. 4. Select the origin/master branch. The Authentication dialog box opens. 5. Enter your HANA Cloud Platform trial account/ SCN User ID and password. 6. Click OK. 7. When the Push Completed information dialog box opens, confirm the push. Now that your latest changes have been committed and pushed, we can return to the applications cockpit in the SAP HANA Cloud Platform to create a new activated version for our fioriwidget application. 1. Go back to SAP HANA Cloud Platform Cockpit. 2. In the navigation menu at the left, click HTML5 Applications. 3. Click on the fioriwidget link to navigate to the applications dashboard. 4. In the navigation menu, click the Development option. 5. In the History of Branch Master table, notice that the latest commit now appears in the list 6. Click the icon in the top row of the Create Version column; this creates an application version from your latest commit and opens the New Version dialog box. 7. In the Version field, enter a version number, such as Click Add to create the new version. 9. In the navigation menu, click Version Management. 26

28 10. Select the version that you just created and click the (Activate) icon to activate this version. The Restart Application dialog box opens. 11. Click Yes. The updated fioriwidget is now activated and ready. Exercise 3: Adding Widgets to Cloud Portal In this exercise, you will consume your HTML5 applications as OpenSocial widgets running on HANA Cloud Portal. At the moment, applications running from Git should be manually added to the Content Catalog by a Cloud Portal administrator, who can then create the widgets in the CONTENT tab Test the URLs to the widget files OpenSocial widgets are defined by an spec XML file. The HTML5 application that we created and deployed contains this file. In this section, we will build the URL and make sure that it is accessible 1. Navigate back to the fioriwidget application dashboard. 2. Click HTML5 Applications > fioriwidget. 3. Copy the ApplicationURL value this is the root folder of your deployed project. For example 4. The spec XML URL is the concatenation of the Application URL and the relative path of the spec.xml file. For example: 5. In a new browser tab, enter the URL for the fioriwidget spec.xml file and verify that it is available: 27

29 If the XML is available, the project version has been created successfully and the widget is ready to be created Access Cloud Portal 1. Open your Chrome browser. 2. Access the SAP HANA Cloud Platform cockpit: a. Go to b. Log on with your SAP ID or SCN credentials. 3. From the side-panel menu at the left, click Services. 4. From the Services list, click Enable to activate SAP HANA Cloud Portal. SAP HANA Cloud Portal opens, displaying the Site Directory. 28

30 3.3. Manually create widgets for use in Cloud Portal You need to manually add HTML5 applications running from Git to the Content Catalog. Repeat the following process for each of the three applications. From your Cloud Portal trial account: (See Appendix: Setting up Your Trial Account in the last page) 1. Navigate to the CONTENT tab. 2. Click the button. The Add Widget dialog box opens. 3. Enter the following parameters: Type: OpenSocial Name: Fiori Widget/ Opportunity Form/ Registration Form (respectively) Description: <free text> URL: The URL to the spec XML file of your HTML5 application. For example: fioriwidget partnerregistration opportunityform p trial.dispatcher.hanatrial.ondemand.com/spec.xml 4. Click Save. The new application is now available for use as a widget in the Cloud Portal sites. 29

31 Exercise 4: Creating and Configuring a New Cloud Portal site In this exercise, you will import a site from the Cloud Portal Market Place. You will use your trial account to perform Cloud Portal site authoring and configuration Manage files in the document repository 1. Click the DOCUMENTS tab above the Site Directory. (If your session has timed out, refresh the page using F5.) 2. Create a new folder: Click the (New folder) toolbar button, change the folder name to Assets, and press Enter. 3. Click the Assets folder to open it and create a subfolder. 4. Click the (New folder) toolbar button again, and name the new folder Partner. 5. Upload a file to the folder: Click the (Upload file to the repository) toolbar button and in the Open dialog box, browse to the header.png file saved on your file system (...\cloud-portal-pcm\resources\static Content). A notification message is displayed when the file is successfully uploaded. 6. Repeat the same step to upload the SAP_logo.png file. 7. In the folder tree at the left, click the Public folder, which contains files used in this site and other files that can be publically shared by getting their URL from the repository. 8. Click the (Upload file to the repository) toolbar button again, and browse to the following image file: site_bg.png. 9. Return to the Home folder and in the Search field at the top right, type site_bg. The file is displayed in the search results. 30

32 4.2. Import a site from the Cloud Portal Market Place 1. Click the MARKET PLACE tab. All sites available in the Market Place are displayed: 2. Hover over the Atomic Partner Portal site card. 3. Click More info to view detailed information about this site. 4. Click + Get this Site to import the Atomic Partner Portal site to your trial account. A notification message is displayed when the site has been added to your Site Directory. This may take a few seconds. 5. Click the SITE DIRECTORY tab to view your available sites. You will see the following new site card: 6. Hover the Partner Portal site and click Edit to open the site for editing. 31

33 Exercise 5: Adding Content and Managing Pages in Your Site In this exercise, you will learn how to add content to pages, expose the new application in your site, and manage pages by applying page-management capabilities Update the Register page 1. Click the Register page in the site menu. 2. Remove the existing Partner Registration Form widget using the (Widget options) menu. 3. From the side-panel menu, click to open the Content Catalog. 4. Find the Registration Form widget and drag it onto the page. 5. From the (Widget options) menu, click Design. The Design dialog box opens: 6. Click Set as full page and close the close the dialog box Update the List and Create Opportunity subpages 1. In the site menu at the top, hover over the Opportunities page and click on the List subpage. 2. Remove the existing Leads and Opportunities widget using the (Widget options) menu. 3. Open the Content Catalog, find the Fiori Widget, and drag it onto the page. 4. Set the widget to show as full page. 5. Under the Opportunities page, open the Create Opportunity subpage. 32

34 6. Remove the existing Create New Opportunity widget. 7. Open the Content Catalog, find the Opportunity Form widget, and drag it onto the page. 8. Resize the form widget to fit the content area Restrict access to the Opportunities page Each page in the site inherits its page access level from its parent page. You can restrict the access level for a specific page and its related subpages to be available for authenticated users only. 1. From the side-panel menu, click (Access Management). The Access Management panel opens, displaying a structured list with the site name and page hierarchy. 2. In the Site and Page Access section, click the Opportunities page. The Page Access Permissions screen for the Opportunities page opens. 3. Select the Set stricter access permissions radio button. 4. Click the Authenticated icon as the access level for the page. Only authenticated users will be able to access this page and its subpages. The stricter access level icon now appears next to the Opportunities page entry. 33

35 5.4. Reorder the site pages Authors can drag pages up or down, and to the left and right, to reorder the pages in the site navigation menu. Dragging a page to a new position may change the page access level. 1. From the side-panel menu, click (Page Management). The Page Management panel opens. 2. In the list of page items, drag the News page down and place it after the Marketing page. 3. Expand the Opportunities page and drag the Dashboard page left and up, placing it after the News page. 4. Close the Page Management panel and open the Access Management panel. 5. Click the Dashboard page. The Page Access Permissions screen for the Dashboard page opens. 6. Note that the access level for the page is now Public, which is the site (parent) access level. 34

36 Exercise 6: Managing Page Templates in Your Site In this exercise, you will learn how to customize page templates to fit your layout needs. You can customize an existing page template by resizing its sections, and modifying their content items. The site author can assign different page templates for use in different pages of the site Add a new page template and assign it to a page 1. In the side-panel menu, click (Design Settings). 2. Click the Manage Templates button. The Available Page Templates screen opens, displaying a list of the page templates that are available for use in your site. Page templates are stored in the Cloud Portal repository. 3. To import a page template from the repository, click (import template) 4. Select the Standard template and click Import. The template is added for use in this site. 5. Click on the template name (Standard) and change it to Custom. 6. From the side-panel menu, click (Page Management). 7. In the Dashboard page entry, click the (Page options) menu, and change the Page Template from Partner Portal to Custom Template Edit the new page template Open the template editor and remove the menu 1. In the site navigation menu, open the Dashboard page, and hover over the page header to display the page template container. 2. Click to edit the new page template. 3. Drag the header resizing handle ( ) and adjust the header height to 150 pixels. 4. Go to the top right of the Navigation widget in the header, open the (Widget options) menu, and click Remove to delete the page navigation bar. 35

37 Edit the left panel 1. Adjust the left panel width to 140 pixels. 2. From the side-panel menu, click to open the Content Catalog. 3. In the Search field at the top, type Navigation Menu. 4. Hover over the widget thumbnail, and click the plus sign at the left to insert that widget in the left panel. 5. Resize the widget to fit the left panel container area Edit the header 1. Search for the Image Widget in the Content Catalog and click the plus sign on top of the widget thumbnail to insert the widget into the header. 2. Adjust the widget size to make the control buttons (Upload Image and Select from Repository) visible. 3. Click Select from Repository, and from the Partner sub-folder, select the SAP_logo.png file and click OK. 4. Add another Image widget to the header (as you did in the previous steps) and from the Partner sub-folder, select the header.png file. 5. In the (Widget options) menu, click Design. The Design dialog box opens: 6. Click on both Full Width and Full Height to stretch the image over the header container area. 7. Close the dialog box. 8. In the (Widget options) menu, click Send to Back Edit the right panel and the footer 1. Remove the Social Networks widget from the page footer. 2. Adjust the right panel width to 65 pixels. 3. Open the Content Catalog, find the Social Networks widget and click the plus sign at the right to insert that widget in the right panel. 36

38 4. Adjust the widget to accommodate a vertical view. 5. In the (Widget options) menu of the widget, click Edit and then click the Add Links button. 6. Click the YouTube icon, add the following URL: 7. Click OK. 8. Click (Close) in the side-panel menu to exit Edit Page Template mode. The Dashboard page now has a new unique page template Edit the default page template 1. From the site navigation menu in the left panel, select the Home page, hover over the page header, and click Edit to edit the Partner Portal template. 2. Open the Content Catalog, find the Logon widget, and click the plus sign on top of the widget thumbnail. 3. Position the widget at the top-right corner of the header 4. Click (Close) in the side-panel menu to exit Edit Page Template mode. 37

39 Exercise 7: Managing Roles and Groups A role is basically a collection of permissions that defines a function within a portal, to which users and/or groups are assigned. In this exercise, you will learn how to define organization roles for restricting site and page access to specific groups of users who have been authorized by the identity provider (SAP ID service or others) Define organization roles Organization roles are defined and managed in SAP HANA Cloud Platform Cockpit. 1. At the bottom of the side panel of the Authoring Space, click (Site Directory) to return to the Cloud Portal Site Directory. 2. Click the Cockpit link at the top right to open SAP HANA Cloud Portal Cockpit. 3. In the Content panel on the left, click Services. 4. In the SAP HANA Cloud Portal row of the Services table, click Manage Roles at the right. The Roles definition page opens. 5. Click New Role and name it Role A. 6. In the Individual Users block of Role A, click Assign. 7. In the User ID field, enter P and click Assign. 8. Repeat these steps to create a second role named Role B, with User ID P View the roles in Cloud Portal Once the organization roles have been defined in the cockpit, Cloud Portal administrators can view the roles in the Cloud Portal Admin Space. 1. Return to the Cloud Portal Site Directory and click the AUTHORIZATIONS tab. 2. Click the Organization Roles tab. The new roles that you just created are listed in the Available Organization Roles table. Refresh the page (F5) if you cannot see the roles. 38

40 7.3. Restrict access to the site and pages 1. Click the SITE DIRECTORY tab and open your site for editing. 2. From the side-panel menu, click (Access Management). The Access Management panel opens. 3. In the Site and Page Access section, click the site name (Partner Portal) at the top of the list. The Site Access Permissions screen opens. 4. Click the card with the plus sign. The Add Role dialog box opens, with the new roles listed in the Organization Role Name list. 5. Select both Role A and Role B and click Add. These roles are now available for assigning page access permissions to them. 6. In the site hierarchy list, click the Marketing page name, and at the left, select the Set stricter access permissions radio button. This allows you to assign roles to each page, rather than use the parent-level assignment as default. 7. Click the Role-Based icon as the access level for the page. 8. Hover over the Role A card, and click Allow Page Access, to give that role access to the page. 39

41 9. Click the News page name and select Set stricter access permissions again. 10. Select the Role-Based access level and assign Role B to that page. 11. Close the Access Management panel Explore page authorizations 1. From the side-panel menu, click (Publishing Options). The Publishing Options panel opens. 2. Click Publish and then click Publish again in the confirmation dialog box. Close the dialog box. 3. Click the Published Site link in the middle of the panel. A new browser tab opens, displaying the end-user site. 4. To explore the page authorizations mechanism, open a new browser using a new incognito window option: a. Access the site using the end-user link; only the public pages Home, Dashboard, and Register are displayed. b. Click Log On and enter the Role A user credentials: P / Abcd1234. All pages appear including the Opportunities page and its subpages, which are visible for authenticated users only, except the News page, which was assigned to Role B Remove roles from pages 1. Return to your site editing and click Access Management. 2. Click the Marketing page name, and at the left, select the Use parent-level access permissions radio button. 3. Click OK in the dialog box. This changed the current access permissions of the page to Public. 4. Repeat these steps to change the access permissions of the News page as well. 40

42 Exercise 8: Previewing the Site and Publishing it In this exercise, you will learn how to preview your site on a desktop, tablet, or smartphone, and then publish it to your clients. Once the site is published, you will be able to view the site in consumption mode and access it with your mobile device Preview the site When your site is ready, you can preview it as it will appear on different devices. 1. In the side-panel menu, click (Site Preview). 2. In the Site Preview panel, click the relevant icon to preview your site on desktop, tablet, or smartphone. A fully functional preview of the site, as it will appear on the selected device, is displayed. 3. Close the Site Preview panel Publish the site and edit the site URL 1. From the side-panel menu, click (Publishing Options - Modified). 2. Click Publish and then click Publish again in the confirmation dialog box. A notification dialog box opens, allowing you to access the site or scan its QR code. 3. Close the dialog box. 4. Open the Site Settings panel, and in the Site URL section, click the URL. The editable part of the URL is displayed in a text box. 5. Type Partner and press Enter. The name shortens the URL and makes it meaningful View the site in consumption mode 1. Open the Publishing Options panel. 2. Click the Published Site link in the middle of the panel. A new browser tab opens, displaying the end-user site Access the site with your mobile device 1. Return to the Authoring Space and open the Publishing Options panel. 2. Click the QR Code link to generate the code, and then scan it with your ipad/ iphone View the site usage analytics Administrators and authors can view statistical information related to the usage of their sites. 1. Click the ANALYTICS tab above the Site Directory. 2. In the date-range dropdown list at the top left, select Today. You can also view additional analytics, such as the device types used to access the site, browser types, and more. 41

43 Exercise 9: Adjusting the Site Layout and Theme Using the default theme provided by SAP HANA Cloud Portal, you can create a new theme based on your company s branding and site-design requirements. Cloud Portal supports LESS as the stylesheet for site theming Download the theme 1. Click the THEMES tab above the Site Directory. You use this screen to manage the themes that will be available to your site creators and authors. 2. Select the Partner Portal theme and click Download at the top of the table. The theme file is downloaded. 3. Rename the file to partner_new.less. 4. Open the saved file in Notepad/ Notepad Edit general settings of the site Note: In the following sections, use the Copy and Paste functions to add the code snippets to your LESS file. Also, use Search (Ctrl+F) as needed. 1. Change the font color of the navigation bar. Search for LESS parameter and change its value as 2. Change the site background image as follows: a. Search for LESS parameter, and remove the value of the URL. b. Go back to the Cloud Portal Site Directory and click the DOCUMENTS tab. c. Navigate to the Public folder and search for the background image that you have already uploaded. d. Hover over Share Link and copy the path (URL) of the link. e. Paste the URL in the brackets. After the changes, the settings should look as url( /portal/v1/contentrepository/public/site_bg.jpg'); 9.3. Upload the new theme and apply it to the site 1. Back in the THEMES tab of Cloud Portal, click Add Theme. The Add Theme dialog box opens. 2. Enter the following information: Name: New Partner Portal Theme Description: <free text> Theme Creator: <your name> LESS File: the partner_new.less file that you edited in the previous steps. 3. Click Add. The new theme is added to the Available Themes table. 4. Go back to the Site Directory, open your site for editing, and in the Design Settings panel, apply the theme to your site. 42

44 Appendix: Setting up Your Trial Account 1. In your browser, go to 2. Click Register. 3. Fill in the form, then scroll to the end of the license agreement and select the checkbox. 4. Click Register. You will receive an notification. 5. Click Continue, A message appears with your trial account name. 6. On your account page, in the side-panel menu at the left, click Services. 7. From the Services list, click Enable to activate SAP HANA Cloud Portal. 43

45 Copyright 2015 SAP SE SE or an SAP SE affiliate company. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without the express permission of SAP SE. The information contained herein may be changed without prior notice. Some software products marketed by SAP SE and its distributors contain proprietary software components of other software vendors. National product specifications may vary. These materials are provided by SAP SE and its affiliated companies ( SAP SE Group ) for informational purposes only, without representation or warranty of any kind, and SAP SE Group shall not be liable for errors or omissions with respect to the materials. The only warranties for SAP SE Group products and services are those that are set forth in the express warranty statements accompanying such products and services, if any. Nothing herein should be construed as constituting an additional warranty. SAP SE and other SAP SE products and services mentioned herein as well as their respective logos are trademarks or registered trademarks of SAP SE in Germany and other countries. Please see for additional trademark information and notices.

Creating a Fiori Starter Application for sales order tracking

Creating a Fiori Starter Application for sales order tracking SAP Web IDE How-To Guide Provided by Customer Experience Group Creating a Fiori Starter Application for sales order tracking Applicable Releases: SAP Web IDE 1.4 Version 2.0 - October 2014 Creating a Fiori

More information

Citrix Receiver. Configuration and User Guide. For Macintosh Users

Citrix Receiver. Configuration and User Guide. For Macintosh Users Citrix Receiver Configuration and User Guide For Macintosh Users rev: 25.03.2015 https://access.sap.com/ TABLE OF CONTENTS Introduction... 3 Installation... 3 Accessing our portal... 3 Accessing from SAP

More information

How to Extend a Fiori Application: Purchase Order Approval

How to Extend a Fiori Application: Purchase Order Approval SAP Web IDE How-To Guide Provided by Customer Experience Group How to Extend a Fiori Application: Purchase Order Approval Applicable Releases: SAP Web IDE 1.4 Version 2.0 - October 2014 Document History

More information

Citrix Receiver. Configuration and User Guide. For Windows Users

Citrix Receiver. Configuration and User Guide. For Windows Users Citrix Receiver Configuration and User Guide For Windows Users rev: 26.01.2016 https://access.sap.com/ TABLE OF CONTENTS Introduction... 3 Installation... 3 Accessing our portal... 3 Accessing from SAP

More information

Learn About Analysis, Interactive Reports, and Dashboards

Learn About Analysis, Interactive Reports, and Dashboards Learn About Analysis, Interactive Reports, and Dashboards This document supports Pentaho Business Analytics Suite 5.0 GA and Pentaho Data Integration 5.0 GA, documentation revision February 3, 2014, copyright

More information

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts...

Table of Contents. Welcome... 2. Login... 3. Password Assistance... 4. Self Registration... 5. Secure Mail... 7. Compose... 8. Drafts... Table of Contents Welcome... 2 Login... 3 Password Assistance... 4 Self Registration... 5 Secure Mail... 7 Compose... 8 Drafts... 10 Outbox... 11 Sent Items... 12 View Package Details... 12 File Manager...

More information

Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02

Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02 Upgrade: SAP Mobile Platform Server for Windows SAP Mobile Platform 3.0 SP02 Windows DOCUMENT ID: DC80003-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All

More information

Sitecore InDesign Connector 1.1

Sitecore InDesign Connector 1.1 Sitecore Adaptive Print Studio Sitecore InDesign Connector 1.1 - User Manual, October 2, 2012 Sitecore InDesign Connector 1.1 User Manual Creating InDesign Documents with Sitecore CMS User Manual Page

More information

Extend the SAP FIORI app HCM Timesheet Approval

Extend the SAP FIORI app HCM Timesheet Approval SAP Web Integrated Development Environment How-To Guide Provided by Customer Experience Group Extend the SAP FIORI app HCM Timesheet Approval Applicable Releases: SAP Web Integrated Development Environment

More information

How to Configure an Example SAP Cloud Applications Studio (PDI) Solution for SAP Cloud for Customer

How to Configure an Example SAP Cloud Applications Studio (PDI) Solution for SAP Cloud for Customer How-To Guide Document Version: 1411 2014.12.15 How to Configure an Example SAP Cloud Applications Studio (PDI) Solution for SAP Cloud for Customer How to configure an example SAP Cloud Applications Studio

More information

Cloud Administration Guide for Service Cloud. August 2015 E65820-01

Cloud Administration Guide for Service Cloud. August 2015 E65820-01 Cloud Administration Guide for Service Cloud August 2015 E65820-01 Table of Contents Introduction 4 How does Policy Automation work with Oracle Service Cloud? 4 For Customers 4 For Employees 4 Prerequisites

More information

Quick Start Guide Mobile Entrée 4

Quick Start Guide Mobile Entrée 4 Table of Contents Table of Contents... 1 Installation... 2 Obtaining the Installer... 2 Installation Using the Installer... 2 Site Configuration... 2 Feature Activation... 2 Definition of a Mobile Application

More information

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide

HP Quality Center. Software Version: 10.00. Microsoft Word Add-in Guide HP Quality Center Software Version: 10.00 Microsoft Word Add-in Guide Document Release Date: February 2012 Software Release Date: January 2009 Legal Notices Warranty The only warranties for HP products

More information

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For

How To Change Your Site On Drupal Cloud On A Pcode On A Microsoft Powerstone On A Macbook Or Ipad (For Free) On A Freebie (For A Free Download) On An Ipad Or Ipa (For How-to Guide: MIT DLC Drupal Cloud Theme This guide will show you how to take your initial Drupal Cloud site... and turn it into something more like this, using the MIT DLC Drupal Cloud theme. See this

More information

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005

BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 BIGPOND ONLINE STORAGE USER GUIDE Issue 1.1.0-18 August 2005 PLEASE NOTE: The contents of this publication, and any associated documentation provided to you, must not be disclosed to any third party without

More information

Tutorial: BlackBerry Object API Application Development. Sybase Unwired Platform 2.2 SP04

Tutorial: BlackBerry Object API Application Development. Sybase Unwired Platform 2.2 SP04 Tutorial: BlackBerry Object API Application Development Sybase Unwired Platform 2.2 SP04 DOCUMENT ID: DC01214-01-0224-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This

More information

ORACLE BUSINESS INTELLIGENCE WORKSHOP

ORACLE BUSINESS INTELLIGENCE WORKSHOP ORACLE BUSINESS INTELLIGENCE WORKSHOP Integration of Oracle BI Publisher with Oracle Business Intelligence Enterprise Edition Purpose This tutorial mainly covers how Oracle BI Publisher is integrated with

More information

Create and run apps on HANA Cloud in SAP Web IDE

Create and run apps on HANA Cloud in SAP Web IDE SAP Web IDE How-To Guide Provided by Customer Experience Group Create and run apps on HANA Cloud in SAP Web IDE Applicable Releases: SAP Web IDE 1.4 Version 2.0 - October 2014 Document History Document

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.7.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

HP Application Lifecycle Management

HP Application Lifecycle Management HP Application Lifecycle Management Software Version: 11.00 Microsoft Word Add-in Guide Document Release Date: November 2010 Software Release Date: October 2010 Legal Notices Warranty The only warranties

More information

PORTAL ADMINISTRATION

PORTAL ADMINISTRATION 1 Portal Administration User s Guide PORTAL ADMINISTRATION GUIDE Page 1 2 Portal Administration User s Guide Table of Contents Introduction...5 Core Portal Framework Concepts...5 Key Items...5 Layouts...5

More information

SAS BI Dashboard 4.3. User's Guide. SAS Documentation

SAS BI Dashboard 4.3. User's Guide. SAS Documentation SAS BI Dashboard 4.3 User's Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2010. SAS BI Dashboard 4.3: User s Guide. Cary, NC: SAS Institute

More information

SQL Server 2005: Report Builder

SQL Server 2005: Report Builder SQL Server 2005: Report Builder Table of Contents SQL Server 2005: Report Builder...3 Lab Setup...4 Exercise 1 Report Model Projects...5 Exercise 2 Create a Report using Report Builder...9 SQL Server 2005:

More information

Scribe Online Integration Services (IS) Tutorial

Scribe Online Integration Services (IS) Tutorial Scribe Online Integration Services (IS) Tutorial 7/6/2015 Important Notice No part of this publication may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, photocopying,

More information

How to Extend SAP Cloud for Customer - SAP On- Premise Pre-Packaged Integration Content (PI/HCI)

How to Extend SAP Cloud for Customer - SAP On- Premise Pre-Packaged Integration Content (PI/HCI) How-To Guide SAP Cloud for Customer Document Version: 3.0-2015-09-03 How to Extend SAP Cloud for Customer - SAP On- Premise Pre-Packaged Integration Content (PI/HCI) Document History Document Version Description

More information

SPHOL326: Designing a SharePoint 2013 Site. Hands-On Lab. Lab Manual

SPHOL326: Designing a SharePoint 2013 Site. Hands-On Lab. Lab Manual 2013 SPHOL326: Designing a SharePoint 2013 Site Hands-On Lab Lab Manual This document is provided as-is. Information and views expressed in this document, including URL and other Internet Web site references,

More information

How-To Guide SAP Cloud for Customer Document Version: 1.0-2014-03-20. How to Configure SAP HCI basic authentication for SAP Cloud for Customer

How-To Guide SAP Cloud for Customer Document Version: 1.0-2014-03-20. How to Configure SAP HCI basic authentication for SAP Cloud for Customer How-To Guide SAP Cloud for Customer Document Version: 1.0-2014-03-20 How to Configure SAP HCI basic authentication for SAP Cloud for Customer Document History Document Version Description 1.0 First official

More information

Kentico CMS 7.0 User s Guide. User s Guide. Kentico CMS 7.0. 1 www.kentico.com

Kentico CMS 7.0 User s Guide. User s Guide. Kentico CMS 7.0. 1 www.kentico.com User s Guide Kentico CMS 7.0 1 www.kentico.com Table of Contents Introduction... 4 Kentico CMS overview... 4 Signing in... 4 User interface overview... 6 Managing my profile... 8 Changing my e-mail and

More information

Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal

Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal JOIN TODAY Go to: www.oracle.com/technetwork/java OTN Developer Day Oracle Fusion Development Developing Rich Web Applications with Oracle ADF and Oracle WebCenter Portal Hands on Lab (last update, June

More information

Installing and Configuring vcloud Connector

Installing and Configuring vcloud Connector Installing and Configuring vcloud Connector vcloud Connector 2.0.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced by a new

More information

SAP HANA Cloud Platform, Portal Service: Overview SAP Cloud Experience and SAP Portal Product Management May 2016

SAP HANA Cloud Platform, Portal Service: Overview SAP Cloud Experience and SAP Portal Product Management May 2016 SAP HANA Cloud Platform, Portal Service: Overview SAP Cloud Experience and SAP Portal Product Management May 2016 Agenda The SAP HANA Cloud Platform Introducing Portal Service Use Cases & Positioning Cloud

More information

Bitrix Site Manager ASP.NET. Installation Guide

Bitrix Site Manager ASP.NET. Installation Guide Bitrix Site Manager ASP.NET Installation Guide Contents Introduction... 4 Chapter 1. Checking for IIS Installation... 5 Chapter 2. Using An Archive File to Install Bitrix Site Manager ASP.NET... 7 Preliminary

More information

SAS Business Data Network 3.1

SAS Business Data Network 3.1 SAS Business Data Network 3.1 User s Guide SAS Documentation The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2014. SAS Business Data Network 3.1: User's Guide. Cary,

More information

IBM BPM V8.5 Standard Consistent Document Managment

IBM BPM V8.5 Standard Consistent Document Managment IBM Software An IBM Proof of Technology IBM BPM V8.5 Standard Consistent Document Managment Lab Exercises Version 1.0 Author: Sebastian Carbajales An IBM Proof of Technology Catalog Number Copyright IBM

More information

Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers

Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers Adobe Summit 2015 Lab 718: Managing Mobile Apps: A PhoneGap Enterprise Introduction for Marketers 1 INTRODUCTION GOAL OBJECTIVES MODULE 1 AEM & PHONEGAP ENTERPRISE INTRODUCTION LESSON 1- AEM BASICS OVERVIEW

More information

Manual POLICY PATROL SIGNATURES FOR OUTLOOK, GOOGLE APPS & OFFICE 365

Manual POLICY PATROL SIGNATURES FOR OUTLOOK, GOOGLE APPS & OFFICE 365 Manual POLICY PATROL SIGNATURES FOR OUTLOOK, GOOGLE APPS & OFFICE 365 MANUAL Policy Patrol Signatures This manual, and the software described in this manual, are copyrighted. No part of this manual or

More information

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source

Internet Explorer 7. Getting Started The Internet Explorer Window. Tabs NEW! Working with the Tab Row. Microsoft QUICK Source Microsoft QUICK Source Internet Explorer 7 Getting Started The Internet Explorer Window u v w x y { Using the Command Bar The Command Bar contains shortcut buttons for Internet Explorer tools. To expand

More information

Salesforce Customer Portal Implementation Guide

Salesforce Customer Portal Implementation Guide Salesforce Customer Portal Implementation Guide Salesforce, Winter 16 @salesforcedocs Last updated: December 10, 2015 Copyright 2000 2015 salesforce.com, inc. All rights reserved. Salesforce is a registered

More information

Manual to Access SAP Training Systems Technical Description for Customer On-Site Training

Manual to Access SAP Training Systems Technical Description for Customer On-Site Training Manual to Access SAP Training Systems Technical Description for Customer On-Site Training 2.0 draft version available as of Jan. 5th 2015. The final version will be available in January 2015 after valuable

More information

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3 SP02

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3 SP02 Tutorial: Mobile Business Object Development SAP Mobile Platform 2.3 SP02 DOCUMENT ID: DC01927-01-0232-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains

More information

SelectSurvey.NET Developers Manual

SelectSurvey.NET Developers Manual Developers Manual (Last updated: 6/24/2012) SelectSurvey.NET Developers Manual Table of Contents: SelectSurvey.NET Developers Manual... 1 Overview... 2 General Design... 2 Debugging Source Code with Visual

More information

Data Integration using Integration Gateway. SAP Mobile Platform 3.0 SP02

Data Integration using Integration Gateway. SAP Mobile Platform 3.0 SP02 Data Integration using Integration Gateway SAP Mobile Platform 3.0 SP02 DOCUMENT ID: DC02000-01-0302-01 LAST REVISED: February 2014 Copyright 2014 by SAP AG or an SAP affiliate company. All rights reserved.

More information

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab

UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab UP L18 Enhanced MDM and Updated Email Protection Hands-On Lab Description The Symantec App Center platform continues to expand it s offering with new enhanced support for native agent based device management

More information

Getting Started. SAP HANA Cloud End-to-End-Development Scenarios. Develop your first End-to-End SAP HANA Cloud Application Scenario. Version 1.4.

Getting Started. SAP HANA Cloud End-to-End-Development Scenarios. Develop your first End-to-End SAP HANA Cloud Application Scenario. Version 1.4. SAP HANA Cloud End-to-End-Development Scenarios Getting Started Develop your first End-to-End SAP HANA Cloud Application Scenario Version 1.4.2 1 Copyright 2014 SAP AG or an SAP affiliate company. All

More information

Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu)

Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu) Ingeniux 8 CMS Web Management System ICIT Technology Training and Advancement (training@uww.edu) Updated on 10/17/2014 Table of Contents About... 4 Who Can Use It... 4 Log into Ingeniux... 4 Using Ingeniux

More information

Ver. 4.10 USERS MANUAL

Ver. 4.10 USERS MANUAL Ver. 4.10 USERS MANUAL First Edition Riteapprove SE User Document v4.10 Copyright 2010 by S. Ten Nines California LLC. All rights reserved. No part of this guide may be reproduced in any way or by any

More information

Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3 SP02

Tutorial: Android Object API Application Development. SAP Mobile Platform 2.3 SP02 Tutorial: Android Object API Application Development SAP Mobile Platform 2.3 SP02 DOCUMENT ID: DC01939-01-0232-01 LAST REVISED: May 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication

More information

Adobe Dreamweaver CC 14 Tutorial

Adobe Dreamweaver CC 14 Tutorial Adobe Dreamweaver CC 14 Tutorial GETTING STARTED This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site

More information

Colligo Email Manager 6.0. Offline Mode - User Guide

Colligo Email Manager 6.0. Offline Mode - User Guide 6.0 Offline Mode - User Guide Contents Colligo Email Manager 1 Key Features 1 Benefits 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 3 Updating Your License Key 3 Managing SharePoint

More information

Config Guide. Gimmal Smart Tiles (SharePoint-Hosted) Software Release 4.4.0

Config Guide. Gimmal Smart Tiles (SharePoint-Hosted) Software Release 4.4.0 Config Guide Gimmal Smart Tiles (SharePoint-Hosted) Software Release 4.4.0 November 2014 Title: Gimmal Smart Tiles (SharePoint-Hosted) Configuration Guide Copyright 2014 Gimmal, All Rights Reserved. Gimmal

More information

Kentico CMS 7.0 Intranet Administrator's Guide

Kentico CMS 7.0 Intranet Administrator's Guide Kentico CMS 7.0 Intranet Administrator's Guide 2 Kentico CMS 7.0 Intranet Administrator's Guide Table of Contents Introduction 5... 5 About this guide Getting started 7... 7 Installation... 11 Accessing

More information

CMS Training. Prepared for the Nature Conservancy. March 2012

CMS Training. Prepared for the Nature Conservancy. March 2012 CMS Training Prepared for the Nature Conservancy March 2012 Session Objectives... 3 Structure and General Functionality... 4 Section Objectives... 4 Six Advantages of using CMS... 4 Basic navigation...

More information

Managing Existing Mobile Apps

Managing Existing Mobile Apps Adobe Summit 2016 Lab 324: Managing Existing Mobile Apps Adobe Experience Manager Mobile 1 Table of Contents INTRODUCTION 4 GOAL 4 OBJECTIVES 4 MODULE 1 AEM INTRODUCTION 5 LESSON 1 - AEM BASICS 5 OVERVIEW

More information

Crystal Reports Installation Guide

Crystal Reports Installation Guide Crystal Reports Installation Guide Version XI Infor Global Solutions, Inc. Copyright 2006 Infor IP Holdings C.V. and/or its affiliates or licensors. All rights reserved. The Infor word and design marks

More information

WebFOCUS BI Portal: S.I.M.P.L.E. as can be

WebFOCUS BI Portal: S.I.M.P.L.E. as can be WebFOCUS BI Portal: S.I.M.P.L.E. as can be Author: Matthew Lerner Company: Information Builders Presentation Abstract: This hands-on session will introduce attendees to the new WebFOCUS BI Portal. We will

More information

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES)

USING STUFFIT DELUXE THE STUFFIT START PAGE CREATING ARCHIVES (COMPRESSED FILES) USING STUFFIT DELUXE StuffIt Deluxe provides many ways for you to create zipped file or archives. The benefit of using the New Archive Wizard is that it provides a way to access some of the more powerful

More information

Adobe Summit 2015 Lab 712: Building Mobile Apps: A PhoneGap Enterprise Introduction for Developers

Adobe Summit 2015 Lab 712: Building Mobile Apps: A PhoneGap Enterprise Introduction for Developers Adobe Summit 2015 Lab 712: Building Mobile Apps: A PhoneGap Enterprise Introduction for Developers 1 Table of Contents INTRODUCTION MODULE 1 AEM & PHONEGAP ENTERPRISE INTRODUCTION LESSON 1- AEM BASICS

More information

Colligo Email Manager 6.0. Connected Mode - User Guide

Colligo Email Manager 6.0. Connected Mode - User Guide 6.0 Connected Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 2 Checking for Updates 3 Updating Your License

More information

Training Manual Version 1.0

Training Manual Version 1.0 State of Indiana Content Management System Open Text v.11.2 Training Manual Version 1.0 Developed by Table of Contents 1. Getting Started... 4 1.1 Logging In... 4 1.2 OpenText Menu...5 1.3 Selecting a

More information

Kentico CMS User s Guide 5.0

Kentico CMS User s Guide 5.0 Kentico CMS User s Guide 5.0 2 Kentico CMS User s Guide 5.0 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide

Decision Support AITS University Administration. Web Intelligence Rich Client 4.1 User Guide Decision Support AITS University Administration Web Intelligence Rich Client 4.1 User Guide 2 P age Web Intelligence 4.1 User Guide Web Intelligence 4.1 User Guide Contents Getting Started in Web Intelligence

More information

WatchDox Administrator's Guide. Application Version 3.7.5

WatchDox Administrator's Guide. Application Version 3.7.5 Application Version 3.7.5 Confidentiality This document contains confidential material that is proprietary WatchDox. The information and ideas herein may not be disclosed to any unauthorized individuals

More information

SECURE MOBILE ACCESS MODULE USER GUIDE EFT 2013

SECURE MOBILE ACCESS MODULE USER GUIDE EFT 2013 SECURE MOBILE ACCESS MODULE USER GUIDE EFT 2013 GlobalSCAPE, Inc. (GSB) Address: 4500 Lockhill-Selma Road, Suite 150 San Antonio, TX (USA) 78249 Sales: (210) 308-8267 Sales (Toll Free): (800) 290-5054

More information

Custom Reporting System User Guide

Custom Reporting System User Guide Citibank Custom Reporting System User Guide April 2012 Version 8.1.1 Transaction Services Citibank Custom Reporting System User Guide Table of Contents Table of Contents User Guide Overview...2 Subscribe

More information

Using SQL Reporting Services with Amicus

Using SQL Reporting Services with Amicus Using SQL Reporting Services with Amicus Applies to: Amicus Attorney Premium Edition 2011 SP1 Amicus Premium Billing 2011 Contents About SQL Server Reporting Services...2 What you need 2 Setting up SQL

More information

How To Configure A Windows 8.1 On A Windows 7.1.1 (Windows) With A Powerpoint (Windows 8) On A Blackberry) On An Ipad Or Ipad (Windows 7) On Your Blackberry Or Black

How To Configure A Windows 8.1 On A Windows 7.1.1 (Windows) With A Powerpoint (Windows 8) On A Blackberry) On An Ipad Or Ipad (Windows 7) On Your Blackberry Or Black Introduction to Cloud-Based Mobile Device Management with Intune Information in this document, including URLs and other Internet Web site references, is subject to change without notice. Unless otherwise

More information

Load testing with. WAPT Cloud. Quick Start Guide

Load testing with. WAPT Cloud. Quick Start Guide Load testing with WAPT Cloud Quick Start Guide This document describes step by step how to create a simple typical test for a web application, execute it and interpret the results. 2007-2015 SoftLogica

More information

Microsoft FrontPage 2003

Microsoft FrontPage 2003 Information Technology Services Kennesaw State University Microsoft FrontPage 2003 Information Technology Services Microsoft FrontPage Table of Contents Information Technology Services...1 Kennesaw State

More information

Business Process Management IBM Business Process Manager V7.5

Business Process Management IBM Business Process Manager V7.5 Business Process Management IBM Business Process Manager V7.5 Federated task management for BPEL processes and human tasks This presentation introduces the federated task management feature for BPEL processes

More information

Windows Azure Pack Installation and Initial Configuration

Windows Azure Pack Installation and Initial Configuration Windows Azure Pack Installation and Initial Configuration Windows Server 2012 R2 Hands-on lab In this lab, you will learn how to install and configure the components of the Windows Azure Pack. To complete

More information

Installation Guide: Agentry Device Clients SAP Mobile Platform 2.3

Installation Guide: Agentry Device Clients SAP Mobile Platform 2.3 Installation Guide: Agentry Device Clients SAP Mobile Platform 2.3 Windows DOCUMENT ID: DC01954-01-0230-01 LAST REVISED: February 2013 Copyright 2013 by SAP AG or an SAP affiliate company. All rights reserved.

More information

Practice Fusion API Client Installation Guide for Windows

Practice Fusion API Client Installation Guide for Windows Practice Fusion API Client Installation Guide for Windows Quickly and easily connect your Results Information System with Practice Fusion s Electronic Health Record (EHR) System Table of Contents Introduction

More information

Administering Jive for Outlook

Administering Jive for Outlook Administering Jive for Outlook TOC 2 Contents Administering Jive for Outlook...3 System Requirements...3 Installing the Plugin... 3 Installing the Plugin... 3 Client Installation... 4 Resetting the Binaries...4

More information

Setting up Visual Enterprise Integration (WM6)

Setting up Visual Enterprise Integration (WM6) SAP Mobile Platform 3.0 June 2015 English Setting up Visual Enterprise Integration (WM6) Building Block Configuration Guide SAP SE Dietmar-Hopp-Allee 16 69190 Walldorf Germany Copyright 2015 SAP SE or

More information

ImageNow Interact for Microsoft SharePoint Installation, Setup, and User Guide

ImageNow Interact for Microsoft SharePoint Installation, Setup, and User Guide ImageNow Interact for Microsoft SharePoint Installation, Setup, and User Guide Version: 6.6.x Written by: Product Documentation, R&D Date: March 2012 ImageNow and CaptureNow are registered trademarks of

More information

Setting up VMware ESXi for 2X VirtualDesktopServer Manual

Setting up VMware ESXi for 2X VirtualDesktopServer Manual Setting up VMware ESXi for 2X VirtualDesktopServer Manual URL: www.2x.com E-mail: info@2x.com Information in this document is subject to change without notice. Companies, names, and data used in examples

More information

Alfresco Online Collaboration Tool

Alfresco Online Collaboration Tool Alfresco Online Collaboration Tool USER MANUAL BECOMING FAMILIAR WITH THE USER INTERFACE... 4 MY DASHBOARD... 4 MY PROFILE... 6 VIEWING YOUR FULL PROFILE... 6 EDITING YOUR PROFILE... 7 CHANGING YOUR PASSWORD...

More information

EMC Documentum Webtop

EMC Documentum Webtop EMC Documentum Webtop Version 6.5 User Guide P/N 300 007 239 A01 EMC Corporation Corporate Headquarters: Hopkinton, MA 01748 9103 1 508 435 1000 www.emc.com Copyright 1994 2008 EMC Corporation. All rights

More information

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL

SOS SO S O n O lin n e lin e Bac Ba kup cku ck p u USER MANUAL SOS Online Backup USER MANUAL HOW TO INSTALL THE SOFTWARE 1. Download the software from the website: http://www.sosonlinebackup.com/download_the_software.htm 2. Click Run to install when promoted, or alternatively,

More information

Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc.

Legal Notes. Regarding Trademarks. 2012 KYOCERA Document Solutions Inc. Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable for any problems arising from

More information

Novell ZENworks Asset Management 7.5

Novell ZENworks Asset Management 7.5 Novell ZENworks Asset Management 7.5 w w w. n o v e l l. c o m October 2006 USING THE WEB CONSOLE Table Of Contents Getting Started with ZENworks Asset Management Web Console... 1 How to Get Started...

More information

Tutorial: BlackBerry Application Development. Sybase Unwired Platform 2.0

Tutorial: BlackBerry Application Development. Sybase Unwired Platform 2.0 Tutorial: BlackBerry Application Development Sybase Unwired Platform 2.0 DOCUMENT ID: DC01214-01-0200-02 LAST REVISED: May 2011 Copyright 2011 by Sybase, Inc. All rights reserved. This publication pertains

More information

nopcommerce User Guide

nopcommerce User Guide nopcommerce User Guide Open source ecommerce solution Version 2.40 Copyright Notice Information in this document, including URL and other Internet Web site references, is subject to change without notice.

More information

Placing customers in the driver s seat to deliver amazing user experiences

Placing customers in the driver s seat to deliver amazing user experiences SAP Solution Brief SAP Web IDE Objectives Solution Benefits Quick Facts Placing customers in the driver s seat to deliver amazing user experiences Build applications with consumergrade UX using SAP Web

More information

Kentico CMS 5.5 User s Guide

Kentico CMS 5.5 User s Guide Kentico CMS 5.5 User s Guide 2 Kentico CMS User s Guide 5.5 Table of Contents Part I Introduction 4 1 Kentico CMS overview... 4 2 Signing in... 5 3 User interface overview... 7 Part II Managing my profile

More information

Create a Google Site in DonsApp

Create a Google Site in DonsApp Create a Google Site in DonsApp 1 Google Web Site Interactive. Constructivist. Collaborative. Communities. WHAT IS GOOGLE SITE? With one single click, you can create a website without any knowledge of

More information

Getting Started with Vision 6

Getting Started with Vision 6 Getting Started with Vision 6 Version 6.9 Notice Copyright 1981-2009 Netop Business Solutions A/S. All Rights Reserved. Portions used under license from third parties. Please send any comments to: Netop

More information

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3

Tutorial: Mobile Business Object Development. SAP Mobile Platform 2.3 Tutorial: Mobile Business Object Development SAP Mobile Platform 2.3 DOCUMENT ID: DC01927-01-0230-01 LAST REVISED: March 2013 Copyright 2013 by Sybase, Inc. All rights reserved. This publication pertains

More information

CLOUD SECURITY FOR ENDPOINTS POWERED BY GRAVITYZONE

CLOUD SECURITY FOR ENDPOINTS POWERED BY GRAVITYZONE CLOUD SECURITY FOR ENDPOINTS POWERED BY GRAVITYZONE Quick Start Guide for Partners Cloud Security for Endpoints powered by GravityZone Quick Start Guide for Partners Publication date 2013.10.28 Copyright

More information

Mail Chimp Basics. Glossary

Mail Chimp Basics. Glossary Mail Chimp Basics Mail Chimp is a web-based application that allows you to create newsletters and send them to others via email. While there are higher-level versions of Mail Chimp, the basic application

More information

Building A Very Simple Web Site

Building A Very Simple Web Site Sitecore CMS 6.2 Building A Very Simple Web Site Rev 100601 Sitecore CMS 6. 2 Building A Very Simple Web Site A Self-Study Guide for Developers Table of Contents Chapter 1 Introduction... 3 Chapter 2 Building

More information

FTP Server Configuration

FTP Server Configuration FTP Server Configuration For HP customers who need to configure an IIS or FileZilla FTP server before using HP Device Manager Technical white paper 2 Copyright 2012 Hewlett-Packard Development Company,

More information

Veeam Backup Enterprise Manager. Version 7.0

Veeam Backup Enterprise Manager. Version 7.0 Veeam Backup Enterprise Manager Version 7.0 User Guide August, 2013 2013 Veeam Software. All rights reserved. All trademarks are the property of their respective owners. No part of this publication may

More information

Colligo Email Manager 6.2. Offline Mode - User Guide

Colligo Email Manager 6.2. Offline Mode - User Guide 6.2 Offline Mode - User Guide Contents Colligo Email Manager 1 Benefits 1 Key Features 1 Platforms Supported 1 Installing and Activating Colligo Email Manager 3 Checking for Updates 4 Updating Your License

More information

NETWORK PRINT MONITOR User Guide

NETWORK PRINT MONITOR User Guide NETWORK PRINT MONITOR User Guide Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change without notice. We cannot be held liable

More information

File Share Navigator Online 1

File Share Navigator Online 1 File Share Navigator Online 1 User Guide Service Pack 3 Issued November 2015 Table of Contents What s New in this Guide... 4 About File Share Navigator Online... 5 Components of File Share Navigator Online...

More information

Building the SAP Business One Cloud Landscape Part of the SAP Business One Cloud Landscape Workshop

Building the SAP Business One Cloud Landscape Part of the SAP Business One Cloud Landscape Workshop Building the SAP Business One Cloud Landscape Part of the SAP Business One Cloud Landscape Workshop TABLE OF CONTENTS 1 INTRODUCTION... 3 2 LANDSCAPE DETAILS... 3 2.1 Server Details... 3 2.2 Landscape

More information

Avaya Network Configuration Manager User Guide

Avaya Network Configuration Manager User Guide Avaya Network Configuration Manager User Guide May 2004 Avaya Network Configuration Manager User Guide Copyright Avaya Inc. 2004 ALL RIGHTS RESERVED The products, specifications, and other technical information

More information

E-Commerce Installation and Configuration Guide

E-Commerce Installation and Configuration Guide E-Commerce Installation and Configuration Guide Rev: 2011-05-19 Sitecore E-Commerce Fundamental Edition 1.1 E-Commerce Installation and Configuration Guide A developer's guide to installing and configuring

More information

Mobile Secure Cloud Edition Document Version: 2.0-2014-06-26. ios Application Signing

Mobile Secure Cloud Edition Document Version: 2.0-2014-06-26. ios Application Signing Mobile Secure Cloud Edition Document Version: 2.0-2014-06-26 Table of Contents 1 Introduction.... 3 2 Apple Team Membership....4 3 Building a Team by Adding Team Admins and Team Members.... 5 4 App Protection

More information