cancel
Showing results for 
Search instead for 
Did you mean: 

Doubt: addHeaderLine File Content Conversion Recever File adapter.

Former Member
0 Kudos

Hi,

Below XML Target Structure ( Recever File Adapter- FCC)

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

<ns1:MT_ChangeOfAddress xmlns:ns1="urn:passhe.com/ChangeOfAddressISA28">

<BUSINESS_PARTNER>

<item>

<CAMPUSCODE>65</CAMPUSCODE>

<STUDENTNUMBER>6500000192</STUDENTNUMBER>

<ST_OBJID>732298498</ST_OBJID>

</item>

</BUSINESS_PARTNER>

</ns1:MT_ChangeOfAddress>

Recever File Adapter- FCC : i have done below configurations.

BUSINESS_PARTNER.addHeaderLine = 1 ( i tryed with value 2 also) and also tryed with item.addHeaderLine = 1 ( i tryed with value 2 also) i am not getting Header line in my out put file and rest fine

Recordset Structure: BUSINESS_PARTNER,item

BUSINESS_PARTNER.fieldNames : item

BUSINESS_PARTNER.fieldSeparator: ,(comma)

item.fieldNames : CAMPUSCODE,STUDENTNUMBER,ST_OBJID

item.fieldSeparator : , (comma)

BUSINESS_PARTNER.addHeaderLine = 1 ( i tryed with giveing value as 2) and also tryed this way also item.addHeaderLine = 1 ( i tryed with giveing value as 2) i am not getting XML Header line in my out put file and rest is working fine. please help me out.

Thanks,

Dhanush

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Answers (1)

Answers (1)

Former Member
0 Kudos

Dhanush,

According to help.sap.com standard structure

<root>...

<nameA>

<value1>value</value1>

<value2>value</value2>

<value3>value</value3>

</nameA1>

<nameB>

<value4>value</value4>

</nameB>

...

</root>...

I guess if you reduce it to one level like by removing item or BUSINESS_PARTNER it should work.

http://help.sap.com/saphelp_erp2004/helpdata/en/0b/9a50465ccf84479e39a6d50c90fb3f/frameset.htm

Gaurav Jain