<?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: maintain space in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332232#M1228629</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 hope it will take only 1 char space even if we put more space in between abc &amp;amp; def. I remembered that there is no solution for this because even if we put space, it automatically deleted. You can use symbol instead of space when you pass the data and remove while displaying. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;~Satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Mar 2009 16:37:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-03-02T16:37:03Z</dc:date>
    <item>
      <title>maintain space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332230#M1228627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frn's ,&lt;/P&gt;&lt;P&gt;   how can i mantain space in a string type varaible ....&lt;/P&gt;&lt;P&gt; senario  is like .....&lt;/P&gt;&lt;P&gt; 1) abc .&lt;/P&gt;&lt;P&gt; 2) 10 spaces .&lt;/P&gt;&lt;P&gt;3) def .&lt;/P&gt;&lt;P&gt;now i want to put "abc"   than 10 spaces   and than  "def "    in a variable of type string .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and Regards ..&lt;/P&gt;&lt;P&gt;Priyank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 16:29:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332230#M1228627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T16:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: maintain space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332231#M1228628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this, using a placeholder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: v_field1 type string.
data: v_field2 type string.
data: v_result type string.

v_field1 = 'ABC'.
v_field2 = 'DEF'.

CONCATENATE v_field1  '%%%%%%%%%%' v_field2 into v_result.
TRANSLATE v_result using '% '.
write:/ v_result.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 16:33:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332231#M1228628</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2009-03-02T16:33:31Z</dc:date>
    </item>
    <item>
      <title>Re: maintain space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332232#M1228629</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 hope it will take only 1 char space even if we put more space in between abc &amp;amp; def. I remembered that there is no solution for this because even if we put space, it automatically deleted. You can use symbol instead of space when you pass the data and remove while displaying. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;~Satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 16:37:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332232#M1228629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T16:37:03Z</dc:date>
    </item>
    <item>
      <title>Re: maintain space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332233#M1228630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;use with single-quote (') ,here u can write a string with spaces in between.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jaya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 16:38:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332233#M1228630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T16:38:36Z</dc:date>
    </item>
    <item>
      <title>Re: maintain space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332234#M1228631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this way also&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
report  zars no standard page heading
        line-size 170
        line-count 65(4).
data: v_field1 type string.
data: v_field2 type string.
data: v_field3(10) type c value space.
data: v_result type string.

v_field1 = 'ABC'.
v_field2 = 'DEF'.

CONCATENATE v_field1 v_field3 v_field2 into v_result respecting blanks.

write : v_result.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 16:41:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332234#M1228631</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-03-02T16:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: maintain space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332235#M1228632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks you Soooo much Rich .....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 16:45:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332235#M1228632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-02T16:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: maintain space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332236#M1228633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rich I have question please&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CONCATENATE v_field1  '%%%%%%%%%%' v_field2 into v_result.&lt;/P&gt;&lt;P&gt; TRANSLATE v_result using '% '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if v_field1 or v_field2 contains the value of % then ?&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Mar 2009 16:48:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332236#M1228633</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-03-02T16:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: maintain space</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332237#M1228634</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;/BLOCKQUOTE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Rich I have question please&lt;/P&gt;&lt;P&gt;&amp;gt; if v_field1 or v_field2 contains the value of % then ?&lt;/P&gt;&lt;P&gt;&amp;gt; a®s&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As OP said the values of first variable would be "ABC" and third variable 'DEF',it means those values would be constant forever. So there is no reason if these values contains %.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Okay I agree if these values contains % than you may use &amp;amp; as place holder &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Mar 2009 08:17:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintain-space/m-p/5332237#M1228634</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-06T08:17:04Z</dc:date>
    </item>
  </channel>
</rss>

