0% found this document useful (0 votes)
349 views1 page

TCC - Complex Filter Usages

This document contains examples of XML filters used with Taleo Complex Filters. It shows how to filter for records where the event date is greater than or equal to 365 days ago, filter with an OR clause to return records matching either of two process names, and filter with an IN clause to return records where the process name is included in a list of options.

Uploaded by

zameersait
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
349 views1 page

TCC - Complex Filter Usages

This document contains examples of XML filters used with Taleo Complex Filters. It shows how to filter for records where the event date is greater than or equal to 365 days ago, filter with an OR clause to return records matching either of two process names, and filter with an IN clause to return records where the process name is included in a list of options.

Uploaded by

zameersait
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 1

TCC Complex Filters

Filer using Current Date minus 365

<quer:filtering xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:greaterThanOrEqual>
<quer:field path="RequisitionEvent,EventDate"/>
<quer:add>
<quer:date type="now"/>
<quer:integer>-365</quer:integer>
</quer:add>
</quer:greaterThanOrEqual>
</quer:filtering>

Filter with OR Clause

<quer:filtering xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:or>
<quer:equal>
<quer:field path="Process,Steps,Definition,Name"/>
<quer:string>Recruiter Form - ITS Joining</quer:string>
</quer:equal>
<quer:equal>
<quer:field path="Process,Steps,Definition,Name"/>
<quer:string>Payroll Form - ITS Joining</quer:string>
</quer:equal>
</quer:or>
</quer:filtering>

Filter with IN Clause

<quer:filtering xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:includedIn>
<quer:field path="Process,Steps,Definition,Name"/>
<quer:list>
<quer:string>Recruiter Form - ITS Joining</quer:string>
<quer:string>Payroll Form - ITS Joining</quer:string>
<quer:string>Operation Form - ITS Joining</quer:string>
</quer:list>
</quer:includedIn>
</quer:filtering>

You might also like