I need to create a (.txt) file without column headers, no comma separated values but each column will have a fixed starting position and a fixed length in the text file. For example, below is the text file to be created with three column
Column1 Column2 Column1
abc 1 New employee
xyz 2 Existing
Fixed starting position and a fixed lenth values for these columns as are below;
Column1 : Starting Position -1, Fixed Length -4
Column2 : Starting Position - 8, Fixed Length - 2
Column3 : Starting Postion - 11, Fixed Length - 30
Can this be done using FLAT FILE DESTINATION or do i need to write custom logic in the SCRIPT COMPOENENT to generate this format.