procedure SetItemUserKey (itemtype in varchar2, itemkey in varchar2, userkey in varchar2);
public static boolean setItemUserKey (WFContext wCtx, String itemType, String itemKey, String userKey)
Lets you set a user-friendly identifier for an item in a process, which is initially identified by an item type and item key. The user key is intended to be a user-friendly identifier to locate items in the Workflow Monitor and other user interface components of Oracle Workflow.
| wCtx | Workflow context information. Required for the Java method only. See: Oracle Workflow Context. |
| itemtype or itemType | A valid item type. |
| itemkey or itemKey | A string generated usually from the application object's primary key. The string uniquely identifies the item within an item type. The item type and key together identify the process. See: CreateProcess. |
| userkey or userKey | The user key to assign to the item identified by the specified item type and item key. |