Previous  Next          Contents  Index  Glossary  Library

Workflow Status Form

The Workflow Status form is an Oracle Applications form that can be called by any other Oracle Applications form to display status information about an instance of a workflow process.

Your form should use FND_FUNCTION.EXECUTE to call the Oracle Workflow Status form function (the developer form name and function name are FNDWFIAS and FND_FNDWFIAS, respectively) and pass it the following parameters:

ITEM_TYPE=<item_type> ITEM_KEY=<item_key>

Replace <item_type> with the internal name of the item type that the workflow process is associated with and replace <item_key> with the item key that uniquely identifies the work item in that process. See: Overview of Menus and Function Security, Oracle Applications Developer's Guide.

The Workflow Status form is a folder form that displays a list of the activities for an instance of a workflow process and identifies each activity's type, status, result, start date, and end date. See: Customizing the Presentation of Data in a Folder.

To present a process' activities in the order of execution, you should set the Workflow Status folder form to order by Activity_Start_Date and Execution_Time (already done by default), both in ascending order.


         Previous  Next          Contents  Index  Glossary  Library