cancel
Showing results for 
Search instead for 
Did you mean: 

FCC Receiver side

Former Member
0 Kudos

Hi Experts,

Im working with the file to file scenario with FCC receiver side parameters ( sender xml with receiver text).

I want my fields with comma separated values...like... abc,xyz,mno.. so on...

Im giving the parameters as :

HEADER1.fieldSeparator: 'nl'

HEADER.fieldseparator: ,

Where the structure is Header1--->Header.

Im getting the error as :

Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Channel has not been correctly initialized and cannot process messages

Channel has not been correctly initialized and cannot process messages.

Please help.

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Thanks for the help.

Former Member
0 Kudos

hi ,

Could u plz tell hw it was solved or wat d error was.it will be of great help

michel_dekimpe
Participant
0 Kudos

anybody knows how this was solved ?

thanks

SudhirT
Active Contributor
0 Kudos

Hi,

HEADER1.fieldSeparator: 'nl'

HEADER.fieldseparator: ,

Use HEADER.fieldSeparator instead of fieldseparator. It is case sensitive.

Thanks!

Former Member
0 Kudos

Yes Boss, i have used it in Separator only, its by mistake i have mentioned like that in my question.

Former Member
0 Kudos

Hi,

Check if for the Recordset structure you have provided the occurance details

Receiver File Adapter does not require occurances to be specified.

regards

Ganga

Former Member
0 Kudos

Hi,

In RecordStructure, i have mentioned it as

HEADER1,HEADER.

Is this fine?

prateek
Active Contributor
0 Kudos

If occurrence of HEADER1 is once, then use

HEADER1,1,HEADER,*

If its multiple, then use

HEADER1, * ,HEADER, * (without space)

Regards,

Prateek

Former Member
0 Kudos

Yes its fine.

Divya its not mandatory to provide endSeparator by default endSeparator is a new line.

Use it only in case your endSeparator is going to be anything other than a 'nl'

former_member190389
Active Contributor
0 Kudos

Hi

Is there any more fields inside HEADER structure?

Former Member
0 Kudos

Yes there are 10 records with 10 fields in that which are to be separated by comma.

for that i gave HEADER.fieldSeparator = ,

HEADER1.fieldSeparator = 'nl'

Former Member
0 Kudos

Im not using any endSeparator here.

Im using only fieldSeperators.

Former Member
0 Kudos

Hi,

could u plz provide the structure,

Assuming there are no fields under header1,

Record set Structure :Header

variables:Header.addHeaderLine 0

Header.fieldSeparator ,

Header.endSeparator 'nlu2019

try this

Former Member
0 Kudos

Hi Robin,

My sender xml file structure is :

DT_FCCRec-->HEADER1->HEADER--->lastname,name,middle,company...so on till 10 fields.

My output file should be a text file with comma seperated values.

I need 5 rows...with 10fields seperated by comma:

name,lastname,firstname.....10 fields

name1,lastname1,firstname1...10fields

.

.

name5,lastname5,firstname5...10fields.

dharamveer_gaur2
Active Contributor
0 Kudos

Hi

You are using two times fieldSeprator. look this blog for Receiver FCC

Former Member
0 Kudos

Yes...according to this blog, its

ContactFile.fieldSeparator = 'nl'

Contact.fieldSeparator = ,

According to my scenario:

HEADER1.fieldSeparator = 'nl'

HEADER.fieldSeparator= ,

I think this should work fine, but im getting the error which i have mentioned.