Taleo 导出,包括 UDF

Taleo Export including UDFs

提问人:Berniesa13 提问时间:10/27/2023 更新时间:10/31/2023 访问量:14

问:

我正在尝试从 Taleo 为一些候选字段编写导出,但也需要包含用户定义的字段。

我尝试了以下方法:

    <ns1:query alias="Find Candidates" projectedClass="Candidate">
    <ns1:projections>
    <ns1:projection>
    <ns1:field path="Number"/>
    </ns1:projection>
    <ns1:projection>
    <ns1:field path="FirstName"/>
    </ns1:projection>
    <ns1:projection>
    <ns1:field path="LastName"/>
    </ns1:projection>
    <ns1:projection>
    <ns1:field path="EmployeeNumber"/>
    </ns1:projection>
    <ns1:projection>
    <ns1:field path="EmailAddress"/>
    </ns1:projection>
    <ns1:projection>
    <ns1:field path="UDFDefinition,CustomField:SR_Application_ID,Number"/>
    </ns1:projection>

在 UDFDefinitions 实体中,我正在寻找的字段定义为:

            <e:Entity xsi:type="e:UDFDefinition">
               <e:Cardinality>1</e:Cardinality>
               <e:Description>
                  <e:value locale="en">SR Application ID</e:value>
               </e:Description>
               <e:ID>SR_Application_ID</e:ID>
               <e:Number>10700</e:Number>
               <e:OwnedUDS/>
               <e:Entity>CSUSER</e:Entity>
               <e:Type>
                  <e:UDFType>
                     <e:Number>3</e:Number>
                  </e:UDFType>
               </e:Type>
               <e:UDS/>
            </e:Entity>
xml 导出 用户定义函数 taleo

评论


答:

0赞 Berniesa13 10/31/2023 #1

关于这个问题的答案不多......所以通过反复试验,我自己想通了:

它就像使用定义的名称一样简单:

<ns1:projection>
   <ns1:field path="SR_5fApplication_5fID"/>
</ns1:projection>