Home > Contents > Index >
LISTOBJECT.CREATE
Creates a new list with specific columns but no rows.
Syntax
<LISTOBJECT.CREATE NAME="listname
" COLUMNS="col1,col2,...,coln
"/>Parameters
NAME
(required)- Input and output parameter. As input, name of the list object to create on output as an empty list with the specified columns.
COLUMNS
(required)- Input parameter. A comma-separated string of column names.
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.