I have an export query for Taleo Connect Client that retrieves the numbers for each Application
submitted by a specific Candidate
entity (Recruiting 15A
model). The candidate is filtered based on their candidate ID 1234
.
When I run my query, the results file lists all of a candidate's applications in single entry, however I would like to have each Application
listed as it's own entry.
Current result:
CandidateID,ApplicationID
1234,(Applications:1)=15160;(Applications:2)=18433;(Applications:3)=19347
Expected Result:
CandidateID,ApplicationID
1234,15160
1234,18433
1234,19347
How can I make my export query list separate entries for each Application?
TCC export query (candidate_app_sq.xml
):
<quer:query productCode="RC1501" model="http://www.taleo.com/ws/tee800/2009/01" projectedClass="Candidate" locale="en" mode="CSV-ENTITY" csvheader="true" largegraph="true" preventDuplicates="false" xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:subQueries/>
<quer:projections>
<quer:projection alias="CandidateID">
<quer:field path="Number"/>
</quer:projection>
<quer:projection alias="ApplicationID">
<quer:field path="Applications,Number"/>
</quer:projection>
</quer:projections>
<quer:projectionFilterings/>
<quer:filterings>
<quer:filtering>
<quer:equal>
<quer:field path="Number"/>
<quer:string>1234</quer:string>
</quer:equal>
</quer:filtering>
</quer:filterings>
<quer:sortings/>
<quer:sortingFilterings/>
<quer:groupings/>
<quer:joinings/>
</quer:query>