TCC Union export script
Summary
Does anyone have a sample script with a union?Content
I'm looking for a TCC script that performs a union on data from the User entity. Here's what I'm trying to do:
- String value ''Line Manager"
- projection: first name
- projection: last name
- projection: employee ID
UNION
- String value ''Dsg Manager"
- projection: first name
- projection: last name
- projection: employee code
where employee status=active
Here's the xml I found in the TCC user guide but I don't know how to implement this in TCC. It looks like the xml tags are not the same as in TCC..?
<union alias="testUnion"> <queries> <query alias="testUnion2" projectedClass="com.taleo.akirademo.entity.Candidate"> <projections> <projection alias="entityKey" tag="entityKey"> <key path=""/> </projection> </projections>
0