cancel
Showing results for 
Search instead for 
Did you mean: 

Step by step Scenario for using FCC at receiver side

Jitendra_Jeswan
Contributor
0 Kudos

hi -

I would like to implement the File >XI>File using file content conversion at receiver side.

Can anybd help me doing this.

I would like to use the following xml file at the sender side :

<?xml version="1.0" encoding="UTF-8"?>

<ns0:MT1_FCC xmlns:ns0="http://accenture.com/xi/F2F">

<FullName>

<Name>

<FName>abc</FName>

<MName>bcd</MName>

<LName>cde</LName>

</Name>

<Name>

<FName>def</FName>

<MName>efg</MName>

<LName>fgh</LName>

</Name>

</FullName>

</ns0:MT1_FCC>

would like to have the target file as txt with following structure...

abc#bcd#cde

def#efg#fgh

Kindly guide...

Accepted Solutions (0)

Answers (4)

Answers (4)

Jitendra_Jeswan
Contributor
0 Kudos

Let me get back to you...

As all three do it in their own way...i will have to implement it..!!

Will let you know Once Done.

Thanks.

prateek
Active Contributor
0 Kudos

Very similar solution

/people/arpit.seth/blog/2005/06/02/file-receiver-with-content-conversion

<i>[Reward if useful]</i>

Regards,

Prateek

former_member529475
Active Contributor
0 Kudos

HI Jeswani,

If this is what you want then take your datatype like this:

Full Name

name

--FName

--MName

--LName

Then map it up. Then in reciever file content conversion you should take like this:

Recordset Structure: Name

name.fieldSeperator = #

name.endSeparator = 'nl'

This should get your file layout what you are expecting.

Cheers..

Vasu

<i>** Reward Points if found useful **</i>

bhavesh_kantilal
Active Contributor
0 Kudos

These parameters will do the trick,

Recorset Structure : FullName

FullName.fieldSeparator #

FullName.endSeparator 'nl'

Regards

Bhavesh