Previous  Next          Contents  Index  Glossary

Forward

PL/SQL Syntax

procedure FORWARD

(nid in number,
new_role in varchar2,
forward_comment in varchar2 default null);

Java Syntax

public static boolean forward

    (WFContext wCtx,
BigDecimal nid,
String newRole
String comment)

Description

This procedure delegates a notification to a new role to perform work, even though the original role recipient still maintains ownership of the notification activity. Also implicitly calls the Callback function specified in the Send or SendGroup function with FORWARD mode. A comment can be supplied to explain why the forward is taking place. Existing notification attributes (including due date) are not refreshed or otherwise changed. The Delegate feature in the Notification System calls this procedure. Note that when you forward a notification, the forward is recorded in the USER_COMMENT field of the notification.

Arguments (input)

wCtxWorkflow context information. Required for the Java method only. See: Oracle Workflow Context.
nid The notification id.
new_role or newRole The role name of the person the note is reassigned to.
forward_comment or comment An optional forwarding comment.


         Previous  Next          Contents  Index  Glossary