Top Banner
30

How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Jan 29, 2016

Download

Documents

Edwin Craig
Welcome message from author
This document is posted to help you gain knowledge. Please leave a comment to let me know what you think about it! Share it to your friends and learn new things together.
Transcript
Page 1: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.
Page 2: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

How to Build an IT Portal withOracle Application Server

Allan L HaensgenSenior Principal Instructor

Oracle Corporation

Session id: 40111

Page 3: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

What Is a Portal Page?

• A portal page is an interface that brings information sources together in one place and serves as a starting point for Web applications.

• The layout of portal pages is defined through regions.

• Regions contain portlets or items.

Page 4: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

My Portal Page

MyCompanyBenefit Plans download this file to learn more about 2002 benefits.

What Is a Region?

Portlet TypeRegion

Item TypeRegion

Page 5: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Oracle Application Server Portal Pages

Shortcut Bar

Tool Tabs

Page 6: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Configuring a Region

Add Columns: Adds a column to the

right or left of the current column

Add Rows: Adds a row beneath or

above the current row

DeleteEdit Region

Page 7: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Add Tab Icon

Arrange Tab Icon

Edit Tab Wizard

Actions Icon

Creating Tabs

Page 8: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Adding Content to a Portal Page

Items– Basic unit of content within a page– It holds content to be displayed on the

Oracle9iAS Portal page– Two types of item types exist:

Content items, such as files, text, URLs Navigation items, such as smart links and page

paths

Page 9: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Adding Content to a Portal Page

Portlets– Areas within a portal page that display

information– Form complete stand alone fragments of content

that can be included on any page– Can be developed externally, then registered with

Oracle Portal– Can be built through a wizard or

programmatically

Page 10: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Selecting the Item Type

• File• URL• Text• Zip file• Image• Component• Image map• Java application• PL/SQL

Page 11: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Adding a Simple Text Item– Displays static text – Provides text editor

Page 12: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Managing Items

• Items can be edited, deleted, moved, or reordered.

• The icons which you use to manage an item are located next to the item.

Edit

Action

Page 13: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Anatomy of a PortletTitleTitle Header

Border

Text

Image

Customize Help, AboutMinimizeHide

Page 14: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Populating Portal Pages with Portlets

Select a portlet from the list. More than one portlet can be selected to fill a region.

Page 15: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Data-driven portlets

Use data-driven portlets to display, create, or update data stored in objects in the Oracle database

Page 16: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Defining a Chart Name

Page 17: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Selecting a Table or View

Use list of tables and views to which you have access.

Page 18: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Selecting the Label and Value Columns

You define the bars and bar size coordinates for the chart by using the Label and Value fields.

Page 19: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Setting the Chart Column Conditions

You set the conditions that limit the data displayed in the chart by using the Column Name, Condition, and Value fields.

Page 20: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Setting the Chart Common Display Options

– Order By Value Value Desc Label Label Desc

– Include Null Values– Treat Null Values as– Expire After (minutes)

Page 21: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Setting the Chart Full-Page and Portlet Display Options

– Control font, color, and size of the chart text and bars

– Govern presentation of the chart

Chart Type = HorizontalAxis = Average ValueBar Image = green.gifSummary Options = Average ValueMaximum Rows Per Page = 5

Page 22: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Setting the Display Options of the Chart Customization Form

Formatting options

Button options

Page 23: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Writing a SQL Query

– The SQL query must select three columns: the_link (optional) the_name (required) the_data (required)

– Bind variables are prefixed by colons.

select null the_link, ENAME the_name, SAL the_datafrom EMPwhere DEPT = :P_DEPTorder by SAL desc

Page 24: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Storing a Data-driven Portlet

– Data-driven portlets are stored as packaged PL/SQL procedures in the database.

– The PL/SQL package has the same name as the data-driven portlet.

Portlet Name = ORA00_CHARTCreate package ORA00_CHART . . .Create package body ORA00_Chart . .

Example

Page 25: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Managing Data-driven Portlets

Page 26: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Adding Discoverer Portlets

Page 27: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Other terms you need to know

• Page Groups - An Oracle Application Server Portal object that groups related pages together

• Styles - Defines a look and feel of portal pages• Templates - A reusable page definition which

can include styles and items• Categories – A method used to classify content

on the pages• Perspectives – A cross-category grouping

Page 28: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

Next Steps….

Recommended sessions– Simplify and Strengthen Security with Oracle Application

Server Session ID: 40112 See Your Business in Our Software

– Visit the DEMO grounds for a customized architectural review, see a customized demo with Solutions Factory, or receive a personalized proposal. Visit the DEMO grounds for more information.

Relevant web sites to visit for more information– http://portal.oracle.com– http://portalstudio.oracle.com– http://portalcenter.oracle.com

Page 29: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.

AQ&Q U E S T I O N SQ U E S T I O N S

A N S W E R SA N S W E R S

Page 30: How to Build an IT Portal with Oracle Application Server Allan L Haensgen Senior Principal Instructor Oracle Corporation Session id: 40111.