cancel
Showing results for 
Search instead for 
Did you mean: 

FCC Parameters are not working in the Receiver File Adapter

Former Member
0 Kudos

Hi,

FCC parameters endSeparator is not working in my Receiver File Adapter..

my structure is like bellow format..

MT_DATATYPE:

Data -


1:UnBounded

. .OrderDate----


1:1

. .OrderNo -


1:1

and i want to get the file in the bellow format (text file)

2008/0701

101

2008/0701

102

2008/0701

103

2008/0702

105

like these format i want to get the data... but end separator 'nl' is not working for me... if i keep the Filed seperator is $ means that is working fine.. but endSeparator is not working... in the continution of first line i'm getting all other fileds..

any helpful answers will be appriciated..

Regards

Jain

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

HI,

Try to pass the '0xHH'

you can specify non-printable ASCII characters. These characters can each be inserted individually in the strings in the form ´0xHH´

Thanks

Swarup

Answers (3)

Answers (3)

Former Member
0 Kudos

Solved

Former Member
0 Kudos

Hi Jain,

This Blogs may help u,

Take a look at these blogs for content conversion,

-- File Receiver Content Conversion

-- File Sender Content COnversion.

Regards,

Jayasimha Jangam

Former Member
0 Kudos

Hi Jain....

Field separator is for separating the fields.That means it will effect every field in the node.

But end separator is not like that.It will apply at the end ofall fields of a node.It will effect node not a field.

according to ur scenario if u use data.endseparator 'nl',output will come like this

2008/0701$101

2008/0701$102

2008/0701$103

2008/0702$105

if u want new line for every field try to insert a separate node for second field.That means

MT_DATATYPE:

Data -


1:UnBounded

. .OrderDate----


1:1

<Data2> 1:1

. ....OrderNo -


1:1

now give data.endseparator 'nl'

data2.endseparator 'nl'

if possible try like this....

Sreedhar Goud L