<?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: Remove space in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-space/m-p/2985185#M704920</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 to use SPLIT command to split the string at SPACE ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT str at ' ' INTO str1 str2.&lt;/P&gt;&lt;P&gt;CONCATENATE STR1 STR2 INTO STR3.&lt;/P&gt;&lt;P&gt;STR1 = STR3.&lt;/P&gt;&lt;P&gt;And then concatenate the strings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Oct 2007 13:53:43 GMT</pubDate>
    <dc:creator>seshatalpasai_madala</dc:creator>
    <dc:date>2007-10-26T13:53:43Z</dc:date>
    <item>
      <title>Remove space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-space/m-p/2985183#M704918</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;&lt;/P&gt;&lt;P&gt;I am using following variables &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA: a TYPE I.&lt;/P&gt;&lt;P&gt; DATA: b TYPE p DECIMALS 3.&lt;/P&gt;&lt;P&gt; DATA: c TYPE p DECIMALS 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And getting the output in the following way in the zebra printer. MM,CM,KG are fixed in zebra template.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;400(result of &amp;#145;a&amp;#146; field)                                             MM&lt;/P&gt;&lt;P&gt;100.000(result of &amp;#145;b&amp;#146; field)                                         CM&lt;/P&gt;&lt;P&gt;1.234(result of &amp;#145;c&amp;#146; field)                                           KG&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I need to delete the space between result and mm and I want to display in the following way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;400mm&lt;/P&gt;&lt;P&gt;100.000cm&lt;/P&gt;&lt;P&gt;1.234kg &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Am not able to use shift command because all the variables are not character fields. Please tell me the best logic for this. I will give points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 13:50:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-space/m-p/2985183#M704918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T13:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: Remove space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-space/m-p/2985184#M704919</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;use condense keyword.&lt;/P&gt;&lt;P&gt;CONDENSE &amp;lt;field&amp;gt; NO-GAPS. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;example:&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;DATA:abc(20) value 'wel come'.&lt;/P&gt;&lt;P&gt;CONDENSE abc NO-GAPS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ abc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 13:53:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-space/m-p/2985184#M704919</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T13:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: Remove space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-space/m-p/2985185#M704920</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 to use SPLIT command to split the string at SPACE ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPLIT str at ' ' INTO str1 str2.&lt;/P&gt;&lt;P&gt;CONCATENATE STR1 STR2 INTO STR3.&lt;/P&gt;&lt;P&gt;STR1 = STR3.&lt;/P&gt;&lt;P&gt;And then concatenate the strings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 13:53:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-space/m-p/2985185#M704920</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2007-10-26T13:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: Remove space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-space/m-p/2985186#M704921</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use no-gap extension while writing....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 13:54:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-space/m-p/2985186#M704921</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T13:54:01Z</dc:date>
    </item>
    <item>
      <title>Re: Remove space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/remove-space/m-p/2985187#M704922</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Move the field content to a char type temp varaible .. remove the space using SHIFT or CONDENSE.. move it back to the original field..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 13:55:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/remove-space/m-p/2985187#M704922</guid>
      <dc:creator>suresh_datti</dc:creator>
      <dc:date>2007-10-26T13:55:12Z</dc:date>
    </item>
  </channel>
</rss>

