Integrating Web Dynpro Applications into SAP Enterprise Portal. Dr.-Ing. Oliver Stiefbold Product Management, SAP AG

Size: px
Start display at page:

Download "Integrating Web Dynpro Applications into SAP Enterprise Portal. Dr.-Ing. Oliver Stiefbold Product Management, SAP AG"

Transcription

1 Integrating Web Dynpro Applications into SAP Enterprise Portal Dr.-Ing. Oliver Stiefbold Product Management, SAP AG

2 Agenda Integrating Web Dynpro into SAP Enterprise Portal: Unified Rendering Portal Themes Work Protect Mode Portal Eventing Navigation OBN Outlook: Web Dynpro Portal Personalization Portal Development Kit and Netweaver Developer Cockpit SAP AG 2002, Title of Presentation, Speaker Name 2

3 Unified Rendering and Branding SAP application controls are unified and use portal design service Web Dynpro in Portal thus offers a unified end user experience Portal Portal Page Web Dynpro 4 Java SAP AG 2002, Title of Presentation, Speaker Name 3

4 Web Dynpro Theme Editor Custom Corporate Branding SAP Design Web Dynpro Theme Editor is available at SDN Service.KEY com.sap.portal.de sign.portaldesign data Custom Design Custom Design SAP AG 2002, Title of Presentation, Speaker Name 4

5 Agenda Integrating Web Dynpro into SAP Enterprise Portal: Unified Rendering Portal Themes Work Protect Mode Portal Eventing Navigation OBN Outlook: Web Dynpro Portal Personalization Portal Development Kit and Netweaver Developer Cockpit SAP AG 2002, Title of Presentation, Speaker Name 5

6 WorkProtect Mode 1 2 Web Dynpro applications can use WorkProtect mode to prevent unsaved data in the Web Dynpro application from being lost if the user navigates to another portal page. SAP AG 2002, Title of Presentation, Speaker Name 6

7 Agenda Integrating Web Dynpro into SAP Enterprise Portal: Unified Rendering Portal Themes Work Protect Mode Portal Eventing Navigation OBN Portal Personalization Summary and Outlook SAP AG 2002, Title of Presentation, Speaker Name 7

8 Web Dynpro and Portal Eventing 1 Sam Wilson HELLO! Sam Wilson 2 Portal eventing can be used to communicate between Web Dynpro and non Web Dynpro portal content SAP AG 2002, Title of Presentation, Speaker Name 8

9 Web Dynpro Portal Eventing Several Web Dynpro applications running on one portal page can communicate using portal eventing. If Web Dynpro Portal eventing is needed, depends on the use case and application design. loosely coupling No predefined user dialog No defined application flow Variing page composition Reuse of iviews strong coupling Defined user dialog Strong linear application flow control Web Dynpro based page composition No reuse of components Let the administrator decide Dont let the admin decide SAP AG 2002, Title of Presentation, Speaker Name 9

10 EPCF Portal Client Framework Enterprise Portal Client Framework provides a JavaScript function for event handling in Pages and iviews: EPCM.subscribeEvent('namespace', 'eventname', eventhandlingfunctionname); 'namespace' - an text string that uniquely identifies your domain. The recommended namespace format is 'urn:eventurn'. 'eventname' - an text string that uniquely identifies your event name. EventName and namespace together define a unique event type identifier. eventhandlingfunctionname - the name of a JavaScript function in your HTML code, without the function signature. The named function will be called upon event receival: function eventhandlingfunctionname( evt ) { dosth; } SAP AG 2002, Title of Presentation, Speaker Name 10

11 EPCF Raise an Event To raise an EPCF event the application calls: EPCM.raiseEvent('namespace', 'eventname', 'eventdata'); The arguments of the function are: 'namespace' - a text string that uniquely identifies your domain. The recommended namespace format is 'urn:eventurn'. 'eventname' - a text string that uniquely identifies your event name. EventName and namespace together define a unique event type identifier. eventdata - a JavaScript object identifier. This object is passed on to the event handling method. 'eventdata' can be a string or any other JavaScript object type. SAP AG 2002, Title of Presentation, Speaker Name 11

12 Web Dynpro Subcribe a Portal Event You can reuse a Web Dynpro action for several portal events. WDPortalEventing.subscribe( urn:myurn.test.portal, TestEvent, wdthis.wdgettesteventaction() ); You may define the following parameters for your Web Dynpro action: Namespace: name space of the received portal event. Name: This parameter contains the name of the received portal event. dataobject: the transported parameter of the portal event. SAP AG 2002, Title of Presentation, Speaker Name 12

13 Web Dynpro Unsubscribe a Portal Event Unsubscribing for a portal event is very similar to subscribing: WDPortalEventing.unsubscribe( urn:myurn.test.portal, TestEvent, wdthis.wdgettesteventaction() ); Note: Be sure that you unsubscribe every single Web Dynpro view, as the subscription and unsubscription is valid only for the current view. SAP AG 2002, Title of Presentation, Speaker Name 13

14 Web Dynpro Raise a Portal Event The following example demonstrates how to raise a portal event: WDPortalEventing.fire ( urn:myurn.test.portal, TestEvent, AParameter ); You can fire a portal event at any place in your Web Dynpro application. The event is transported with the next response to the client. You can also raise more than one portal event in one request-response cycle. Typically, you will fire a portal event in a Web Dynpro action event handler (for example, pressing a button). SAP AG 2002, Title of Presentation, Speaker Name 14

15 Agenda Integrating Web Dynpro into SAP Enterprise Portal: Unified Rendering Portal Themes Work Protect Mode Portal Eventing Navigation OBN Outlook: Web Dynpro Portal Personalization Portal Development Kit and Netweaver Developer Cockpit SAP AG 2002, Title of Presentation, Speaker Name 15

16 Portal Navigation for Web Dynpro ecosystem Main window SAP AG 2002, Title of Presentation, Speaker Name 16

17 Navigation Connector A custom navigation connector may enhance the portal standard navigation connector Portal Content Directory PCD PCD A navigation connector can be merged on top level All functionality is available Navigation and structure can be created dynamically Custom Navigation Connector Example Example available in PDK SAP AG 2002, Title of Presentation, Speaker Name 17

18 EPCM - Navigation Client Functionality Enterprise Portal offers a JavaScript function for Navigation EPCM.doNavigate = function( target, mode, winfeatures, winname, history, targettitle, context, postbody) Target: Mode: Context: Winfeatures: ROLES://dir1/dir2/role1/page1 0/1/2 new /same window, with/wo portal header ROLES://dir1/dir2/role1/page2 Example: "width=400,height=500". Winname: this window has my name History: Postbody: a breadcrumb control to help users find back If you dont like GET SAP AG 2002, Title of Presentation, Speaker Name 18

19 EPCM - Navigation Client Functionality Relative Navigation EPCM.doRelativeNavigate(basenodename, levelsup, pathnameslist, mode, winfeatures, winname, history, addparams, targettitle, context) basenodename = current presented URL levelsup = Number of levels to ascend in the tree pathnameslist = list of all atomic names of children from the point reached by going number of levels up the tree Rendered link EXAMPLE: <A HREF="myLink2" onclick="return EPCM.doRelativeNavigate ('ROLES://portal_content/Roles/MyRole/Level1/Level2/Level3', 1, '{PortalEventing}',0)"> This is a link using dorelativenavigate</a> SAP AG 2002, Title of Presentation, Speaker Name 19

20 Summary and Review of Navigation API The Navigation API allows application to navigate not only in between a known application, but between the complete Portal content. Navigation targets are iviews, Pages, Worksets, Roles Navigation Targets are a Portal Content Directory URL Dynamic Navigation windows offer an additonal dynamic navigation context for application designers Related Targets offer also an additonal navigation context. Object Based Navigation decouples Navigation Link and Navigation Target (next chapter) SAP AG 2002, Title of Presentation, Speaker Name 20

21 Agenda Integrating Web Dynpro into SAP Enterprise Portal: Unified Rendering Portal Themes Work Protect Mode Portal Eventing Navigation Object Based Navigation Outlook: Web Dynpro Portal Personalization Portal Development Kit and Netweaver Developer Cockpit SAP AG 2002, Title of Presentation, Speaker Name 21

22 Object Based Navigation Maintaining Content SAP AG 2002, Title of Presentation, Speaker Name 22

23 Object Based Navigation Maintaining Content The objective of OBN is to determine the Application flow at runtime, based on: Customizing of the Portal User Decisions User Roles SAP AG 2002, Title of Presentation, Speaker Name 23

24 EPCM - Navigation Client Functionality Object Based Navigation JavaScript API EPCM.doObjBasedNavigate = function( systemalias, businessobjname, objvalue, operation ){ } EPCM.raiseEvent('urn:com.sapportals:navigation','ObjBasedNavigate', { systemalias: systemalias, businessobjname: businessobjname, objvalue: objvalue, operation: operation} ); systemalias businessobjname objvalue operation Portal system ID of the navigation target businness object optional pass a parameter optional specific operation of a BO SAP AG 2002, Title of Presentation, Speaker Name 24

25 Use Navigation Java API for OBN // Cast the navigation service object to IClientNavigationGenerator IClientNavigationGenerator navgenerator; navgenerator = (IClientNavigationGenerator) PortalRuntime.getRuntimeResources().getService("com.sap.portal.navigation.service.navigation"); // use navgenerator to generate the link String objectnavigateclientcall = navgenerator.createobjectnavigateclientcall( systemalias,businessobjectid,parameter,opid); //Bind to a link object link.setonclientclick(objectnavigateclientcall); SAP AG 2002, Title of Presentation, Speaker Name 25

26 Agenda Integrating Web Dynpro into SAP Enterprise Portal: Unified Rendering Portal Themes Work Protect Mode Portal Eventing Navigation OBN Outlook: Web Dynpro Portal Personalization Portal Development Kit and Netweaver Developer Cockpit SAP AG 2002, Title of Presentation, Speaker Name 26

27 Easy Integration of Web Dynpro Applications Netweaver 04 - No automatic Integration of Web Dynpro Applications (see Wizard) No tight integration into Portal personalization SAP AG 2002, Title of Presentation, Speaker Name 27

28 WD Portal Personalization with next Pagebuilder <component-profile> <property name="systemalias" value="pdkdummysystem"> <property name="personalization" value="dialog"/> <property name="inheritance" value="non-final"/> </property> <property name="businessobjectid" value="pdkdummyobjectid"> <property name="personalization" value="dialog"/> <property name="inheritance" value="non-final"/> </property> </component-profile> SAP AG 2002, Title of Presentation, Speaker Name 28

29 Agenda Integrating Web Dynpro into SAP Enterprise Portal: Unified Rendering Portal Themes Work Protect Mode Portal Eventing Navigation OBN Outlook: Web Dynpro Portal Personalization Portal Development Kit and Netweaver Developer Cockpit SAP AG 2002, Title of Presentation, Speaker Name 29

30 Download PDK and Sneak Preview on SDN SAP AG 2002, Title of Presentation, Speaker Name 30

31 What is Portal Development Kit? What it is: a collection of Netweaver Developer samples for released Netweaver Java APIs a set of additional tools to ease developers life supports the SAP Java Developer Community with the Netweaver 04 Sneak Preview Edition And it will be: a business package with ready to run Netweaver Developer and Business Administrator scenarios SAP AG 2002, Title of Presentation, Speaker Name 31

32 Portal Development Kit 6.0.x - Example Portal Development SAP AG 2002, Title of Presentation, Speaker Name 32

33 Get Support on SDN for Web Dynpro Integration page=webdynpro_ep_integration.htm SAP AG 2002, Title of Presentation, Speaker Name 33

34 Questions? Q&A SAP AG 2002, Title of Presentation, Speaker Name 34

Different Types of iviews in Enterprise Portal 7.0

Different Types of iviews in Enterprise Portal 7.0 Different Types of iviews in Enterprise Portal 7.0 Applies to: This Article applies to Enterprise Portal 7.0. For more information, visit the Portal and Collaboration homepage. Summary This document covers

More information

Eventing between SAP BI 7.0 BEX iview and Webdynpro iview

Eventing between SAP BI 7.0 BEX iview and Webdynpro iview Author: Shilpa Chavvakula (SAP NetWeaver BI Consultant) Date: March 20 th, 2011 Email: shilpac@mouritech.com Phone: 203-788-6558 Eventing between SAP BI 7.0 BEX iview and Webdynpro iview Overview: The

More information

Product Manager SAP NetWeaver US PM - SAP Labs

Product Manager SAP NetWeaver US PM - SAP Labs Web Dynpro for ABAP Your Instructor Venky Varadadesigan Product Manager SAP NetWeaver US PM - SAP Labs Venkata.varadadesigan@sap.com SAP AG 2006, Venky Varadadesigan / Web Dynpro for ABAP / 2 Learning

More information

Install and Use the PCD Inspector Tool

Install and Use the PCD Inspector Tool How to Install and Use the PCD Inspector Tool ENTERPRISE PORTAL 6.0 SP2 VERSION 1.0 ASAP How to Paper Applicable Releases: EP 6.0 SP2 March 2004. TABLE OF CONTENTS 0 DISCLAIMER...2 1 INTRODUCTION:...2

More information

SAP Enterprise Portal 6.0. Unification 5.0 with EP 6.0. Version: September 2003 (Updated: January 2004)

SAP Enterprise Portal 6.0. Unification 5.0 with EP 6.0. Version: September 2003 (Updated: January 2004) SAP Enterprise Portal 6.0 Unification 5.0 with EP 6.0 Version: September 2003 (Updated: January 2004) Overview 1 Unification (delta) features in EP 6.0 2 Settings in EP 6.0 3 Unification Architecture 4

More information

Integrating Web Dynpro and SAP NetWeaver Portal: Personalization of Web Dynpro Java applications

Integrating Web Dynpro and SAP NetWeaver Portal: Personalization of Web Dynpro Java applications Integrating Web Dynpro and SAP NetWeaver Portal: Personalization of Web Dynpro Java applications Applies to: Integration of Web Dynpro Java applications into the SAP NetWeaver Portal for the SAP NetWeaver

More information

Julia Levedag, Vera Gutbrod RIG and Product Management SAP AG

Julia Levedag, Vera Gutbrod RIG and Product Management SAP AG Setting Up Portal Roles in SAP Enterprise Portal 6.0 Julia Levedag, Vera Gutbrod RIG and Product Management SAP AG Learning Objectives As a result of this workshop, you will be able to: Understand the

More information

SAP ABAP WORKBENCH CONCEPTS PART 1 AND 2. INd_rasN. 1 P a g e. KIDS Information Center

SAP ABAP WORKBENCH CONCEPTS PART 1 AND 2. INd_rasN. 1 P a g e. KIDS Information Center 1 P a g e 2 P a g e 3 P a g e 4 P a g e 5 P a g e 6 P a g e 7 P a g e 8 P a g e 9 P a g e 10 P a g e 11 P a g e 12 P a g e 13 P a g e 14 P a g e 15 P a g e 16 P a g e 17 P a g e 18 P a g e 19 P a g e 20

More information

ListManager. ListManager Basic Training

ListManager. ListManager Basic Training ListManager ListManager Basic Training Presented by Ana DeLeón Logistics Before We Begin Shared audio State your name when asking questions s Introduction Please share: Your name Your experience with ListManager

More information

IT Scenario Overview <insert scenario name>

IT Scenario Overview <insert scenario name> SAP NetWeaver IT Scenario Overview Know-How Network Call SAP NetWeaver External-Facing Portal Introduction John Polus SAP NetWeaver Regional Implementation Group, SAP Labs LLC Overview

More information

Modify the Portal Framework Page in SAP EP 6.0

Modify the Portal Framework Page in SAP EP 6.0 How-to Guide SAP NetWeaver 04 How To Modify the Portal Framework Page in SAP EP 6.0 Version 1.00 December 2004 Applicable Releases: SAP NetWeaver SP2 and higher (SAP NetWeaver 04) Copyright 2004 SAP AG.

More information

SAP BW 3.5 Enhanced Reporting Capabilities SAP AG

SAP BW 3.5 Enhanced Reporting Capabilities SAP AG SAP BW 3.5 Enhanced Reporting Capabilities SAP AG Learning Objectives As a result of this lecture, you will: Be familiar with Business Explorer (BEx) suite 3.5 Know the available new features Understand

More information

Integrate BW Web Applications into EP 5.0

Integrate BW Web Applications into EP 5.0 How to Integrate BW Web Applications into EP 5.0 BUSINESS INFORMATION WAREHOUSE Applicable Releases: BW 3.0B, BW 3.1 Content June 2003 SAP (SAP America, Inc. and SAP AG) assumes no responsibility for errors

More information

SAP NetWeaver 04. Unification Terminology

SAP NetWeaver 04. Unification Terminology SAP NetWeaver 04 Unification Terminology Version 1.00 March 2005 Copyright 2005 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose

More information

Setup an NWDI Track for Composition Environment Developments

Setup an NWDI Track for Composition Environment Developments How-to Guide SAP NetWeaver 7.0 How To Setup an NWDI Track for Composition Environment Developments Version 2.00 January 2008 Applicable Releases: SAP NetWeaver 7.0 SP13 (Custom Development & Unified Life-Cycle

More information

How to Upgr a d e We b Dynpro Them e s from SP S 9 to SP S 1 0

How to Upgr a d e We b Dynpro Them e s from SP S 9 to SP S 1 0 How- to Guide SAP NetW e a v e r 0 4 How to Upgr a d e We b Dynpro Them e s from SP S 9 to SP S 1 0 Ver si o n 1. 0 0 Dec e m b e r 2 0 0 4 Applic a b l e Rele a s e s : SAP NetW e a v e r 0 4 SP Sta c

More information

and Adapt ERP Roles and Their Content to SAP Enterprise Portal

and Adapt ERP Roles and Their Content to SAP Enterprise Portal How-to Guide SAP NetWeaver 04 How to Upload and Adapt ERP Roles and Their Content to SAP Enterprise Portal Version 1.00 November 2004 Applicable Releases: SAP NetWeaver 04 Copyright 2004 SAP AG. All rights

More information

HTML Mashups A mashup that embeds an HTML or JavaScript based Web page directly on a screen.

HTML Mashups A mashup that embeds an HTML or JavaScript based Web page directly on a screen. ABSTRACT Mashups are used to integrate data from SAP's cloud solution with data provided by an online Web service or application. Users can access the content provided by these Web services and applications.

More information

This tutorial explains the key concepts of Web Dynpro with relevant screenshots for better understanding.

This tutorial explains the key concepts of Web Dynpro with relevant screenshots for better understanding. About the Tutorial SAP Web Dynpro is a standard SAP UI technology to develop web applications using graphical tools and development environment integrated with ABAP workbench. The use of graphical tools

More information

Veteran's Guide. Visual Composer for. Document Version 2.00 March SAP NetWeaver 7.3

Veteran's Guide. Visual Composer for. Document Version 2.00 March SAP NetWeaver 7.3 Veteran's Guide Visual Composer for SAP NetWeaver 7.3 Document Version 2.00 March 2011 SAP NetWeaver 7.3 Copyright 2011 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted

More information

Integrate a Forum into a Collaboration Room

Integrate a Forum into a Collaboration Room How-to Guide SAP NetWeaver 04 How To Integrate a Forum into a Collaboration Room Version 1.00 May 2007 Applicable Releases: SAP NetWeaver 04 SPS20 Copyright 2007 SAP AG. All rights reserved. No part of

More information

Web Dynpro Java for Newbies: a Quick Guide to Develop Your First Application

Web Dynpro Java for Newbies: a Quick Guide to Develop Your First Application Web Dynpro Java for Newbies: a Quick Guide to Develop Your First Application Applies to: Web Dynpro for Java (Enhancement package 1 of SAP NetWeaver CE 7.1). For more information, visit the UUser Interface

More information

HOW TO USE THE WEB DYNPRO CONTENT ADMINISTRATOR. SAP NetWeaver 04 SP Stack 9 JOCHEN GUERTLER

HOW TO USE THE WEB DYNPRO CONTENT ADMINISTRATOR. SAP NetWeaver 04 SP Stack 9 JOCHEN GUERTLER HOW TO USE THE CONTENT ADMINISTRATOR. SAP NetWeaver 04 SP Stack 9 JOCHEN GUERTLER Contents Introduction... 3 Prerequisites... 3 Overview... 4 Enable and disable Web Dynpro applications... 4 Some general

More information

Visual Composer for NetWeaver CE: Getting Started with a Typical Workflow

Visual Composer for NetWeaver CE: Getting Started with a Typical Workflow Visual Composer for NetWeaver CE: Getting Started with a Typical Workflow Applies to: Visual Composer for SAP NetWeaver Composition Environment 7.1 Summary This article aims to help you get started modeling

More information

SAP Enterprise. Portal

SAP Enterprise. Portal SAP Enterprise Portal What is an Enterprise Portal? To answer this question, one must first ask what problem an enterprise portal is intended to solve. In the age of e-business, many companies are turning

More information

Using Knowledge Management Functionality in Web Dynpro Applications

Using Knowledge Management Functionality in Web Dynpro Applications Using Knowledge Management Functionality in Web Dynpro Applications SAP NetWeaver 04 Copyright Copyright 2004 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in

More information

How To Customize the SAP User Interface Using Theme Editor

How To Customize the SAP User Interface Using Theme Editor SAP NetWeaver How-To Guide How To Customize the SAP User Interface Using Theme Editor Applicable Releases: SAP NetWeaver 7.0 and 7.11 Version 1.0 June 2010 Copyright 2010 SAP AG. All rights reserved. No

More information

Cisco TEO Adapter Guide for SAP Java

Cisco TEO Adapter Guide for SAP Java Release 2.3 April 2012 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA http://www.cisco.com Tel: 408 526-4000 800 553-NETS (6387) Fax: 408 527-0883 Text Part

More information

SAP Enterprise Portal 6.0

SAP Enterprise Portal 6.0 SAP Enterprise Portal 6.0 Developing Portal Content Carsten Bönnen Product Management Portal Techology SAP AG Learning Objectives As a result of this workshop, you will be able to: Explain what Roles,

More information

Migration Guide. SAP Web Application Server Release 6.40 J2EE and Web Dynpro for Java

Migration Guide. SAP Web Application Server Release 6.40 J2EE and Web Dynpro for Java Migration Guide SAP Web Application Server Release 6.40 J2EE and Web Dynpro for Java Table of Contents: Introduction 3 Deinstallation: 6.30 SAP J2EE Engine and SAP NetWeaver Developer Studio (SP2) 3 Installation

More information

How-to Guide SAP NetWeaver 04. Web Dynpro Themes. Version Applicable Releases: SAP NetWeaver 7.0

How-to Guide SAP NetWeaver 04. Web Dynpro Themes. Version Applicable Releases: SAP NetWeaver 7.0 How-to Guide SAP NetWeaver 04 How To Edit Web Dynpro Themes Version 2.00 Applicable Releases: SAP NetWeaver 7.0 Copyright 2004 SAP AG. All rights reserved. No part of this publication may be reproduced

More information

Creation of Alert Data Service VC model for the BI query exception using Information Broadcasting

Creation of Alert Data Service VC model for the BI query exception using Information Broadcasting Applies To: SAP Netweaver 2004s Visual Composer 7.0 Summary The purpose of this document is to show how to create an alert data service VC model for the BI query exception using the Information broadcasting.

More information

SAP NetWeaver Web Dynpro ABAP vs. Web Dynpro Java - FAQ

SAP NetWeaver Web Dynpro ABAP vs. Web Dynpro Java - FAQ SAP NetWeaver Web Dynpro ABAP vs. Web Dynpro Java - FAQ Applies to: SAP NetWeaver 7.0 (2004s) and Ehp1 for SAP NetWeaver 7.0 (a.k.a 7.0.1) SAP NetWeaver Composition Environment 7.1 and Ehp1 for SAP NetWeaver

More information

How to Translate a Visual Composer Model Part I

How to Translate a Visual Composer Model Part I How to Translate a Visual Composer Model Part I Applies to: SAP NetWeaver Visual Composer. Summary This How To guide is the first part in a series of guides which explain how to create and maintain translations

More information

DISCOVERY SYSTEM CONNECTIVITY. Introduction HOW TO CREATE PORTAL IVIEWS BASED ON APPLICATIONS RUNNING ON A DS

DISCOVERY SYSTEM CONNECTIVITY. Introduction HOW TO CREATE PORTAL IVIEWS BASED ON APPLICATIONS RUNNING ON A DS DISCOVERY SYSTEM CONNECTIVITY HOW TO CREATE PORTAL IVIEWS BASED ON APPLICATIONS RUNNING ON A DS Introduction Discovery System SAP Discovery system (DS) is a complete learning and testing environment designed

More information

Blueprinting Questionnaire Sample

Blueprinting Questionnaire Sample Manish Chaitanya Blueprinting Questionnaire Sample from The Complete Guide to SAP NetWeaver Portal Bonn Boston ch11_a_online_6124.indd 1 1/12/12 2:58:16 PM A Blueprinting Questionnaire Sample In Chapter

More information

Migrating SAP Portal Application to JBoss Portal Sushil Ajgaonkar

Migrating SAP Portal Application to JBoss Portal Sushil Ajgaonkar Migrating SAP Portal Application to JBoss Portal Sushil Ajgaonkar Challenges with existing Portal USD 12B Engineering conglomerate Existing Self Service Portal for Vendors Release of PO and amendments

More information

Enhancing Web Dynpro Table Performance

Enhancing Web Dynpro Table Performance Enhancing Web Dynpro Table Performance Bertram Ganz, Andreas Rössler, NW ESI Foundation - Web Dynpro Foundation for Java Overview The existing Web Dynpro table selection behavior is automatically combined

More information

Modeling Your First Process with SAP NetWeaver Business Process Management

Modeling Your First Process with SAP NetWeaver Business Process Management Modeling Your First Process with SAP NetWeaver Business Process Management Applies to: SAP enhancement package 1 for SAP NetWeaver Composition Environment 7.1 including SAP NetWeaver Business Process Management

More information

Building a Composite Business Process from Scratch with SAP NetWeaver BPM Guide 2

Building a Composite Business Process from Scratch with SAP NetWeaver BPM Guide 2 Building a Composite Business Process from Scratch with SAP NetWeaver BPM Guide 2 Applies to: SAP enhancement package 1 for SAP NetWeaver Composition Environment 7.1 Summary This guide explains how to

More information

Tools to Develop New Linux Applications

Tools to Develop New Linux Applications Tools to Develop New Linux Applications IBM Software Development Platform Tools for every member of the Development Team Supports best practices in Software Development Analyst Architect Developer Tester

More information

Getting Started with FPM BOPF Integration (FBI)

Getting Started with FPM BOPF Integration (FBI) Summary Creating a List GUIBB with a Related View Level of complexity: Time required for completion: Beginner 45 min. Author: Sharon Dassa Company: SAP AG Created on: 20 February 2013 www.sap.com Table

More information

How to Reference External JAR Files in Web Dynpro DC in SAP NW Portal 7.3

How to Reference External JAR Files in Web Dynpro DC in SAP NW Portal 7.3 How to Reference External JAR Files in Web Dynpro DC in SAP NW Portal 7.3 Applies to: SAP NetWeaver Portal 7.3, NWDS 7.3. For more information, visit the Portal and Collaboration homepage. Summary This

More information

A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group

A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group A Closer Look at XPages in IBM Lotus Domino Designer 8.5 Ray Chan Advisory I/T Specialist Lotus, IBM Software Group 2008 IBM Corporation Agenda XPage overview From palette to properties: Controls, Ajax

More information

How to Use Context Menus in a Web Dynpro for Java Application

How to Use Context Menus in a Web Dynpro for Java Application How to Use Context Menus in a Web Dynpro for Java Application Applies to: Web Dynpro for Java 7.11. For more information, visit the Web Dynpro Java homepage. Summary This tutorial explains the Web Dynpro

More information

Installation Description. OrgPublisher for SAP solutions: OrgPublisher SAP Interface Version 7.0

Installation Description. OrgPublisher for SAP solutions: OrgPublisher SAP Interface Version 7.0 OrgPublisher SAP Interface Version 7.0 Trademarks SAP, mysap, and R/3 are trademarks and/or registered trademarks of SAP AG in Germany and in other countries. OrgPublisher is a trademark of PeopleFluent

More information

Creating Your First Web Dynpro Application

Creating Your First Web Dynpro Application Creating Your First Web Dynpro Application Release 646 HELP.BCJAVA_START_QUICK Copyright Copyright 2004 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any

More information

Visual Composer for SAP NetWeaver Composition Environment - Connectors

Visual Composer for SAP NetWeaver Composition Environment - Connectors Visual Composer for SAP NetWeaver Composition Environment - Connectors Applies to: Visual Composer for SAP enhancement package 1 for SAP NetWeaver Composition Environment 7.1 For more information, visit

More information

Cache Settings in Web Page Composer

Cache Settings in Web Page Composer Cache Settings in Web Page Composer Applies to: EP 7.0, SAP NetWeaver Knowledge Management SPS14. For more information, visit the Content Management homepage. Summary This paper explains what cache settings

More information

WDA - Custom themes for Web Dynpro ABAP applications without SAP Enterprise Portal integration

WDA - Custom themes for Web Dynpro ABAP applications without SAP Enterprise Portal integration WDA - Custom themes for Web Dynpro ABAP applications without SAP Enterprise Portal integration Applies to: SAP Netweaver 2004s Summary This document shows how to use custom themes for Web Dynpro ABAP applications

More information

Introducing SAP Enterprise Services Explorer for Microsoft.NET

Introducing SAP Enterprise Services Explorer for Microsoft.NET Introducing SAP Enterprise Services Explorer for Microsoft.NET Applies to: SAP SOA, SAP NetWeaver Composition Environment 7.1 including enhancement package 1, SAP Services Registry, SAP - Microsoft interoperability,

More information

PROCE55 Mobile: Web API App. Web API. https://www.rijksmuseum.nl/api/...

PROCE55 Mobile: Web API App. Web API. https://www.rijksmuseum.nl/api/... PROCE55 Mobile: Web API App PROCE55 Mobile with Test Web API App Web API App Example This example shows how to access a typical Web API using your mobile phone via Internet. The returned data is in JSON

More information

Enterprise SOA Experience Workshop. Module 8: Operating an enterprise SOA Landscape

Enterprise SOA Experience Workshop. Module 8: Operating an enterprise SOA Landscape Enterprise SOA Experience Workshop Module 8: Operating an enterprise SOA Landscape Agenda 1. Authentication and Authorization 2. Web Services and Security 3. Web Services and Change Management 4. Summary

More information

Advanced Input Help - The Object Value Selector (OVS)

Advanced Input Help - The Object Value Selector (OVS) Advanced Input Help - The Object Value Selector (OVS) SAP NetWeaver 04 Copyright Copyright 2004 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or

More information

Inside Web Dynpro for Java

Inside Web Dynpro for Java Chris Whealy 2008 AGI-Information Management Consultants May be used for personal purporses only or by libraries associated to dandelon.com network. Inside Web Dynpro for Java "m HOCHSCHULE M LIECHTENSTEIN

More information

Connect and Transform Your Digital Business with IBM

Connect and Transform Your Digital Business with IBM Connect and Transform Your Digital Business with IBM 1 MANAGEMENT ANALYTICS SECURITY MobileFirst Foundation will help deliver your mobile apps faster IDE & Tools Mobile App Builder Development Framework

More information

How to Integrate SAP xmii Services with Web Dynpro Java

How to Integrate SAP xmii Services with Web Dynpro Java How to Integrate SAP xmii Services with Web Dynpro Java Applies to: SAP xmii 11.5 SAP Netweaver 04s Summary This document gives a step by step description on how SAP xmii services and objects can be exposed

More information

How to Create New Portal Display Rules

How to Create New Portal Display Rules How to Create New Portal Display Rules ENTERPRISE PORTAL 6.0 ASAP How to Paper Applicable Releases: EP 6.0 SP2 April 2004. 1 INTRODUCTION... 2 2 PORTAL DISPLAY RULES: INTRODUCTION...3 3 THE STEP BY STEP

More information

SAP NetWeaver Process Integration 7.1

SAP NetWeaver Process Integration 7.1 SAP NetWeaver Process Integration 7.1 Using Integration Processes (ccbpm) in SAP NetWeaver Process Integration 7.1 SAP NetWeaver Regional Implementation Group SAP NetWeaver Product Management December

More information

Web Page Composer anonymous user access

Web Page Composer anonymous user access Web Page Composer anonymous user access Applies to: SAP NetWeaver Knowledge Management SPS14. For more information, visit the Content Management homepage. Summary Web Page composer is a tool used for publishing

More information

The 60-Minute Guide to Development Tools for IBM Lotus Domino, IBM WebSphere Portal, and IBM Workplace Applications

The 60-Minute Guide to Development Tools for IBM Lotus Domino, IBM WebSphere Portal, and IBM Workplace Applications The 60-Minute Guide to Development Tools for IBM Lotus Domino, IBM WebSphere Portal, and IBM Workplace Stuart Duguid Portal & Workplace Specialist TechWorks, IBM Asia-Pacific Overview / Scope The aim of

More information

Custom Password Reset Tool in SAP Enterprise Portal Using Web Dynpro for Java

Custom Password Reset Tool in SAP Enterprise Portal Using Web Dynpro for Java Custom Password Reset Tool in SAP Enterprise Portal Using Web Dynpro for Java Applies to: SAP Enterprise Portal, Web Dynpro for Java. For more information, visit the Portal and Collaboration homepage.

More information

1 Copyright 2012, Oracle and/or its affiliates. All rights reserved.

1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. 1 Copyright 2012, Oracle and/or its affiliates. All rights reserved. Oracle WebCenter Portal and ADF Development Richard Maldonado Principal Product Manager 2 Copyright 2012, Oracle and/or its affiliates.

More information

Setting Up an Environment for Testing Applications in a Federated Portal Network

Setting Up an Environment for Testing Applications in a Federated Portal Network SAP NetWeaver How-To Guide Setting Up an Environment for Testing Applications in a Federated Portal Network Applicable Releases: SAP NetWeaver 7.0 IT Practice: User Productivity Enablement IT Scenario:

More information

configure an anonymous access to KM

configure an anonymous access to KM How-to Guide SAP NetWeaver 2004s How To configure an anonymous access to KM Version 1.00 February 2006 Applicable Releases: SAP NetWeaver 2004s Copyright 2006 SAP AG. All rights reserved. No part of this

More information

BeetleEye Application User Documentation

BeetleEye Application User Documentation BeetleEye Application User Documentation BeetleEye User Documentation 1 Table of Contents Welcome to the BeetleEye Application... 6 Overview... 6 Navigation... 6 Access BeetleEye... 6 Update account information...

More information

Filtering Portal Content Based on User Attributes

Filtering Portal Content Based on User Attributes Filtering Portal Content Based on User Attributes Applies To: SAP Enterprise Portal EP6 SP2 SAP Enterprise Portal 6.0 SP9 and above Article Summary This technical paper will cover how to implement a filtering

More information

SAP NetWeaver Process Integration 7.1. SAP NetWeaver Regional Implementation Group SAP NetWeaver Product Management December 2007

SAP NetWeaver Process Integration 7.1. SAP NetWeaver Regional Implementation Group SAP NetWeaver Product Management December 2007 SAP NetWeaver Process Integration 7.1 Providing Web Services in Java SAP NetWeaver Regional Implementation Group SAP NetWeaver Product Management December 2007 SAP NetWeaver Process Integration 7.1 1 Benefits

More information

Widgets for SAP BusinessObjects Business Intelligence Platform User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2

Widgets for SAP BusinessObjects Business Intelligence Platform User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 Widgets for SAP BusinessObjects Business Intelligence Platform User Guide SAP BusinessObjects Business Intelligence platform 4.1 Support Package 2 Copyright 2013 SAP AG or an SAP affiliate company. All

More information

Marketer's Guide. User guide for marketing analysts and business users

Marketer's Guide. User guide for marketing analysts and business users Marketer's Guide Rev: 18 November 2014 Email Campaign Manager 2.2 for Sitecore CMS 7.5 Marketer's Guide User guide for marketing analysts and business users Table of Contents Chapter 1 Introduction...

More information

SAP NetWeaver IT Scenario Overview <insert scenario name>

SAP NetWeaver IT Scenario Overview <insert scenario name> SAP NetWeaver IT Scenario Overview Groupware Framework SAP NetWeaver Product Management Groupware Framework - Overview Configuring Groupware Integration (E-Mail) Configuring Groupware

More information

Tutorial: Consuming Web Services in Web Dynpro Java

Tutorial: Consuming Web Services in Web Dynpro Java Tutorial: Consuming Web Services in Web Dynpro Java Applies to: Web Dynpro for Java applications for SAP enhancement package 1 for SAP NetWeaver CE 7.1. For more information, visit the User Interface Technology

More information

SAP Enterprise Portal 6.0 -Sample Screenshots- 31/03/2003

SAP Enterprise Portal 6.0 -Sample Screenshots- 31/03/2003 SAP Enterprise Portal 6.0 -Sample Screenshots- 31/03/2003 Content End User View Adminstrator View Delegated Administration Content Administrator User Administrator System Administrator KM Content Manager

More information

Oracle Eloqua s User Guide

Oracle Eloqua  s User Guide http://docs.oracle.com Oracle Eloqua Emails User Guide 2017 Oracle Corporation. All rights reserved 08-Dec-2017 Contents 1 Emails Overview 6 2 Examples of emails 7 3 Creating emails 19 4 Email authoring

More information

Oracle Developer Day

Oracle Developer Day Oracle Developer Day Sponsored by: Session5 Focusing on the UI Speaker Speaker Title Page 1 1 Agenda Building the User Interface UI Development Page Flow A Focus on Faces Introducing Java Server Faces

More information

Java EE 6: Develop Web Applications with JSF

Java EE 6: Develop Web Applications with JSF Oracle University Contact Us: +966 1 1 2739 894 Java EE 6: Develop Web Applications with JSF Duration: 4 Days What you will learn JavaServer Faces technology, the server-side component framework designed

More information

Web Dynpro for ABAP: Tutorial 4 - Display Bookings of Selected Flight

Web Dynpro for ABAP: Tutorial 4 - Display Bookings of Selected Flight Web Dynpro for ABAP: Tutorial 4 - Display Bookings of Selected Flight SAP NetWeaver 2004s Copyright Copyright 2005 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted

More information

Manual Web Dynpro Java File Upload Excel

Manual Web Dynpro Java File Upload Excel Manual Web Dynpro Java File Upload Excel This tutorial how to implement the download table data into a PDF format by using Web Dynpro Java application: I achieve by using IText Jar file, which you can.

More information

Enterprise Services Enhancement Guide

Enterprise Services Enhancement Guide Enterprise Services Enhancement Guide Version 2.0 Copyright Copyright 2008 SAP AG. All rights reserved. No part of this publication may be reproduced or transmitted in any form or for any purpose without

More information

EBS goes social - The Triumvirate Liferay, Application Express and EBS

EBS goes social - The Triumvirate Liferay, Application Express and EBS EBS goes social - The Triumvirate Liferay, Application Express and EBS Michael Pergande, PROMATIS software GmbH DOAG 2011 Applications, Berlin, May 3rd, 2011 1 Agenda Introduction Motivation, Scenarios

More information

CA IdentityMinder. Glossary

CA IdentityMinder. Glossary CA IdentityMinder Glossary 12.6.3 This Documentation, which includes embedded help systems and electronically distributed materials, (hereinafter referred to as the Documentation ) is for your informational

More information

SAP NetWeaver Demo Examples Exercise Cancel Flight Booking

SAP NetWeaver Demo Examples Exercise Cancel Flight Booking SAP NetWeaver 7.31 Demo Examples Exercise Cancel Flight Booking Document Version 1.0 March 2012 SAP AG Dietmar-Hopp-Allee 16 69190 Walldorf Germany T +49/18 05/34 34 24 F +49/18 05/34 34 20 www.sap.com

More information

Rational Functional Tester - Tips and Tricks

Rational Functional Tester - Tips and Tricks IBM Rational Software Development Conference 2006 Rational Functional Tester - Tips and Tricks Suma Byrappa IBM Rational Swathi Rao 2006 IBM Corporation Agenda IBM Rational Software Development Conference

More information

Experience SAP HANA Cloud Portal. Use SAP HANA Cloud Portal to Create Engaging Websites in 5 Simple Steps

Experience SAP HANA Cloud Portal. Use SAP HANA Cloud Portal to Create Engaging Websites in 5 Simple Steps Experience SAP HANA Cloud Portal Use SAP HANA Cloud Portal to Create Engaging Websites in 5 Simple Steps TABLE OF CONTENTS TUTORIAL AGENDA... 3 PREREQUISITES... 3 EXERCISE 1: CREATE AND CONFIGURE A NEW

More information

Switch Web Event Handler

Switch Web Event Handler Switch Web Event Handler Contents Introduction... 1 Use SwitchEventHandler actions... 2 Switch handler at runtime (1)... 2 Switch handler at runtime (2)... 7 Remove Event Handler... 12 Test... 14 Feedback...

More information

Best Practices Using KMC Capabilities in an External Facing Portal Version 1.00 October 2006

Best Practices Using KMC Capabilities in an External Facing Portal Version 1.00 October 2006 Best Practices SAP NetWeaver 2004/2004s Best Practices Using KMC Capabilities in an External Facing Portal Version 1.00 October 2006 Applicable Releases: SAP NetWeaver 2004 and 2004s (Usage Type Enterprise

More information

Visual Composer Build Process

Visual Composer Build Process Applies to: Visual Composer for Composition Environment 7.1 Summary This paper explains how Visual Composer builds & creates its applications, and what are the dependencies and naming consideration a modeler

More information

Effective Web Dynpro - Adaptive RFC Models

Effective Web Dynpro - Adaptive RFC Models Effective Web Dynpro - Adaptive RFC Models Bertram Ganz, NWF Web Dynpro Foundation for Java Overview In many Web Dynpro applications, backend access is based on RFC modules in SAP systems. The Web Dynpro

More information

WDJ - Application to execute MDX query using the BI Java SDK

WDJ - Application to execute MDX query using the BI Java SDK WDJ - Application to execute MDX query using the BI Java SDK Applies to: This document and the presented code example rely upon SAP NWDS v 2.0.16 (Web Dynpro Java), SAP WAS 6.40 SP16, BI Java SDK SP15,

More information

Work with Variables in SAP NetWeaver Visual Composer Version 1.00 May 2006

Work with Variables in SAP NetWeaver Visual Composer Version 1.00 May 2006 How-to Guide SAP NetWeaver 04s How To Work with Variables in SAP NetWeaver Visual Composer Version 1.00 May 2006 Applicable Releases: SAP NetWeaver 04s SPS07 or greater Copyright 2006 SAP AG. All rights

More information

How to Install SAP Netweaver 2004s ABAP Edition on Your Local PC

How to Install SAP Netweaver 2004s ABAP Edition on Your Local PC How to Install SAP Netweaver 2004s ABAP Edition on Your Local PC September 2006 SAP NetWeaver 2004s Copyright Copyright 2005 SAP AG. All rights reserved. No part of this publication may be reproduced or

More information

Webform: THERE IS THIS FOR THAT

Webform: THERE IS THIS FOR THAT Webform: THERE IS THIS FOR THAT Hello! Hi, my name is Jacob Rockowitz. I am known as jrockowitz on the web. I am a Drupal developer and software architect. I built and maintain the Webform module for Drupal

More information

Freely Programmed Help- Web Dynpro

Freely Programmed Help- Web Dynpro Freely Programmed Help- Web Dynpro Applies to: SAP ABAP Workbench that supports Web dynpro development. For more information, visit the Web Dynpro ABAP homepage. Summary In addition to the Dictionary Search

More information

How To Develop a Simple Web Service Application Using SAP NetWeaver Developer Studio & SAP XI 3.0

How To Develop a Simple Web Service Application Using SAP NetWeaver Developer Studio & SAP XI 3.0 How-to Guide SAP NetWeaver 04 How To Develop a Simple Web Service Application Using SAP NetWeaver Developer Studio & SAP XI 3.0 Version 1.00 Nov 2005 Applicable Releases: SAP NetWeaver 04 SPS 13 and above

More information

Open Text Web Site Management 10.1

Open Text Web Site Management 10.1 Open Text Web Site Management 10.1 Technical Slide Deck June 2010 Bernfried Howe Director Product Management Open Text Web Site Management Slide 1 Agenda Release Information General Features New Features

More information

ASP.NET MVC Training

ASP.NET MVC Training TRELLISSOFT ASP.NET MVC Training About This Course: Audience(s): Developers Technology: Visual Studio Duration: 6 days (48 Hours) Language(s): English Overview In this course, students will learn to develop

More information

SAP EDUCATION SAMPLE QUESTIONS: C_TBIT51_73. Questions. Note: There are 2 correct answers to this question. developer. the basis administrator.

SAP EDUCATION SAMPLE QUESTIONS: C_TBIT51_73. Questions. Note: There are 2 correct answers to this question. developer. the basis administrator. SAP EDUCATION SAMPLE QUESTIONS: C_TBIT51_73 SAP Certified Technology Associate -Process Integration with SAP NetWeaver (PI 7.3) Disclaimer: These sample questions are for self-evaluation purposes only

More information

Uploading and Downloading Files in Web Dynpro Java

Uploading and Downloading Files in Web Dynpro Java SAP NetWeaver '04 Web Dynpro Java Tutorials Uploading and Downloading Files in Web Dynpro Java Document Version 1.00 Dezember 2005 SAP AG Neurottstraße 16 69190 Walldorf Germany T +49/18 05/34 34 24 F

More information

Business Add-Ins (BAdIs) for SD Jam Integration Document Version:

Business Add-Ins (BAdIs) for SD Jam Integration Document Version: Document Version: 1.0 2014-08-22 Typographic Conventions Type Style Example Description Words or characters quoted from the screen. These include field names, screen titles, pushbuttons labels, menu names,

More information

7 Development for SAP NetWeaver Portal

7 Development for SAP NetWeaver Portal When you need to develop custom content for SAP NetWeaver Portal, many technologies for designing the user interface are available to you. This chapter provides an overview of development in various technologies

More information