I am using Taleo Connect Client to export data from Taleo. I encountered two questions:
How can I add blank columns to an output CSV file?
For example, try to add ColumnBlank1
between Column_FirstName
and Column_LastName
.
Column_FirstName|ColumnBlank1|Column_LastName
John||Lee
Adam||Jackson
How can I set default value like "N" for one field?
DBaluke Huang's answer was correct, but he left out some details. Adding the full solution for others who might need this too.
To export a blank or fixed string value in a column using TCC (Taleo Connect client) do the following:
In the First Parameter Section: In the Value box, add any string field from your list on the entity tab. The Data Type should be Field.
In the Second Parameter Section, In the Value box, add the same field from Parameter 1 value box. The Data Type should be Field.
In the Third Parameter section, In the value box, enter no value for blank or enter the fixed string you want in all records.
Then change the data type to string in this section.
For those unfamiliar with the replace function you are looking for the string Parameter1.Value in Parameter2.value and then replacing all instances where the string is found with parameter3.value