<?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: How to align sap script..? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060291#M91714</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kaki,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rich is right. You need to define your Paragraph Formats properly. From SE71, go to the Paragraph Formats. There should be a button toward the bottom right of the screen called "Tabs". Here is where you define your tab settings (ie your 'columns').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Within your SAPscript editor use your Paragraph Format, and to use a 'tab', you need to enter ',,'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paragraph Format is Z1 with tabs at 10CH, 20CH and 30CH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Z1 &amp;amp;MARA-MATNR&amp;amp;,,&amp;amp;MARA-MTART&amp;amp;,,&amp;amp;MARA-BISMT&amp;amp;,,&amp;amp;MARA-MAKTX&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the same as saying:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
WRITE:/ MARA-MATNR.
WRITE:  AT 10 MARA-MTART,
        AT 20 MARA-BISMT,
        AT 30 MARA-MAKTX.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Oct 2005 22:35:01 GMT</pubDate>
    <dc:creator>former_member221770</dc:creator>
    <dc:date>2005-10-20T22:35:01Z</dc:date>
    <item>
      <title>How to align sap script..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060287#M91710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts...&lt;/P&gt;&lt;P&gt;While iam trying to modify VF03(Invoice)sap script iam getting problem.If i open one billing document it is showing corrently...if i open another, the alignment is getting distrubed, because of some discriptions are having more length.Where to fix this problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have adjusted in the main windiow but no use.Do i need to change in Internal table(if any)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2005 13:42:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060287#M91710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-20T13:42:39Z</dc:date>
    </item>
    <item>
      <title>Re: How to align sap script..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060288#M91711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You will need to change the tab setting of the paragraph format.  Move the tab to the right of the description a little further right.&lt;/P&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>Thu, 20 Oct 2005 13:44:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060288#M91711</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-10-20T13:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to align sap script..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060289#M91712</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;You can use the tab which can be defined in the paragraph. For example 10CH, 15CH, 22CH etc&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or check what can be the maximum available length for that field to display in the SAPScript and then use the offset option get rid of mis allignment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g. &amp;amp;MAKT-MAKTX+0(20)&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2005 13:46:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060289#M91712</guid>
      <dc:creator>Vinod_Chandran</dc:creator>
      <dc:date>2005-10-20T13:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to align sap script..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060290#M91713</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;  if u r having a problem in printing a currency field or quantity field, try using Condense option for &lt;/P&gt;&lt;P&gt;eg: &amp;amp;v_netpr(C)&amp;amp;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vamshi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2005 17:01:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060290#M91713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-20T17:01:36Z</dc:date>
    </item>
    <item>
      <title>Re: How to align sap script..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060291#M91714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kaki,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rich is right. You need to define your Paragraph Formats properly. From SE71, go to the Paragraph Formats. There should be a button toward the bottom right of the screen called "Tabs". Here is where you define your tab settings (ie your 'columns').&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Within your SAPscript editor use your Paragraph Format, and to use a 'tab', you need to enter ',,'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Paragraph Format is Z1 with tabs at 10CH, 20CH and 30CH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Z1 &amp;amp;MARA-MATNR&amp;amp;,,&amp;amp;MARA-MTART&amp;amp;,,&amp;amp;MARA-BISMT&amp;amp;,,&amp;amp;MARA-MAKTX&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the same as saying:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
WRITE:/ MARA-MATNR.
WRITE:  AT 10 MARA-MTART,
        AT 20 MARA-BISMT,
        AT 30 MARA-MAKTX.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2005 22:35:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060291#M91714</guid>
      <dc:creator>former_member221770</dc:creator>
      <dc:date>2005-10-20T22:35:01Z</dc:date>
    </item>
    <item>
      <title>Re: How to align sap script..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060292#M91715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Patrick, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  In our SAP system, your sets not use. We use Unicode system, and logon with ZF - Chinese Traditional. &lt;/P&gt;&lt;P&gt;  In PO item's short text I entry some chinese chars, others entry some english chars, but in the form can't align.&lt;/P&gt;&lt;P&gt;  For example, the short text from first position, and end the 80 position, behind it is the delivery date, the date from 89 position.&lt;/P&gt;&lt;P&gt;  in the paragraph formats, I set:&lt;/P&gt;&lt;P&gt;  Paragraph format Z1, the tab at 89CH and left. in the editor is&lt;/P&gt;&lt;P&gt;  Z1  &amp;amp;wa_ekpo-txz01(80)&amp;amp;,,&amp;amp;wa_ekpo-eindt&amp;amp;&lt;/P&gt;&lt;P&gt;but list as follow:&lt;/P&gt;&lt;P&gt;Short Text                            Delivery&lt;/P&gt;&lt;P&gt;Éú®aÉú®a                          2005/08/12&lt;/P&gt;&lt;P&gt;0.8mmë&amp;#138;½âÆ¬                   2005/10/31&lt;/P&gt;&lt;P&gt;6182 ë&amp;#138;Æ÷ßBµ××ù³ÉÆ·ßBÒÑÑb             2005/11/21&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2005 01:43:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060292#M91715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-21T01:43:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to align sap script..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060293#M91716</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Mingkang,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunately I do not have any experience working in non English systems. It sounds like your problem could be due to Chinese Traditional language is a 2 byte language. Not sure how to handle this. But I'm sure there is someone on SDN who has encountered this issue before.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would recommend you start a new thread asking specifically about aligning 'ZF' language SApscripts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sorry I can't help you any further on this issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2005 02:03:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060293#M91716</guid>
      <dc:creator>former_member221770</dc:creator>
      <dc:date>2005-10-21T02:03:40Z</dc:date>
    </item>
    <item>
      <title>Re: How to align sap script..?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060294#M91717</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank u all for helpful answers...&lt;/P&gt;&lt;P&gt;Kaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2005 03:47:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-align-sap-script/m-p/1060294#M91717</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-21T03:47:35Z</dc:date>
    </item>
  </channel>
</rss>

