cancel
Showing results for 
Search instead for 
Did you mean: 

receiver FCC configuration for two or more nodes/substructures

Former Member
0 Kudos

Hi Experts,

Please let me know how to do fcc for the receiver which is having two substructures...

Suppose, I am having the receiver file like below..

record(0-unbounded)

     empdetails(0-unbounded)

           empname(0-1)

           empid(0-1)

     company(0-unbounded)

           companyname(0-1)

           companycode(0-1)

So, how to give the configuration for receiver communication channel like this structures. Please provide effective answers.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi

Use this in your FCC

RecordSet Structure :  empdetails, company

empdetails.fieldNames : empname, empid

empdetails.fieldFixedLengths  for fixed length files or empdetails.fieldSeaprator for files where we have field separator ( pipe, comma ,tab ).

empdetails.endSeparator : 'nl'

company.fieldNames : companyname, companycode

company.fieldFixedLengths or company.fieldSeparator

company.endSeparator : 'nl'

example:

Thanks,

Indrajit

Answers (5)

Answers (5)

Former Member
0 Kudos

Thanks Indrajit and Sreenivas, the solution you provided is worked well..

Venu

Former Member
0 Kudos

Indrajit/Sreenivas

Here,  recordset name is not required in recordset structure?

Former Member
0 Kudos

Hi Venu

Yes its not required...only the child node names ( empdetails, company ) will be enough.

Thanks,

Indrajit

former_member191435
Contributor
former_member191435
Contributor
0 Kudos

HI Venu

You will the FCC what indrajit suggested... But I am adding the points for little clear clarification...

empdetails.fieldFixedLengths:   Given lengths of empname and empid

or

empdetails.fieldSeaprator   :   use , or |    nased on your requirement.

Thanks,

Sreenivas

former_member440061
Participant
0 Kudos

Hi Venu,

you may use the following SAP help available for configuring your receiver File adapter with FCC:

Configuring the Receiver File Adapter - Advanced Adapter Engine - SAP Library

for FCC parameters for your structure containing two sub structures, you will have to define them for both the nodes:

RecordSet Structure : record, empdetails, company

empdetails.fieldNames : empname, empid

empdetails.fieldFixedLengths : 7, 5

empdetails.endSeparator : 'nl'

company.fieldNames : companyname, companycode

company.fieldFixedLengths : 10, 10

company.endSeparator : 'nl'

Regards,

Faisal

0 Kudos

Hi Venu,

In the receiver communication channel, under the 'Content Conversion' please specify the following parameters.

Recordset Structure: empdetails,company

In the table, you can add the following fields and values.

empdetails.fieldFixedLengths : 30,30

empdetails.endSeparator  : 'nl'  

company.fieldFixedLengths : 30,30

company.endSeparator : 'nl'

For further information, you can go through the below links.

Converting XML in the Receiver File/FTP Adapter to Text Format - Configuring the File/FTP Adapter in...

FCC For Hierarchical Structure in Receiver Channel - Process Integration - SCN Wiki

Regards,

Samanth Kunapareddi