I'm building an export from requisitions from of Taleo using TCC (on windows); and want a boolean field to indicate if the job is an Evergreen one. Using the example in the TCC documentation guide i have been trying to find the right syntax for this query. The TCC editor insits this is invalid (as is posting the example straight from the documentation. Do you have any suggestions on where i am going wrong?
<query alias="testGreatherThan" projectedClass="Requisition">
<projections>
<projection>
<quer:string>true</quer:string>
</projection>
</projections>
<filterings>
<filtering>
<greaterThan>
<field path="JobInformation,Evergreen Req Number"/>
<integer>1</integer>
</greaterThan>
</filtering>
</filterings>
</query>