<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Saving .csv into internal table - using dataset (',' comes between data) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451225#M1249530</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can try this way.. Try read the last value using the position and offset&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : l_len1 type i.
DATA : l_len2 type i.

LOOP AT gt_raw into gwa_raw.
IF SY-TABIX &amp;gt; 1.
SPLIT gwa_raw at ',' into gwa_cust-cust_code
                    gwa_cust-cust_name
                    gwa_cust-grp_name.

l_len1 = STRLEN(  gwa_cust-cust_name ).
l_len2 = STRLEN(   gwa_cust-cust_code ). 

l_len1 = l_len1 + l_len2 + 2.
Clear gwa_cust-grp_name.
gwa_cust-grp_name = gwa_raw+len1.

APPEND gwa_cust TO gt_cust.
CLEAR: gwa_cust, gwa_raw.
ENDIF.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Apr 2009 08:40:36 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-08T08:40:36Z</dc:date>
    <item>
      <title>Saving .csv into internal table - using dataset (',' comes between data)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451224#M1249529</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to save .csv from application server to internal table.&lt;/P&gt;&lt;P&gt;i am using the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gt_raw and gwa_raw are dxrawdata format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET gv_pfile FOR INPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt;*--- Display error messages if any.&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;    WRITE:/ 'FILE UPLOAD FAILED - ERROR NO. : ', sy-subrc.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    DO.&lt;/P&gt;&lt;P&gt;      READ DATASET gv_pfile INTO gwa_raw.&lt;/P&gt;&lt;P&gt;      IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;        EXIT.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        APPEND gwa_raw TO gt_raw.&lt;/P&gt;&lt;P&gt;        CLEAR gwa_raw.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--Close the Application server file (Mandatory).&lt;/P&gt;&lt;P&gt;    CLOSE DATASET gv_pfile.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  DELETE DATASET gv_pfile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT gt_raw into gwa_raw.&lt;/P&gt;&lt;P&gt;    IF SY-TABIX &amp;gt; 1.&lt;/P&gt;&lt;P&gt;      SPLIT gwa_raw at ',' into gwa_cust-cust_code&lt;/P&gt;&lt;P&gt;                                gwa_cust-cust_name&lt;/P&gt;&lt;P&gt;                                gwa_cust-grp_name&lt;/P&gt;&lt;P&gt;      APPEND gwa_cust TO gt_cust.&lt;/P&gt;&lt;P&gt;      CLEAR: gwa_cust, gwa_raw.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My program works fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when the gwa_cust-grp_name contains the value for eg. -&amp;gt; panasonic co., ltd. &lt;/P&gt;&lt;P&gt;it takes till &lt;STRONG&gt;panasonic co.,&lt;/STRONG&gt; only&lt;/P&gt;&lt;P&gt;and leaves &lt;STRONG&gt;ltd.&lt;/STRONG&gt; as i am using SPLIT command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any other way to do this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz help me to solve this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 08:33:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451224#M1249529</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-08T08:33:11Z</dc:date>
    </item>
    <item>
      <title>Re: Saving .csv into internal table - using dataset (',' comes between data)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451225#M1249530</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can try this way.. Try read the last value using the position and offset&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA : l_len1 type i.
DATA : l_len2 type i.

LOOP AT gt_raw into gwa_raw.
IF SY-TABIX &amp;gt; 1.
SPLIT gwa_raw at ',' into gwa_cust-cust_code
                    gwa_cust-cust_name
                    gwa_cust-grp_name.

l_len1 = STRLEN(  gwa_cust-cust_name ).
l_len2 = STRLEN(   gwa_cust-cust_code ). 

l_len1 = l_len1 + l_len2 + 2.
Clear gwa_cust-grp_name.
gwa_cust-grp_name = gwa_raw+len1.

APPEND gwa_cust TO gt_cust.
CLEAR: gwa_cust, gwa_raw.
ENDIF.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 08:40:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451225#M1249530</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-08T08:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: Saving .csv into internal table - using dataset (',' comes between data)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451226#M1249531</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can capture it using two variables after using split.Then you can use concatenate statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 08:40:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451226#M1249531</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-08T08:40:38Z</dc:date>
    </item>
    <item>
      <title>Re: Saving .csv into internal table - using dataset (',' comes between data)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451227#M1249532</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi avinash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i dont get you exactly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually my coding is  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT gt_raw into gwa_raw.&lt;/P&gt;&lt;P&gt;    IF SY-TABIX &amp;gt; 1.&lt;/P&gt;&lt;P&gt;      SPLIT gwa_raw at ',' into gwa_cust-cust_code&lt;/P&gt;&lt;P&gt;                                gwa_cust-cust_name&lt;/P&gt;&lt;P&gt;                                gwa_cust-grp_name&lt;/P&gt;&lt;P&gt;                                gwa_cust-corp_name&lt;/P&gt;&lt;P&gt;                                gwa_cust-busi_name&lt;/P&gt;&lt;P&gt;                                gwa_cust-osc&lt;/P&gt;&lt;P&gt;                                gwa_cust-app_code&lt;/P&gt;&lt;P&gt;                                gwa_cust-app_desc&lt;/P&gt;&lt;P&gt;                                gwa_cust-local&lt;/P&gt;&lt;P&gt;                                gwa_cust-osc_code.&lt;/P&gt;&lt;P&gt;      APPEND gwa_cust TO gt_cust.&lt;/P&gt;&lt;P&gt;      CLEAR: gwa_cust, gwa_raw.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this, i get ',' in all these  gwa_cust-grp_name&lt;/P&gt;&lt;P&gt;                                      gwa_cust-corp_name&lt;/P&gt;&lt;P&gt;                                      gwa_cust-busi_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i actually need to retrieve the &lt;STRONG&gt;gwa_cust-osc_code&lt;/STRONG&gt;  for my further processing. But i am getting the correct value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u plz help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 08:58:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451227#M1249532</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-08T08:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Saving .csv into internal table - using dataset (',' comes between data)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451228#M1249533</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,In debugging mode, check the values that is getting read from the file. Split at ',' should work perfectly. Just check the data in the internal table gt_raw that you get after reading from the file and do the coding based on that. share with us the table data so that we can help you out on this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 09:04:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451228#M1249533</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-08T09:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Saving .csv into internal table - using dataset (',' comes between data)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451229#M1249534</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the gt_raw data value is -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1234567,ABCELECTRONIC CO., LTD.,ABC ELECT,CHENG EHANDLE TECH. CO., LTD.,ABC ELECTRONIC CO., LTD.,F,1Z0,ELECTRONICS,0,CDVIKEN&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually it should split into &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gwa_cust-cust_code = 1234567&lt;/P&gt;&lt;P&gt;gwa_cust-cust_name = ABC Electronic co., ltd.&lt;/P&gt;&lt;P&gt;gwa_cust-grp_name = ABC ELECT&lt;/P&gt;&lt;P&gt;gwa_cust-corp_name = CHENG EHANDLE TECH. CO., LTD.&lt;/P&gt;&lt;P&gt;gwa_cust-busi_name = ABC ELECTRONIC CO., LTD.&lt;/P&gt;&lt;P&gt;gwa_cust-osc = F&lt;/P&gt;&lt;P&gt;gwa_cust-app_code = 1Z0&lt;/P&gt;&lt;P&gt;gwa_cust-app_desc = ELECTRONICS&lt;/P&gt;&lt;P&gt;gwa_cust-local = 0&lt;/P&gt;&lt;P&gt;gwa_cust-osc_code = CDVIKEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it is giving&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gwa_cust-cust_code = 1234567&lt;/P&gt;&lt;P&gt;gwa_cust-cust_name = ABC Electronic co.&lt;/P&gt;&lt;P&gt;gwa_cust-grp_name = ltd.&lt;/P&gt;&lt;P&gt;gwa_cust-corp_name = ABC ELECT &lt;/P&gt;&lt;P&gt;gwa_cust-busi_name = CHENG EHANDLE TECH. CO. &lt;/P&gt;&lt;P&gt;gwa_cust-osc = LTD. &lt;/P&gt;&lt;P&gt;gwa_cust-app_code = ABC ELECTRONIC CO.&lt;/P&gt;&lt;P&gt;gwa_cust-app_desc =  LTD.&lt;/P&gt;&lt;P&gt;gwa_cust-local = F&lt;/P&gt;&lt;P&gt;gwa_cust-osc_code = 1Z0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope u can get it now.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;since it is having comma inbetween the data. it is splitting with that comma itself .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 09:22:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451229#M1249534</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-08T09:22:02Z</dc:date>
    </item>
    <item>
      <title>Re: Saving .csv into internal table - using dataset (',' comes between data)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451230#M1249535</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When we use ',' as a delimiter, we have to see that data does not carry any comma's other then where they need to be delimited.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As far as i know, there is no option to distinguish between a comma used as a delimiter and a comma used in data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chaitanya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 09:30:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451230#M1249535</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-08T09:30:32Z</dc:date>
    </item>
    <item>
      <title>Re: Saving .csv into internal table - using dataset (',' comes between data)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451231#M1249536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i think it is not possible..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as u r splitting the record at ','....&lt;/P&gt;&lt;P&gt;u have to change the seperator....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 09:40:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451231#M1249536</guid>
      <dc:creator>RahulKeshav</dc:creator>
      <dc:date>2009-04-08T09:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: Saving .csv into internal table - using dataset (',' comes between data)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451232#M1249537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I notice you have marked the message as answered, but I just wanted to let you know there is a solution. The trick is to parse into an internal table and then to find and reassemble fields that were split because they contgain a comma. The ABAP program below is a commented example.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Mark&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  zcsv_parse.

DATA:
  tokens       TYPE i.

TYPES: BEGIN OF ty_result,
  company      TYPE char20,
  compnr       TYPE i,
  city         TYPE char30,
  country      TYPE char30,
END OF ty_result.

DATA:
  gt_rawtab    TYPE TABLE OF string,
  gw_rawtab    LIKE LINE OF gt_rawtab,
  gt_result    TYPE TABLE OF ty_result,
  gw_result    LIKE LINE OF gt_result,
  gt_parse     TYPE TABLE OF string,
  gw_parse     LIKE LINE OF gt_parse.

DEFINE %csvline.
  gw_rawtab = &amp;amp;1.
  append gw_rawtab to gt_rawtab.
END-OF-DEFINITION.


START-OF-SELECTION.

* Create CSV lines, some with a comma inside a token
  %csvline '"CompanyOne NV",500,"Antwerp","Belgium"'.
  %csvline '"CompanyTwo,Inc",600,"New York,NY","USA"'.
  %csvline '"CompanyThree,Ltd",700,"Sydney,NSW","Australia"'.

* Parse the raw CSV
  LOOP AT gt_rawtab INTO gw_rawtab.
    REFRESH gt_parse.
    SPLIT gw_rawtab AT ',' INTO TABLE gt_parse.
    DESCRIBE TABLE gt_parse LINES tokens.
*   If extra commas: token count higher than field count
    IF tokens &amp;gt; 4.
      PERFORM reassemble.
    ENDIF.

*   At this point each entry in GT_PARSE contains exactly
*   one result field =&amp;gt; build the result table
    LOOP AT gt_parse INTO gw_parse.
*     Strip quotes from text fields
      REPLACE ALL OCCURRENCES OF '"' IN gw_parse WITH ''.
      CASE sy-tabix.
        WHEN 1. gw_result-company = gw_parse.
        WHEN 2. gw_result-compnr = gw_parse.
        WHEN 3. gw_result-city = gw_parse.
        WHEN 4. gw_result-country = gw_parse.
      ENDCASE.
    ENDLOOP.
    APPEND gw_result TO gt_result.
  ENDLOOP.

* Show the formatted result
  LOOP AT gt_result INTO gw_result.
    WRITE: / gw_result-company, gw_result-compnr,
             gw_result-city, gw_result-country.
  ENDLOOP.


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  reassemble
*&amp;amp;---------------------------------------------------------------------*
*       Merges tokens that were split because they contain a comma
*----------------------------------------------------------------------*
FORM reassemble.
  DATA: lastpos    TYPE i,
        lastchar   TYPE c,
        currtoken  LIKE sy-tabix,
        nexttoken  LIKE sy-tabix,
        gw_next    LIKE gw_parse.

  LOOP AT gt_parse INTO gw_parse.
    lastpos  = STRLEN( gw_parse ) - 1.
    lastchar = gw_parse+lastpos(1).
*   Token starts with quote but does not end with one =&amp;gt;
*   must merge with the next token
    IF gw_parse+0(1) = '"' AND lastchar &amp;lt;&amp;gt; '"'.
      currtoken = sy-tabix.
      nexttoken = sy-tabix + 1.
      READ TABLE gt_parse INTO gw_next INDEX nexttoken.
      CONCATENATE gw_parse gw_next INTO gw_parse SEPARATED BY ','.
      MODIFY gt_parse FROM gw_parse INDEX currtoken.
      DELETE gt_parse INDEX nexttoken.
    ENDIF.
  ENDLOOP.
ENDFORM.                    "reassemble&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 10:28:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451232#M1249537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-08T10:28:39Z</dc:date>
    </item>
    <item>
      <title>Re: Saving .csv into internal table - using dataset (',' comes between data)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451233#M1249538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Mark.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It works absolutely fine.  I thought there is no solution for this and told my func. cons. to give data without the , inbetween.&lt;/P&gt;&lt;P&gt;anyhow thanks once again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2009 08:13:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451233#M1249538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-09T08:13:51Z</dc:date>
    </item>
    <item>
      <title>Re: Saving .csv into internal table - using dataset (',' comes between data)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451234#M1249539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mark !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now again i have the problem in the csv file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your code works if only one ',' comes between the "...".&lt;/P&gt;&lt;P&gt;but for me, now i get more then 3 commas between the csv file ( of one field ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can u help me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 04:45:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/saving-csv-into-internal-table-using-dataset-comes-between-data/m-p/5451234#M1249539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T04:45:13Z</dc:date>
    </item>
  </channel>
</rss>

