<?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: ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3114555#M739543</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:wf1,&lt;/P&gt;&lt;P&gt;       wf2,&lt;/P&gt;&lt;P&gt;       wf3(20).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : wf_4(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wf1 = 'A'.&lt;/P&gt;&lt;P&gt;wf2 = 'B'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate wf1 wf2 into wf3 separated by wf_4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have declared the variable wf_4 with length of 10 spaces. Check if this works.&lt;/P&gt;&lt;P&gt;It works in Normal list output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 21 Nov 2007 19:10:23 GMT</pubDate>
    <dc:creator>former_member195698</dc:creator>
    <dc:date>2007-11-21T19:10:23Z</dc:date>
    <item>
      <title>ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3114553#M739541</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;Go through the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write sy-uname into lw_user.&lt;/P&gt;&lt;P&gt;write sy-datum into lw_date.&lt;/P&gt;&lt;P&gt;write sy-pagno into lw_pagno.&lt;/P&gt;&lt;P&gt;append gw_top_of_page into gt_top_of_page.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate lw_user lw_date lw_pagno into lw_heading seperated by space.&lt;/P&gt;&lt;P&gt;write lw_heading and the other stats.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When I use the above statements in top of page in ALV the display in the header part is as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;user:satya date:21-11-2007 pageno:1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I want to increase the gap between each field as mentioned below what is to be done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;user:satya       date:21-11-2007         pageno:1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;simply i need to display with spaces in between.&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>Wed, 21 Nov 2007 19:01:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3114553#M739541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-21T19:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3114554#M739542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare lw_use, lw_date &amp;amp; lw_pageno with more length.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONSTANTS: GC_SPACE(5) type c value '     '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate lw_user lw_date lw_pagno into lw_heading seperated by gc_space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if this helps,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Nov 2007 19:09:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3114554#M739542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-21T19:09:34Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3114555#M739543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try this method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:wf1,&lt;/P&gt;&lt;P&gt;       wf2,&lt;/P&gt;&lt;P&gt;       wf3(20).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : wf_4(10) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wf1 = 'A'.&lt;/P&gt;&lt;P&gt;wf2 = 'B'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;concatenate wf1 wf2 into wf3 separated by wf_4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have declared the variable wf_4 with length of 10 spaces. Check if this works.&lt;/P&gt;&lt;P&gt;It works in Normal list output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Points if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Nov 2007 19:10:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap/m-p/3114555#M739543</guid>
      <dc:creator>former_member195698</dc:creator>
      <dc:date>2007-11-21T19:10:23Z</dc:date>
    </item>
  </channel>
</rss>

