Home > Contents > Index >
searchstate:addnestedconstraint
Nests a searchstate as a constraint within another searchstate.
Syntax
<searchstate:addnestedconstraint
name="newssname
" bucket="bucketname
" searchstate="ssname
"/>Parameters
name
(required)- Input parameter. Name of the searchstate object to add.
bucket
(required)- Input parameter. An invented name or a name defined by searchstate:findconstraint . Use this parameter to indicate which constraint you need when the same attribute is used in multiple contstraints. A bucket is an alias and functions similar to an inner join in SQL; when you have multiple tables that have columns of the same name, you must specify the table name to indicate which column you are requesting.
searchstate
(required)- Input parameter. Name of the searchstate object to nest inside of the object specified by
name
.
Error Numbers
The possible values of
errno
include:
Value Description -10004 A required parameter is missing. -13050 General error.Example
This code creates an empty
searchstate
"mainSS" with a type ofor
. A constraint ss1 is added to this searchstate. A second searchstate "nestedSS" with a constraint ss2 on the same attribute is also created. It is generally safer to use unique bucket names in the constraints particularly when the same attribute is constrained. The second searchstate "nestedSS" is then nested into the first using thesearchstate:addnestedconstraint
tag. The mainsearchstate
"mainSS" is then set into anassetset:setsearchedassets
tag. The last tag uses this constrained assetset to search for matching assets and fetch a list of values for the constrained attributes for the returned assets:<searchstate:create name="mainSS" op="or"/> <searchstate:addsimplestandardconstraint name="mainSS" bucket="ss1" attribute="cat2" value="Germicidal Lamps"/> <searchstate:create name="nestedSS" op="or"/> <searchstate:addsimplelikeconstraint name="nestedSS" bucket="ss2" attribute="cat2" value="Watt%"/> <searchstate:addnestedconstraint name="mainSS" bucket="ss3" searchstate="nestedSS"/> <assetset:setsearchedassets name="as" constraint="mainSS" assettypes="Products"/> <assetset:getattributevalues name="as" attribute="cat2" listvarname="resultlist"/> <ics:listloop listname="resultlist"> <ics:listget listname="resultlist" fieldname="value"/><br/> </ics:listloop>See Also
searchstate:create
searchstate:addsimplestandardconstraint
searchstate:addsimplelikeconstraint
assetset:setsearchedassets
assetset:getattributevalues
Home > Contents > Index > ![]()
Oracle JSP Tag Reference
Copyright (c) 2013, 2019, Oracle and/or its affiliates. All rights reserved.