cancel
Showing results for 
Search instead for 
Did you mean: 

poulate the header levels fields in Content Conversion in receiver FAdapter

abhay_aggarwal
Participant
0 Kudos

Hi All,

I have req in that there is table stucture , this table strcture I want to populate the header level and item level also at receiver side. I am using Content Conversion at receiver side.

the data is like this

at header level

Country City Name Age

India bom kk 19

Sweden Stock GG 20

for this type file How can I create the datatype and In wht way I will use content conversion for this.wht paramters I have to give in in Content Conversion.......

Regards

Accepted Solutions (0)

Answers (3)

Answers (3)

abhay_aggarwal
Participant
0 Kudos

Hi ,

issue is resolved. I have created one more structure and passed all the values with contant and read the recordset.

thanks for suggestions

Regards

Former Member
0 Kudos

Hi Abahy,

The solution suggested by sudeep will solve the problem.For more clarity on the Content conversion Issues you can refer to the following blog :

for FCC on receiver side:

/people/shabarish.vijayakumar/blog/2007/08/03/file-adapter-receiver--are-we-really-sure-about-the-concepts

for FCC on sender side:

/people/shabarish.vijayakumar/blog/2006/02/27/content-conversion-the-key-field-problem

hope this will give you more clarity on the FCC for file adapter.

Regards

Ravi Anand.

abhay_aggarwal
Participant
0 Kudos

Hi ,

issue is resolved. I have created one more structure and passed all the values with contant and read the recordset.

thanks for suggestions

Regards

Former Member
0 Kudos

Create Data Type with sub-element ITEMS(just an example)

Then Country,Name,Age or whatever field you want to add in header of output file.

Once data type is ready now time to configure Receiver CC:

Use following Content Conversion Parameters:

Recordset Structure: ITEMS

ITEMS.addHeaderLine: 1

ITEMS.fieldSeparator: (space)

ITEMS.endSeparator: 'nl'

Just name the data type fields as you want to be in output file.

abhay_aggarwal
Participant
0 Kudos

HI Sudip,

the field labels I want in excel file at top or header of every coloum are)

Country City Name Age

below these fields only the value of these fields will come like this

India bom kk 19

Sweden Stock GG 20

for this u mean to say I have to declare only header

Create Data Type with sub-element ITEMS(just an example)

Then Country,Name,Age or whatever field you want to add in header of output file.

Once data type is ready now time to configure Receiver CC:

Use following Content Conversion Parameters:

Recordset Structure: ITEMS

ITEMS.addHeaderLine: 1

ITEMS.fieldSeparator: (space)

ITEMS.endSeparator: 'nl'

and my data will come like this in file

Country City Name Age

India Banglore jjjjj 24

England london kkkk 88

Can u plz cofirm for this...........

Regards