cancel
Showing results for 
Search instead for 
Did you mean: 

List of CONTENT CONVERSION PARAMETERS

Former Member
0 Kudos

Hello Experts,

Can any one list out all the content conversion parameters. i.e like

<rowset structure>.fieldName

<roeset structure>.endSeparator...... etc.

along with their explination.

Thanks inadvance.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

for Example:See this Str..........

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

<ns0:MT_FILE_SEND_RAJEND_FCC xmlns:ns0="http://file_2_file_rajender">

<Recordset>

<HEADER>

<keyfield>01</keyfield>

<ORDER_NO>10001</ORDER_NO>

<NAME>xyz</NAME>

</HEADER>

<ITEM_DETAILS>

<keyfield>02</keyfield>

<MAT_TYPE>abc</MAT_TYPE>

<MAT_NO>sss</MAT_NO>

<AMOUNT>1212</AMOUNT>

<DATE>yyyymmdd</DATE>

</ITEM_DETAILS>

</Recordset>

</ns0:MT_FILE_SEND_RAJEND_FCC>

This are the Fcc Parameters:

Document name: It defines the Sender Message type which we have to send

Document name space: It defines the unique name for entire object.

Recordset Name: It is the Root node of the Element..(Recordset)

Recordset Structure: It is defined root node of the structure.....(Header, Item_details)

Keyfield name: it determines the header data or item data....(01,02)

Recordset Sequence: ascending/descending

HEADER.fieldNames..........................keyfield,ORDER_NO,NAME

HEADER.fieldSeparator...................,

HEADER.keyFieldValue.................01

HEADER.endSeparator.................'/n'

HEADER.processFieldNames..............from Configuartion

ITEM_DETAILS.fieldNames............keyfield,MAT_TYPE,MAT_NO,AMOUNT,DATE

ITEM_DETAILS.fieldSeparator............,

ITEM_DETAILS.keyFieldValue.........02

ITEM_DETAILS.endSeparator..........'/n'

ITEM_DETAILS.processFieldNames............from Configuartion....

I hope this is much more for this scenario........

Answers (1)

Answers (1)

Former Member
0 Kudos