cancel
Showing results for 
Search instead for 
Did you mean: 

Where could have I done the mistake?

Former Member
0 Kudos

Hi

I've a complex structure, having header and item. Sender is File FCC.

I don't understand, why it's only sending one record (1 header data + 1 item data). Its not processing multiple records.

In Data Types:

What can be the occurance for a field?

What can be the occurance for sub node?

What can be the occurance for Node?

If I have the following data

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX (header)

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX (items)

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

.............................................................................................................................

.................................................................................................................................................

Also what can be the min FCC parameters if it is a fixed lenth kind of fields.

Thanks.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

CLOSED

Former Member
0 Kudos

Hi Swarna,

There can be multiple places where it went wrong. First you need to check the occurrences for the datatype. You should header and item are sgemenets in datatype. Your occurence header 1..1 and item 1..unbounded.

If you have multiple headers within the file then you need to have a key field else you dont need the key field.

In sender comm. channel you need to have Header,1,item,* and content conversion parameters for fixedlenght like .fieldfixedlenghts, .endspearator etc.

If you can give all these deatils and a sample file then somebody can help you out here.

Since you are getting one header and one item, i feel there can be problem with the datatype or the content conversion paramters. These are things you need to check.

Regards,

---Satish

Former Member
0 Kudos

Thanks very much.

Recordset Structure header,1,item,1

That is what i gave. File will have 1 record of header and 1record of item again 1 record of header and 1 record of item and so on.

The file is reading by the interface if I remove last item. No matter how many records are there.

S.

Former Member
0 Kudos

HI,

Data Type Occurance can be 0..Unbound

Ex:

DT_Request

Row-----0..Unbound

-


Field1----0..Unbound

and so on..

In content conversion in FCC

Record Set Structure: Row* (* Means multiple records)

In Name Parameter table add

Name----


Value

Row.fieldSeparator----


|

Row.fieldSeparator----


'0x0D''0x0A'

Row.fieldNames----


Field1,Field2 and so on seperated by ,

Hope this helps you

Regards

--Rajeev