Posts

Showing posts from January, 2021

Oracle Workflow APIs

  1 WF_ENGINE 2 WF_CORE 3 WF_PURGE 4 WF_DIRECTORY 5 WF_PREF 6 WF_MONITOR 7 Oracle Workflow Views 8 WF_QUEUE 9 FND_DOCUMENT_MANAGEMENT 10 WF_NOTIFICATIONS   WF_ENGINE APIs: The Workflow Engine APIs can be called by an application program or a workflow function in the runtime phase to communicate with the engine and to change the status of each of the activities. These APIs are defined in a PL/SQL package called WF_ENGINE. CreateProcess (itemtype in varchar2,itemkey in varchar2,process in varchar2 default ); Creates a new runtime process for an application item. For example, a Requisition item type may have a Requisition Approval Process as a top level process. When a particular requisition is created, an application calls CreateProcess to set up the information needed to start the defined process. SetItemUserKey (itemtype in varchar2,itemkey in varchar2, userkey in varchar2); Lets you set a user–friendly identifier for an item in a process, which is initia...