<?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: List Display alignment in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206899#M472231</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Jun 2007 16:34:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-19T16:34:31Z</dc:date>
    <item>
      <title>List Display alignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206893#M472225</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am writing a list report which is using a normal WRITE statement in Japanese language (Program Original Language = JA). However, I have the alignment problem as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Customer No  |  Customer Name                | Accounting Document No |&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------------------------------------------------" /&gt;&lt;P&gt;0000000001   |  Customer ABC                  | 100000001                       |&lt;/P&gt;&lt;P&gt;0000000002   |  Customer BAE                     | 100000012                       |&lt;/P&gt;&lt;P&gt;0000000003   |  Customer C                    | 100000301                       |&lt;/P&gt;&lt;P&gt;0000000003   |  Customer D                    | 100000402                       |&lt;/P&gt;&lt;P&gt;0000000003   |  Customer EEF                     | 100000801                       |&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notice that based on the above list display that I have, Customer C and D having disorder sy-vline position, though i have placed sy-vline with constant position and using AT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did someone come across this and appreciate if anyone can give me some guideline to solve the above alignment problem. Reward points is guaranteed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 01:41:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206893#M472225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T01:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: List Display alignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206894#M472226</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;Did you use the output length option??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: /(11) 'Customer No',SY-VLINE,&lt;/P&gt;&lt;P&gt;        (30) 'Customer Name',SY-VLINE,&lt;/P&gt;&lt;P&gt;        (22) 'Accounting Document No',SY-VLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / SY-ULINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: V_KUNNR TYPE KUNNR VALUE '0000000003'.&lt;/P&gt;&lt;P&gt;DATA: V_NAME  TYPE KNA1-NAME1 VALUE 'Customer C'.&lt;/P&gt;&lt;P&gt;DATA: V_BELNR TYPE BKPF-BELNR VALUE '100000301'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: /(11) V_KUNNR,SY-VLINE,&lt;/P&gt;&lt;P&gt;        (30) V_NAME,SY-VLINE,&lt;/P&gt;&lt;P&gt;        (22) V_BELNR,SY-VLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;V_KUNNR = '0000000002'.&lt;/P&gt;&lt;P&gt;V_NAME  = 'Customer BAE '.&lt;/P&gt;&lt;P&gt;V_BELNR = '100000012'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: /(11) V_KUNNR,SY-VLINE,&lt;/P&gt;&lt;P&gt;        (30) V_NAME,SY-VLINE,&lt;/P&gt;&lt;P&gt;        (22) V_BELNR,SY-VLINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: / SY-ULINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 01:59:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206894#M472226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T01:59:47Z</dc:date>
    </item>
    <item>
      <title>Re: List Display alignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206895#M472227</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naren,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes. I am using output length option as below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;Header:&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; WRITE: / sy-vline, AT 2(10) 'Cust No'(c04),
           sy-vline, AT 14(35) 'Customer Name'(c05),
           sy-vline, AT 51(10) 'Acct Doc No'(c06).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;Body:&amp;lt;/u&amp;gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Loop at i_final into w_final.
 WRITE: / sy-vline, AT 2(10) w_final-kunnr,
             sy-vline, AT 14(35) w_final-name1,
             sy-vline, AT 51(10) w_final-belnr.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does output length option bring any affect?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly advise.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 02:05:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206895#M472227</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T02:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: List Display alignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206896#M472228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naren,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, the List output display was OK, just when printing out the report, the alignment of sy-vline seems in disorder position.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 02:11:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206896#M472228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T02:11:28Z</dc:date>
    </item>
    <item>
      <title>Re: List Display alignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206897#M472229</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;Not sure..why the format is not correct in the print output..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I printed the sample code I provided..It seems to be fine..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Apr 2007 02:18:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206897#M472229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-23T02:18:27Z</dc:date>
    </item>
    <item>
      <title>Re: List Display alignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206898#M472230</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 found the root cause, because there are multi-unicode (EN and JA), thus, when you need the program to print the list report, you have to justify that JA taking 2-bit and EN taking 1-bit. When using the WRITE syntax, make sure to determine the column to be printed is EN or JA using sy-langu, then adjust accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and regards,&lt;/P&gt;&lt;P&gt;Patrick&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 16:33:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206898#M472230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T16:33:45Z</dc:date>
    </item>
    <item>
      <title>Re: List Display alignment</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206899#M472231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Jun 2007 16:34:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/list-display-alignment/m-p/2206899#M472231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-19T16:34:31Z</dc:date>
    </item>
  </channel>
</rss>

