2012 Mar 22 10:33 PM
In FM CRM_MKTLIST_C_READ, Export parameter ET_C_DATA has a field DATA_RECORD which has data like 39,,,,,critical val that was read from a CSV file uploaded in the server.
How to read 39,,,,,critical val into an internal table of a certain type structure as per how the CSV file has been created?
Moderator message: basic, please consult ABAP documentation before posting.
Message was edited by: Thomas Zloch
In FM CRM_MKTLIST_C_READ, Export parameter ET_C_DATA has a field DATA_RECORD which has data like 39,,,,,critical val that was read from a CSV file uploaded in the server.
How to read 39,,,,,critical val into an internal table of a certain type structure as per how the CSV file has been created?
Moderator message: basic, please consult ABAP documentation before posting.
Message was edited by: Thomas Zloch
2012 Mar 22 10:54 PM
you can use the split command to convert the data_record field into an internal table,
split data_record at ',' into table my_table. (check the syntax)
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |