cancel
Showing results for 
Search instead for 
Did you mean: 

Hi experts

allamudi_loordh
Active Participant
0 Kudos

i have a structure like this

MT_empdetails

inside that DT_empdetails

Line_items 1 to unbound

name 1

emp_id 1

here i am reading Line_items of multiple records and in each record i am reading name and emp_id ..

i just wanted to send a text file like this Ramesh,100

suresh,220

can any one tell me how to do file content conversion parameters needed ,.,i am using the local Xi directory for source and target.

Accepted Solutions (0)

Answers (4)

Answers (4)

baskar_gopalakrishnan2
Active Contributor
0 Kudos

Recordset structure is Line_items, *

Plus follow the above suggestions

allamudi_loordh
Active Participant
0 Kudos

Thanks all

resolved it by reading the lengh of line_itesm record and looping it...

regards,

Allamudi Loordh.

rajasekhar_reddy14
Active Contributor
0 Kudos

very simple,

enter record structure :Line_items

Line_items.fieldSeparator : ,

Line_items.endSeparator :'nl'

this is enough.

Former Member
0 Kudos

Hi,

RecordSetStructure Line_Items

Line_Items.fieldSeparator ,

Line_Items.endSeparator 'nl'

BR

Fabio

Former Member
0 Kudos

Hi,

Specify the below content conversion parameters)

Line_items.fieldNames (Specify the field names)

Line_items.fieldFixedLengths (If the lengths are restricted)

Line_items.fieldSeperator ( specify the field seperator)

Line_items.endSeperator (Specify end Seperator)

Line_items.fixedLengthTooShortHandling (Cut/Ignore as u would like)

Thanks,