View Object - Show data Tag Properties

Use the Property Values page to set the attribute values of the tag. The oracle.xml.xsql.ViewObject action handler supports several optional features.

In addition to these optional attributes, an optional <where> element can be nested inside the <xsql:action handler="oracle.xml.xsql.ViewObject"> tag to do query-by-example functionality. The <where> element can contain any number of nested <attribute> elements to provide query-by-example criteria against that attribute name.

  <xsql:action  handler="oracle.xml.xsql.ViewObject"
name="ViewUsageName"
appmodule="fully.qualified.AppModuleName"
configname="someconfigname">
      <where>
<attribute name="attrname1" value="someval2"/>
<attribute name="attrname2" value="someval2"/>
</where>
</xsql:action>

As with any XSQL Action Handler, XSQL attributes can be used
anywhere attribute values are provided, so the entire use (or any part
of it) can be driven by attribute values like:

  <xsql:action  handler="oracle.xml.xsql.ViewObject"
name="ViewUsageName"
appmodule="fully.qualified.AppModuleName"
configname="someconfigname">
<where>
<attribute name="{@attr}" value="{@val}"/>
</where>
</xsql:action>


Related topics

View Object - Show data Tag