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.
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
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.
FCC For Hierarchical Structure in Receiver Channel - Process Integration - SCN Wiki
Regards,
Samanth Kunapareddi
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
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
Add a comment