cancel
Showing results for 
Search instead for 
Did you mean: 

Content conversion in Reciever File Adapter

Former Member
0 Kudos

Hi Frens,

Iam doing A FCC in Reciever file adapter. My input structure is

DT_structure

->Record

->Row

Field1

Field2

Field3

I have donr the configuration as

Recordset Structure : Record,Row

Row.fieldSeparator : ,

Row.endSeparator : 'nl'

Record.fieldSeparator : 'nl'.

With this configuration Iam able to display only one record but I need to display multiple records in the file. Please do suggest me wha need to be done to achieve this.

Radhika.

Accepted Solutions (0)

Answers (5)

Answers (5)

Former Member
0 Kudos

resolved.

Former Member
0 Kudos

Mention only these parameters and test

Recordset Structure : Record,Row

Row.fieldSeparator = ,

Record.fieldSeparator ,

No need to mention endSeparator as newline is taken as default endSeparator

former_member192295
Active Contributor
0 Kudos

Hi,

Follow below configuration at receiver adapter, it will work.

Record set structure record,1,row,*

row.fieldSeparator

row.endSeparator

ignoreRecordsetname true

In data structure row column should be 0...Unbound occurance.

prateek
Active Contributor
0 Kudos

First check whether your datatype has the occurrence of records unbounded or not. Then goto content conversion. If both your Record and Row tags can occur multiple times, then use

Recordset Structure : Record,*,Row,*

Or if Record occurs only once and multiple Row nodes are required, then use

Recordset Structure : Record,1,Row,*

Regards,

Prateek

Former Member
0 Kudos

> I have donr the configuration as

> Recordset Structure : Record,Row

>

chnage to

> Recordset Structure : Record,1, Row,*