Hi ,
I am on TS 7.3.2 , Solaris 5.10
I doing a LSCS query for few set of DCR on my LSCS runtime.
I have around 28 DCR , now on a purticular metadata I am doing this query
"TeamSite/Templating/DCR/Type:Category/DataType"
Like this :
http://myRuntimeServer.somedomain.com:1234/myProject-lscs/v1/document$?q=TeamSite/Templating/DCR/Type:Category/DataType
Iam geting the result , but in the
<results xmlns="http://www.interwoven.com/schema/iwrr" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.interwoven.com/schema/iwrr iwrr.xsd" total="28"included="10" start="0" status="200">
...
</results>
Here the attribute total - value is 28 (Which shows me the total DCR available) but the included attribute value is just 10.and show only the 10 DCR outputs.
But if I put a query like this :
http://myRuntimeServer.somedomain.com:1234/myProject-lscs/v1/document$?q=TeamSite/Templating/DCR/Type:Category/DataType&min=0&max=30
Then the result is
<results xmlns="http://www.interwoven.com/schema/iwrr" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.interwoven.com/schema/iwrr iwrr.xsd" total="28"included="28" start="0" status="200">
...
</results>
and all the DCR's are listed by this query.
I have looked in to the iwrr.xsd file , in that there is an entry like this ,
<xsd:element name="results">
<xsd:complexType>
<xsd:sequence>
<xsd:element minOccurs="0" maxOccurs="1" ref="XYZ"/>
<xsd:element minOccurs="1" maxOccurs="1" ref="XYZ"/>
<xsd:element minOccurs="0" maxOccurs="1" ref="XYZ"/>
<xsd:element minOccurs="0" maxOccurs="1" ref="XYZ"/>
</xsd:sequence>
<xsd:attribute name="total" type="xsd:integer" />
<xsd:attribute name="included" type="xsd:integer" />
<xsd:attribute name="start" type="xsd:integer" />
<xsd:attribute name="status" type="xsd:integer" />
</xsd:complexType>
</xsd:element>
Any thoughts on how to get all the DCR count , not setting the values inthe Query