<?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: spaces in string in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/spaces-in-string/m-p/3897636#M935461</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 10 Jun 2008 04:13:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-10T04:13:38Z</dc:date>
    <item>
      <title>spaces in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spaces-in-string/m-p/3897633#M935458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;am using function module spell_amount n am coverting the integers into words,  i had to split the output into two line,&lt;/P&gt;&lt;P&gt;but while spliting i had to make sure tht i wont split the word&lt;/P&gt;&lt;P&gt; for example billion   .. bill in first line and lion in second line &lt;/P&gt;&lt;P&gt;like tht.. i want protect &amp;amp; endproctect kind of thing.. &lt;/P&gt;&lt;P&gt;am trying on search command to catch the spaces in sy-fdpos&lt;/P&gt;&lt;P&gt;and later spliting the string but the search command is of no use as its not catching SPACE or ' '.&lt;/P&gt;&lt;P&gt;what to do&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;P&gt;uday&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 03:30:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spaces-in-string/m-p/3897633#M935458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T03:30:25Z</dc:date>
    </item>
    <item>
      <title>Re: spaces in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spaces-in-string/m-p/3897634#M935459</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;       U can use split command to seperate the string field by space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT string variable name  AT  ' '  INTO  h1.........hn&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arunprasad.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 03:39:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spaces-in-string/m-p/3897634#M935459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T03:39:09Z</dc:date>
    </item>
    <item>
      <title>Re: spaces in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spaces-in-string/m-p/3897635#M935460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prakash,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use Can use Split Command to achieve this.&lt;/P&gt;&lt;P&gt;Here is the sample Code Using Split Statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: DATE TYPE STRING VALUE '31/6/2008'. " '21/02/2008'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : GV_YEAR(4)   TYPE C,&lt;/P&gt;&lt;P&gt;       GV_MONTH(2)  TYPE C,&lt;/P&gt;&lt;P&gt;       GV_DATE(2)   TYPE C,&lt;/P&gt;&lt;P&gt;       GV_YEAR1(4)  TYPE N,&lt;/P&gt;&lt;P&gt;       GV_MONTH1(2) TYPE N,&lt;/P&gt;&lt;P&gt;       GV_DATE1(2)  TYPE N,&lt;/P&gt;&lt;P&gt;       GV_SDATE TYPE STRING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;End of Changes - DV1K924241&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SPLIT DATE AT '/' INTO  GV_DATE GV_MONTH GV_YEAR.&lt;/P&gt;&lt;P&gt;    MOVE : GV_YEAR  TO GV_YEAR1,&lt;/P&gt;&lt;P&gt;           GV_DATE  TO GV_DATE1,&lt;/P&gt;&lt;P&gt;           GV_MONTH TO GV_MONTH1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CONCATENATE GV_YEAR1 GV_MONTH1 GV_DATE1 INTO GV_SDATE.&lt;/P&gt;&lt;P&gt;    CONDENSE GV_SDATE.&lt;/P&gt;&lt;P&gt;     WRITE:/  GV_SDATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CLEAR : GV_YEAR,  GV_YEAR1,&lt;/P&gt;&lt;P&gt;            GV_DATE,  GV_DATE1,&lt;/P&gt;&lt;P&gt;            GV_MONTH, GV_MONTH1,&lt;/P&gt;&lt;P&gt;            GV_SDATE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward If Helpfull,&lt;/P&gt;&lt;P&gt; Naresh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 04:16:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spaces-in-string/m-p/3897635#M935460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T04:16:53Z</dc:date>
    </item>
    <item>
      <title>Re: spaces in string</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/spaces-in-string/m-p/3897636#M935461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jun 2008 04:13:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/spaces-in-string/m-p/3897636#M935461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-10T04:13:38Z</dc:date>
    </item>
  </channel>
</rss>

