Home > Contents > Index >
ROLELIST.ADD
Add a role to the list.
Syntax
<ROLELIST.ADD NAME="rolelist_object_name
" ROLE="role_ID
" />Parameters
NAME (required)
- Name of the role list object.
ROLE (required)
- Role ID to add.
Error Numbers
The possible values of
errno
include:
Value Description -100 Asset Exception -12001 An expected table or iList field was not foundExample
The following code adds a role to the role list, then verifies whether or not the role was added correctly.
<!-- Add Approver role --> <ROLELIST.ADD NAME="roleobject" ROLE="Approver"/> <!-- Check for Approver role --> <ROLELIST.HASROLE NAME="roleobject" ROLE="Approver" VARNAME="roleexists2"/> <IF COND="Variables.roleexists2=true"> <THEN> <BR/><BR/> ROLELIST.ADD: `Approver' Role is present <CSVAR NAME="Variables.roleexists2"/> <BR/><BR/> </THEN> <ELSE> <BR/> ROLELIST.ADD: Approver role is NOT present. Value returned is <CSVAR NAME="Variables.roleexists2"/> <BR/><BR/> </ELSE> </IF>
Home > Contents > Index > ![]()
Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.