Column Filter projection for GPA
Summary
Column Filter projection for GPAContent
I need to filter between 2.0 and 4.2 then send anything outside of that range as blank. My projection is valid, but I am receiving the dreaded soap error. I think I'm missing something.
This is in the Projection Tag. I'm adding the script to the post:
Version
Recruiting 15ACode Snippet
<quer:projection id="idGPA" alias="GPA" xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:query projectedClass="Candidate" alias="GPA">
<quer:filterings>
<quer:filtering>
<quer:between>
<quer:field path="TalentUser,Profile,Studies,Gpa"/>
<quer:float>2.0</quer:float>
<quer:float>4.2</quer:float>
</quer:between>
</quer:filtering>
</quer:filterings>
</quer:query>
</quer:projection><quer:projection id="idGPA" alias="GPA" xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:query projectedClass="Candidate" alias="GPA">
<quer:filterings>
<quer:filtering>
Tagged:
1