<?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: WRITE issue with a N type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010710#M958208</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Can U check if in ur write stmnt:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / 'V8: ', v8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is a gap between ': and the '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward, if it works,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Raghu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jun 2008 08:27:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-24T08:27:25Z</dc:date>
    <item>
      <title>WRITE issue with a N type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010709#M958207</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, follows the scenario I'm using for the following question (I'm using ABAP/6):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA v8(7) TYPE N value '1234567'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WRITE: / 'V8: ', v8.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;--&amp;gt; there's a space after V8:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The output shows V8:  1234567 - with TWO spaces after V8:.&lt;/P&gt;&lt;P&gt;If, however, I use &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WRITE: / 'V8: ' NO-GAP, v8&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;, the output shows the expected result: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;V8: 1234567&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; instead of&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;V8:  1234567&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is, thus: why does the sole WRITE command displays this 2nd space in the output ? It may have something to do with the N type, perhaps, but I declared a 7-long N field and I filled it all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Avraham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:24:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010709#M958207</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:24:38Z</dc:date>
    </item>
    <item>
      <title>Re: WRITE issue with a N type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010710#M958208</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Can U check if in ur write stmnt:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / 'V8: ', v8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is a gap between ': and the '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward, if it works,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Raghu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:27:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010710#M958208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:27:25Z</dc:date>
    </item>
    <item>
      <title>Re: WRITE issue with a N type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010711#M958209</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;do this way ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make use of concatenate statement ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: v_final(10).

concatenate 'V8: ' v8 into v_final.

WRITE: / v_final.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:27:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010711#M958209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: WRITE issue with a N type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010712#M958210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use this..&lt;/P&gt;&lt;P&gt;why are you giving space next to &lt;STRONG&gt;'V8:  '&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WRITE: / 'V8:', v8.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:28:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010712#M958210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:28:20Z</dc:date>
    </item>
    <item>
      <title>Re: WRITE issue with a N type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010713#M958211</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;PRE&gt;&lt;CODE&gt;DATA v8(7) TYPE N value '1234567'.
WRITE: / 'V8:' no-gap , v8.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;remove the space after 'v8:' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Adil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:31:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010713#M958211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:31:00Z</dc:date>
    </item>
    <item>
      <title>Re: WRITE issue with a N type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010714#M958212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiii&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gap will be display because you have put gap between V8: &amp;amp;  '...&lt;/P&gt;&lt;P&gt;so change it like below.No-gap will delete space but after ',   only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / 'V8:', v8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;thx&lt;/P&gt;&lt;P&gt;twinkal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:31:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010714#M958212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:31:07Z</dc:date>
    </item>
    <item>
      <title>Re: WRITE issue with a N type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010715#M958213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Avraham,&lt;/P&gt;&lt;P&gt;                Just do the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write:/ ' V8: ', 3 V8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here 3 is the number of spaces you want. It can be any number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps you.&lt;/P&gt;&lt;P&gt;Any queries, please get back to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:34:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010715#M958213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:34:01Z</dc:date>
    </item>
    <item>
      <title>Re: WRITE issue with a N type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010716#M958214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I may not have made myself clear, I know how to solve the problem, all I wanted was an answer for why does this happen. Where does the 2nd space come from.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Avraham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:35:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010716#M958214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:35:44Z</dc:date>
    </item>
    <item>
      <title>Re: WRITE issue with a N type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010717#M958215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When U write two variables .. they'll be separated by space..&lt;/P&gt;&lt;P&gt;In your case UR writing  ( 'V8: ', v8 ) ..&lt;/P&gt;&lt;P&gt;One space is of 'V8: ' .. the other will be like a separator ..&lt;/P&gt;&lt;P&gt;Instead write .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write :/3 'V8: ',&lt;/P&gt;&lt;P&gt;          7 v8.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 08:38:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-issue-with-a-n-type/m-p/4010717#M958215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T08:38:45Z</dc:date>
    </item>
  </channel>
</rss>

