Hi,
I need the field names to be populated in csv file in header along with another header.
Material group
MaterialNumber, Name
12345, Test
i have used the below in fcc in receiver file adapter.
Transaction.fieldSeparator | 'nl' |
DETAIL.addHeaderLine | 2 |
DETAIL.headerLine Material
DETAIL.fieldSeparator | , |
DETAIL.endSeparator | 'nl' |
DETAIL.fieldNames | MaterialNumber,Name |
When I tried to give addHeaderLine as 1 to see only the field names in csv, it is also not working. Cache content is upto date.
Mapping is simply one to one.
Please let me know if anything missing.