如何在 TCC 输出中添加行号列?
How do I add a row number column in TCC Output?
如何在 Taleo Connect 客户端提取脚本中添加行号列?
我正在使用以下 XML 但我遇到了问题。
<quer:projections alias="RCL_NP_all" xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:projection>
<quer:field path="no"/>
</quer:projection>
<quer:projection alias="rowIndex">
<quer:customValue>
<quer:expression>rowNum</quer:expression>
</quer:customValue>
</quer:projection>
</quer:projections>
这个link我指的是:https://docs.oracle.com/cloud/18a/taleo/OTCCU/_advancedqueries.htm#OTCCUid095TG0F90HT
要向导出添加行号,您可以使用以下复杂投影:
<quer:projection alias="RowIndex" xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:customValue>
<quer:expression>rowNum</quer:expression>
</quer:customValue>
</quer:projection>
说明
- 在 Taleo Connect 客户端中打开您的导出。
- 打开常规选项卡并将导出模式设置为"CSV-report"。
- 打开投影选项卡。
- 单击添加。
- Select 添加一个复杂的投影并单击确定。
在复杂投影下,输入以下内容:
<quer:projection alias="RowIndex" xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:customValue>
<quer:expression>rowNum</quer:expression>
</quer:customValue>
</quer:projection>
保存您的更改。
例子
<quer:query productCode="RC1704" model="http://www.taleo.com/ws/tee800/2009/01" projectedClass="Candidate" locale="en" mode="CSV" csvheader="true" largegraph="true" preventDuplicates="false" xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:subQueries/>
<quer:projections>
<quer:projection alias="RowIndex">
<quer:customValue>
<quer:expression>rowNum</quer:expression>
</quer:customValue>
</quer:projection>
<quer:projection>
<quer:field path="FirstName"/>
</quer:projection>
<quer:projection>
<quer:field path="LastName"/>
</quer:projection>
</quer:projections>
<quer:projectionFilterings/>
<quer:filterings/>
<quer:sortings/>
<quer:sortingFilterings/>
<quer:groupings/>
<quer:joinings/>
</quer:query>
结果:
RowIndex,FirstName,LastName
1,John,Lee
2,Adam,Jackson
3,Jane,Doe
备注
- 如果在高级选项中启用了 "Prevent duplicates",删除的行将增加行索引,即使在结果文件中看不到它们也是如此。
如何在 Taleo Connect 客户端提取脚本中添加行号列? 我正在使用以下 XML 但我遇到了问题。
<quer:projections alias="RCL_NP_all" xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:projection>
<quer:field path="no"/>
</quer:projection>
<quer:projection alias="rowIndex">
<quer:customValue>
<quer:expression>rowNum</quer:expression>
</quer:customValue>
</quer:projection>
</quer:projections>
这个link我指的是:https://docs.oracle.com/cloud/18a/taleo/OTCCU/_advancedqueries.htm#OTCCUid095TG0F90HT
要向导出添加行号,您可以使用以下复杂投影:
<quer:projection alias="RowIndex" xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:customValue>
<quer:expression>rowNum</quer:expression>
</quer:customValue>
</quer:projection>
说明
- 在 Taleo Connect 客户端中打开您的导出。
- 打开常规选项卡并将导出模式设置为"CSV-report"。
- 打开投影选项卡。
- 单击添加。
- Select 添加一个复杂的投影并单击确定。
在复杂投影下,输入以下内容:
<quer:projection alias="RowIndex" xmlns:quer="http://www.taleo.com/ws/integration/query"> <quer:customValue> <quer:expression>rowNum</quer:expression> </quer:customValue> </quer:projection>
保存您的更改。
例子
<quer:query productCode="RC1704" model="http://www.taleo.com/ws/tee800/2009/01" projectedClass="Candidate" locale="en" mode="CSV" csvheader="true" largegraph="true" preventDuplicates="false" xmlns:quer="http://www.taleo.com/ws/integration/query">
<quer:subQueries/>
<quer:projections>
<quer:projection alias="RowIndex">
<quer:customValue>
<quer:expression>rowNum</quer:expression>
</quer:customValue>
</quer:projection>
<quer:projection>
<quer:field path="FirstName"/>
</quer:projection>
<quer:projection>
<quer:field path="LastName"/>
</quer:projection>
</quer:projections>
<quer:projectionFilterings/>
<quer:filterings/>
<quer:sortings/>
<quer:sortingFilterings/>
<quer:groupings/>
<quer:joinings/>
</quer:query>
结果:
RowIndex,FirstName,LastName
1,John,Lee
2,Adam,Jackson
3,Jane,Doe
备注
- 如果在高级选项中启用了 "Prevent duplicates",删除的行将增加行索引,即使在结果文件中看不到它们也是如此。