<?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: Need two spaces between numbers in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-two-spaces-between-numbers/m-p/2958004#M697781</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;replace '20' with '2  0' int &amp;lt;field&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Oct 2007 17:14:12 GMT</pubDate>
    <dc:creator>Clemenss</dc:creator>
    <dc:date>2007-10-17T17:14:12Z</dc:date>
    <item>
      <title>Need two spaces between numbers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-two-spaces-between-numbers/m-p/2957999#M697776</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;May I know how to get two spaces between 2 and 0 which is shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Input: 5300083542120406I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Requirement: 530008354212  0406I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 16:54:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-two-spaces-between-numbers/m-p/2957999#M697776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T16:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Need two spaces between numbers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-two-spaces-between-numbers/m-p/2958000#M697777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;field = 5300083542120406I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate field&lt;EM&gt;0(12) space space field&lt;/EM&gt;12(5) into variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Atish Sarda&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 16:59:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-two-spaces-between-numbers/m-p/2958000#M697777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T16:59:59Z</dc:date>
    </item>
    <item>
      <title>Re: Need two spaces between numbers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-two-spaces-between-numbers/m-p/2958001#M697778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Raja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: text1(20) value '5300083542120406I'.&lt;/P&gt;&lt;P&gt;concatenate text1&lt;EM&gt;0(12) space text1&lt;/EM&gt;12 into text1 separated by space.&lt;/P&gt;&lt;P&gt;write: text1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Allan Cristian&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Allan Cristian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 17:04:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-two-spaces-between-numbers/m-p/2958001#M697778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T17:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: Need two spaces between numbers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-two-spaces-between-numbers/m-p/2958002#M697779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the example one :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  Ztest_ytt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data num1(10) type c.&lt;/P&gt;&lt;P&gt;*data num_space(2) type x value '09'.&lt;/P&gt;&lt;P&gt;data num_space(2) type c." value '09'.&lt;/P&gt;&lt;P&gt;data num2(20) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data num_final(40) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;num1 = '100100100100'.&lt;/P&gt;&lt;P&gt;num2 = '200200200200'.&lt;/P&gt;&lt;P&gt;concatenate num1 num_space num2 into num_final separated by space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ num_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 17:11:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-two-spaces-between-numbers/m-p/2958002#M697779</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T17:11:04Z</dc:date>
    </item>
    <item>
      <title>Re: Need two spaces between numbers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-two-spaces-between-numbers/m-p/2958003#M697780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Raja,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or u can try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: text1(20) value '5300083542120406I',&lt;/P&gt;&lt;P&gt;      text2(20).&lt;/P&gt;&lt;P&gt;write: text1+0(12) to text2.&lt;/P&gt;&lt;P&gt;write: text1&lt;EM&gt;12 to text2&lt;/EM&gt;14.&lt;/P&gt;&lt;P&gt;write: / text2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Allan Cristian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 17:11:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-two-spaces-between-numbers/m-p/2958003#M697780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T17:11:19Z</dc:date>
    </item>
    <item>
      <title>Re: Need two spaces between numbers</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/need-two-spaces-between-numbers/m-p/2958004#M697781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;replace '20' with '2  0' int &amp;lt;field&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 17:14:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/need-two-spaces-between-numbers/m-p/2958004#M697781</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-10-17T17:14:12Z</dc:date>
    </item>
  </channel>
</rss>

