Вы находитесь на странице: 1из 4

openSAP Building Mobile Applications with SAP

Screen Personas
Week 2 Unit 4: Building Wizards with Viewports

PUBLIC
Topics Covered

1. Defining viewports
2. Creating viewports
3. When to use viewports

Unit Summary

Defining viewports

Viewports in SAP Screen Personas allow you to create virtual screens that provide
different views on different parts of your transactions. You can use them to simplify
the user experience of a complex transaction by breaking the transaction into more
manageable chunks. This allows users to step through complex processes in a wizard-
like fashion and helps to manage screen real estate on mobile devices.

Creating viewports

Virtual screens are created using the SAP Screen Personas Script Editor. You can
create virtual screens by using one of the two actions below to generate virtual screen
numbers in the Script Editor. Attaching one of the below scripts to a script button will
also allow you to navigate between your virtual screens.

1. session.viewport.next(); — This increases the screen number by 1 every time it is


executed.
2. session.viewport.show(####); — This allows you to access whatever screen
number is specified, but you will have to create your own screen number.
You can create these scripts in the general Script Editor or in a template.

Reminder: you can view your screen number in the Script Editor.

Once you create your virtual screen, it will resemble the original screen without any
flavor modifications on top of it. You will then have to modify your screens again if you
would like them to resemble your flavors. Templates will help expedite this process.

When to use viewports

There are a number of questions that you can ask yourself to determine if using a
viewport would be better than using scripting for navigation:

1. Would navigation require complex scripting? This may negatively affect


performance and create other maintenance considerations.
2. Can the transaction be broken down into smaller tasks? You can create virtual
screens to help users focus on those smaller tasks.

2
3. Will this flavor be used on a mobile device? Creating simpler virtual screens and
having users navigate through them step-by-step reduces the amount of screen
real estate needed at any one time.

3
Coding Samples
Any software coding or code lines/strings (“Code”) provided in this documentation are only examples and are not intended for use in a production system environment. The Code is only intended to better
explain and visualize the syntax and phrasing rules for certain SAP coding. SAP does not warrant the correctness or complet eness of the Code provided herein and SAP shall not be liable for errors or
damages cause by use of the Code, except where such damages were caused by SAP with intent or with gross negligence.

www.sap.com/contactsap
© 2018 SAP SE or an SAP 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 or an SAP affiliate company.

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 or an SAP affiliate company for informational purposes only, without representation or warranty of any kind, and SAP or its affiliated companies shall not be liable
for errors or omissions with respect to the materials. The only warranties for SAP or SAP affiliate company products and serv ices 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.

In particular, SAP SE or its affiliated companies have no obligation to pursue any course of business outlined in this docume nt or any related presentation, or to develop or release any functionality
mentioned therein. This document, or any related presentation, and SAP SE’s or its affiliated companies’ strategy and possible future developments, products, and/or platform directions and functionality are
all subject to change and may be changed by SAP SE or its affiliated companies at any time for any reason without notice. The information in this document is not a commitment, promise, or legal obligation
to deliver any material, code, or functionality. All forward-looking statements are subject to various risks and uncertainties that could cause actual results to differ materially from e xpectations. Readers are
cautioned not to place undue reliance on these forward-looking statements, and they should not be relied upon in making purchasing decisions.

SAP and other SAP products and services mentioned herein as well as their respective logos are trademarks or registered trade marks of SAP SE (or an SAP affiliate company) in Germany and other
countries. All other product and service names mentioned are the trademarks of their respective companies. See http://www.sap.com/corporate-en/legal/copyright/index.epx for additional trademark
information and notices.

Вам также может понравиться