Home > Contents > Index >
LISTOBJECT.ADDROW
Adds a new row to the end of a list.
Syntax
<LISTOBJECT.ADDROW NAME="listname
"colx
="
valx
"
...colz
="
valz
"
/>Parameters
NAME
(required)- Input parameter. Name of the list object to which to add a new row.
colx="valx"
...colz="valz"
(required)- Input parameter. The remaining arguments are column name/value pairs that constitute the row.
Note
The list object name and value inputs are case-sensitive.
Example
<!-- Create a list for a call to ASSETSET.GETASSETLIST --> <LISTOBJECT.CREATE NAME="mylist" COLUMNS="attributename,direction"/> <LISTOBJECT.ADDROW NAME="mylist" attributename="name" direction="descending"/> <LISTOBJECT.ADDROW NAME="mylist" attributename="price" direction="descending"/> <LISTOBJECT.TOLIST NAME="mylist" LISTVARNAME="listout"/>
Home > Contents > Index > ![]()
Oracle XML Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.