Skip to Content
0
Former Member
Jul 06, 2009 at 07:38 AM

CRM_MKTIMEX_CSV_LINE_SPLIT Function module and split issue

44 Views

Hi,

My requirement is as follows:

1.Each time I receive a file from legacy system with some set of records.

2.I need to upload this into CRM system internal table type crmt_mktimex_field_tab(I am doing using GUI_UPLOAD).

3.After this dynamically I have to capture the fields of the legacy system and I need to keep that into one internal table(I have declared dynamic internal table and assigned the fields into field-symbol).

4.Now, the file which is upload is having the records as CSV.I need to split these entries.I did this using function module CRM_MKTIMEX_CSV_LINE_SPLIT.

5.But this function module will split single records,whereas I have multiple records.But I have looped through the internal table and Now I need to pass the values into the field-symbol dynamically, not field by field,because each time new file will be uploaded and the field symbol will have different fields.

Can anyone tell how to do this?