Previous | Next | Contents | Index | Glossary | Library |
procedure SetItemAttrText
(itemtype in varchar2, itemkey in varchar2, aname in varchar2, avalue in varchar2); procedure SetItemAttrNumber (itemtype in varchar2, itemkey in varchar2, aname in varchar2, avalue in number); procedure SetItemAttrDate (itemtype in varchar2, itemkey in varchar2, aname in varchar2, avalue in date);
Description
Sets the value of an item type attribute in a process. Use the correct procedure for your attribute type. All attribute types except number and date use SetItemAttrText.
Arguments (input)
| itemtypeA valid item type. |
itemkey | A string generated 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. |
aname | The internal name of an item type attribute. |
avalue | The value for an item type attribute. |
Previous | Next | Contents | Index | Glossary | Library |