cancel
Showing results for 
Search instead for 
Did you mean: 

No unique identifier in FCC

Former Member
0 Kudos

Hi Experts,

We have a requirement in SAP PI (7.31) where the flat file is picked from source and sent to Target.

FCC is used for conversion in the sender channel.

Incoming files has two header, with each header multiple line items under that.

The line item has dynamic value after "D".

Example :

H1

D12

D25

T1

H2

D45

D87

T2

Need inputs on how to proceed in case of no unique identifiers in FCC.

Thanks,

Pavi

Accepted Solutions (0)

Answers (3)

Answers (3)

RaghuVamseedhar
Active Contributor
0 Kudos

Pavi,

Adding to above suggestions, please check

Former Member
0 Kudos

Thanks for the reply. It helped.

former_member182412
Active Contributor
0 Kudos

Hi Pavi,

is H, D and T are present in the file?? If not you can use below FCC parameters in sender channel and handle it in the mapping.


<?xml version="1.0" encoding="utf-8"?>

<ns:FileSenderData xmlns:ns="urn:ch:test:prototype">

<RecordSet>

  <Record>

  <EachLine>H1</EachLine>

  </Record>

  <Record>

  <EachLine>D12</EachLine>

  </Record>

  <Record>

  <EachLine>D25</EachLine>

  </Record>

  <Record>

  <EachLine>T1</EachLine>

  </Record>

  <Record>

  <EachLine>H2</EachLine>

  </Record>

  <Record>

  <EachLine>D45</EachLine>

  </Record>

  <Record>

  <EachLine>D87</EachLine>

  </Record>

  <Record>

  <EachLine>T2</EachLine>

  </Record>

</RecordSet>

</ns:FileSenderData>

Regards,

Praveen.

Former Member
0 Kudos

Thanks for the reply. It helped.

Harish
Active Contributor
0 Kudos

Hi Pavi,

I would suggest to pick the file and convert into simple structure in FCC.

example

Recordset

     Data 0...unbound

Then you can have one graphical mapping to convert this structure into your source (desired) structure.

regards,

Harish

Former Member
0 Kudos

Thanks for the reply.