<?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: converting the comma seperator value  format in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-the-comma-seperator-value-format/m-p/1845923#M358885</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh , &lt;/P&gt;&lt;P&gt;  You can use the command SPLIT to split the string into smaller sections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do revert back in case you have further queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Jan 2007 03:26:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-25T03:26:31Z</dc:date>
    <item>
      <title>converting the comma seperator value  format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-the-comma-seperator-value-format/m-p/1845921#M358883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am getting the content of a table in a internal table with comma separator value format, dynamically by using dfies table i am getting the header of the table, and displaying it in the output, now my query is that the content of the data which i am getting in a itab having only one field of type string&lt;/P&gt;&lt;P&gt;data : begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;          data1 type string,&lt;/P&gt;&lt;P&gt;         end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;some where they were concatenating the content of the data and storing it inthe itab, now i want the content of the itab should be displayed corresponding to there header in the output&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 03:06:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-the-comma-seperator-value-format/m-p/1845921#M358883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T03:06:37Z</dc:date>
    </item>
    <item>
      <title>Re: converting the comma seperator value  format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-the-comma-seperator-value-format/m-p/1845922#M358884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try using TAB as separator for data to display accordingly.&lt;/P&gt;&lt;P&gt;Eg: tab(1) type c value cl_abap_char_utilities=&amp;gt;horizontal_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 03:16:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-the-comma-seperator-value-format/m-p/1845922#M358884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T03:16:57Z</dc:date>
    </item>
    <item>
      <title>Re: converting the comma seperator value  format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-the-comma-seperator-value-format/m-p/1845923#M358885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh , &lt;/P&gt;&lt;P&gt;  You can use the command SPLIT to split the string into smaller sections.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do revert back in case you have further queries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Arun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 03:26:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-the-comma-seperator-value-format/m-p/1845923#M358885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T03:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: converting the comma seperator value  format</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/converting-the-comma-seperator-value-format/m-p/1845924#M358886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can remove the commas from the record by using the REPLACE command as below -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT itab.&lt;/P&gt;&lt;P&gt;  DO.&lt;/P&gt;&lt;P&gt;    REPLACE ',' WITH '' INTO itab-data1.&lt;/P&gt;&lt;P&gt;    IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;      EXIT.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDDO.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if found useful...!&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Jan 2007 03:29:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/converting-the-comma-seperator-value-format/m-p/1845924#M358886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-25T03:29:24Z</dc:date>
    </item>
  </channel>
</rss>

