Oracle Workflow API Reference Release 2.6.3.5 Part Number B12163-02 |
Previous | Next | Contents | Index | Glossary |
procedure SetItemUserKey
(itemtype in varchar2,
itemkey in varchar2,
userkey in varchar2);
Java Syntax
public static boolean setItemUserKey
(WFContext wCtx,
String itemType,
String itemKey,
String userKey)
Description
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.
Arguments (input)
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. |
Previous | Next | Contents | Index | Glossary |