Skip Headers
Oracle Workflow Administrator's Guide
Release 2.6.3.5
Part Number B12160-02
|
|
|
|
|
|
|
|
|
Previous |
Next |
|
Contents |
Index |
Glossary |
Standard Access in Java
Oracle Workflow provides Java methods to redirect to the Status Monitor with standard access or to obtain URLs for standard access to the Status Monitor. These methods are defined in the Java class called oracle.apps.fnd.wf.monitor.webui.Monitor.
- Monitor.redirectToAdvanceUrl( ) - Redirects to the Administrator Monitor with standard access.
- Monitor.redirectToSimpleUrl( ) - Redirects to the Self-Service Monitor with standard access.
- Monitor.getAdvanceUrl( ) - Returns a URL for standard access to the Administrator Monitor, in a form that can be used within an Oracle Applications Framework application page. For example, you can set this URL as a destination link on an OAWebBean. The URL is returned in the following format:
/OA_HTML/OA.jsp?OAFunc=[parameters...]
- Monitor.getSimpleUrl( ) - Returns a URL for standard access to the Self-Service Monitor, in a form that can be used within an Oracle Applications Framework application page. For example, you can set this URL as a destination link on an OAWebBean. The URL is returned in the following format:
/OA_HTML/OA.jsp?OAFunc=[parameters...]
When calling these methods, you must provide the following parameters to indicate how you want to display the Status Monitor:
- pageContext - The OAPageContext of the calling page.
- itemType - The internal name of a workflow item type to automatically query in the Status Monitor (optional).
- itemKey - An item key to automatically query in the Status Monitor (optional).
- firstPage - The Status Monitor page that you want to initially display (optional).
- MAIN - Main Workflows search page
- HISTORY - Activity History page in the Administrator Monitor or Notification History page in the Self-Service Monitor
- DIAGRAM - Status Diagram page
- RESPONSES - Participant Responses page
Note: For access to the HISTORY, DIAGRAM, or RESPONSES pages, you must specify an item type and item key.
- retainCallingAM - Specify true or false to indicate whether the OAApplicationModule of the calling page should be retained while working in the Status Monitor. If you specify true, retainAM=Y is appended to the Status Monitor URL; if you specify false, retainAM=N is appended to the URL. The default is true.
All method calls for standard access should be made from within an Oracle Applications Framework-based Web page.
Copyright © 2003, 2004, Oracle. All rights reserved.