<?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 Write statement. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-statement/m-p/4702881#M1105055</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;What is the difference between &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Write /'Hello'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Write : / , 'hello'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why is the second statement leaving a line gap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ is used to leave a line gap. &lt;/P&gt;&lt;P&gt;I am confused because &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write : 'hello'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;prints on the same line. But having a slash in front leaves a line gap instead of going to next line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Bala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 29 Oct 2008 07:15:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-29T07:15:25Z</dc:date>
    <item>
      <title>Write statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-statement/m-p/4702881#M1105055</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;What is the difference between &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Write /'Hello'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Write : / , 'hello'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why is the second statement leaving a line gap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;/ is used to leave a line gap. &lt;/P&gt;&lt;P&gt;I am confused because &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write : 'hello'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;prints on the same line. But having a slash in front leaves a line gap instead of going to next line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Bala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2008 07:15:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-statement/m-p/4702881#M1105055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-29T07:15:25Z</dc:date>
    </item>
    <item>
      <title>Re: Write statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-statement/m-p/4702882#M1105056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In ABAP &lt;STRONG&gt;'/'&lt;/STRONG&gt; represent breaking a line and write the entries in the next line.&lt;/P&gt;&lt;P&gt;/ break the line or terminates the current processing line and starts with the next line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;see for example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables: makt.&lt;/P&gt;&lt;P&gt;Data itab like makt occurs 0 with header line.&lt;/P&gt;&lt;P&gt;select * from makt into table itab.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;Translate itab to LOWER CASE.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;write:/&lt;/STRONG&gt; itab-MAKTX.&lt;/P&gt;&lt;P&gt;endloop.  &lt;STRONG&gt;Here all the entries will be line by line&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables: makt.&lt;/P&gt;&lt;P&gt;Data itab like makt occurs 0 with header line.&lt;/P&gt;&lt;P&gt;select * from makt into table itab.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;Translate itab to LOWER CASE.&lt;/P&gt;&lt;P&gt;write itab-MAKTX. "&lt;STRONG&gt;Here records will be continuous&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;endloop.&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;VEnk@&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Venkat Reddy on Oct 29, 2008 12:51 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2008 07:21:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-statement/m-p/4702882#M1105056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-29T07:21:16Z</dc:date>
    </item>
    <item>
      <title>Re: Write statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-statement/m-p/4702883#M1105057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;+Missing first item&lt;/U&gt;+&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are not specify the position for first item it will take the whole line length and from the next line it will print all other itmes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example --&amp;gt; 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;write &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; , &lt;/P&gt;&lt;P&gt;          'hello',&lt;/P&gt;&lt;P&gt;          'ABAP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example --&amp;gt; 2.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;write :  / ,&lt;/P&gt;&lt;P&gt;         10 'hello',&lt;/P&gt;&lt;P&gt;         30 'ABAP'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you specify the position for the first item it will start with first line and specified position&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example --&amp;gt; 1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;write :  /2 'first' ,&lt;/P&gt;&lt;P&gt;            'hello'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Example --&amp;gt; 2.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;write :  /2 'first' ,&lt;/P&gt;&lt;P&gt;         10 'hello'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;EM&gt;&lt;STRONG&gt;Florian&lt;/STRONG&gt;&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2008 07:46:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-statement/m-p/4702883#M1105057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-29T07:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Write statement.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-statement/m-p/4702884#M1105058</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;write: / means SKIP 1 line. that means after leaving one line the data will be printed....&lt;/P&gt;&lt;P&gt;so &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Write : / , 'hello'. is equivalent to...
write: /.
write: 'hello'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but Write /'Hello'. means only "go to new line and print the data...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Arunima&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 29 Oct 2008 08:02:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-statement/m-p/4702884#M1105058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-29T08:02:13Z</dc:date>
    </item>
  </channel>
</rss>

