Home > Contents > Index >
ROLELIST.DELETE
Deletes a role from the list.
Syntax
<ROLELIST.DELETE NAME="rolelist_object_name
" ROLE="role_ID
" />Parameters
NAME (required)
- Name of the role list object from which to delete the role.
ROLE (required)
- Role ID to delete.
Error Numbers
The possible values of
errno
include:
Value Description -100 Asset Exception. -12001 An expected table or iList field was not found.Example
The following code deletes a role from a role list, then verifies whether or not the role was deleted.
<!-- delete a roll --> <ROLELIST.DELETE NAME="roleobject" ROLE="GeneralAdmin"/> <!-- show all roles --> <ROLELIST.GETALL NAME="roleobject" VARNAME="roles3"/> <IF COND="IsVariable.roles3=false"> <THEN> <SETVAR NAME="roles3" VALUE="[None]"/> <BR/> ROLELIST.DELETE: No roles found <BR/> </THEN> <ELSE> <BR/> ROLELIST.DELETE: Roles found are <CSVAR NAME="Variables.roles3"/><BR/><BR/> </ELSE> </IF>
Home > Contents > Index > ![]()
Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.