Search Results wfa_html




Overview

APPS.WFA_HTML is the package body behind the Oracle Workflow HTML interface — the browser-based notification "Worklist" and notification-response pages exposed by the Oracle E-Business Suite Workflow Notification System. In EBS 12.1.1 and 12.2.2 the package renders the HTML worklist used by users to review notifications, open notification details, view message attributes, and submit responses or forwards. Its prefix (WFA — Workflow Agent) and its documented procedures such as HOME, WORKLIST, LOGIN, and LOGOUT confirm that the package implements the servlet-style entry points invoked by the Oracle Workflow web agent.

The object is a compensating control point for the notification subsystem: rather than exposing a conventional PL/SQL API, it emits HTML/JavaScript framesets that drive the Worklist UI. It is classified as OTHER in the ETRM metadata, meaning it is an internal implementation package, not a supported public API.

Key Procedures and Functions

  • LOGIN / LOGOUT — establish and terminate the web session for the Worklist interface, binding the caller to a validated workflow role.
  • HOME / HOMEMENU / HOME_FLOAT — render the Worklist home page, its menu bar, and the floating navigation frame respectively.
  • HEADER — produce the standard page header used across all Worklist screens.
  • WORKLIST — list the notifications currently assigned to the user, the core screen of the notification Worklist.
  • VIEWER — display a selected notification in read-only form.
  • FIND — provide the notification search/lookup facility.
  • DETAILFRAME, RESPONSEFRAME, FORWARDFRAME — emit the framed layout containers that host the detail, response, and forward panes.
  • DETAIL, DETAIL2, DETAILLINK — render the notification body and its attribute links.
  • ATTRIBUTEINFO — show the value and metadata of an individual message attribute.
  • SUBMITFORWARD, SUBMITRESPONSE, SUBMITSELECTEDRESPONSE, FORWARDNIDS — process user actions: forwarding one or many notifications and returning an approved/rejected response to the workflow engine.

Tables Accessed

Usage Notes

WFA_HTML is invoked by the Oracle Workflow web agent, which maps HTTP requests (for example wfa_html.home or wfa_html.worklist) onto the corresponding procedures. It is not intended for direct invocation from forms, concurrent programs, or custom code. Developers integrating with Worklist behaviour should restrict themselves to the supported Workflow APIs — WF_NOTIFICATION, WF_CORE, WF_MAIL, and WF_DIRECTORY, all of which WFA_HTML itself depends on. Because the package is a dependent object and not referenced by any other database object, modifications should be avoided; changes to the Look-and-Feel of the Worklist must use Oracle's supported personalization mechanisms rather than package edits. The package is VALID in the documented environment.