<?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: sap scripts table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-table/m-p/2919694#M687487</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use &amp;amp;vline&amp;amp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To draw a vertical line draw a box with height 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BOX POSITION '1' HEIGHT '0'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="424917"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Oct 2007 06:59:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-17T06:59:52Z</dc:date>
    <item>
      <title>sap scripts table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-table/m-p/2919691#M687484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , i have one doubt in sap scripts. How to create a table and vertical lines and box into SAP script?&lt;/P&gt;&lt;P&gt;pls also tell me the desired path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Anuj jain&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 06:54:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-table/m-p/2919691#M687484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T06:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: sap scripts table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-table/m-p/2919692#M687485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use BOX Command for this requirement....&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt; /: POSITION XORIGIN '-.2' CM YORIGIN '-.2' CM&lt;/P&gt;&lt;P&gt;/: SIZE WIDTH '&lt;EM&gt;.2' CM HEIGHT '&lt;/EM&gt;.2' CM&lt;/P&gt;&lt;P&gt;/: BOX FRAME 10 TW&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;draw the box at desired location and in desired format....&lt;/P&gt;&lt;P&gt;then in the main window.... print the table contents in this box...&lt;/P&gt;&lt;P&gt;you need to take care of the spacing and the exact location of the BOX and table contents....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 06:58:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-table/m-p/2919692#M687485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T06:58:55Z</dc:date>
    </item>
    <item>
      <title>Re: sap scripts table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-table/m-p/2919693#M687486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;You can use the POSITION and SIZE commands to set default parmeters for a box. &lt;/P&gt;&lt;P&gt;Instead of:  &lt;/P&gt;&lt;P&gt;/: BOX XPOS '11.21' MM  YPOS '5.31' MM  HEIGHT '10' MM WIDTH '20' MM INTENSITY 10 FRAME 0 TW &lt;/P&gt;&lt;P&gt;You can write: &lt;/P&gt;&lt;P&gt;/: POSITION XORIGIN '11.21' YORIGIN '5.31' MM &lt;/P&gt;&lt;P&gt;/: SIZE HEIGHT '2' MM WIDTH '76' MM &lt;/P&gt;&lt;P&gt;/: BOX  FRAME 10 TW INTENSITY 10 &lt;/P&gt;&lt;P&gt;This can be usefull if you gave several boxes that share the same parameters. &lt;/P&gt;&lt;P&gt;If you want to set the position realtively to the window use POSITION WINDOW &lt;/P&gt;&lt;P&gt;to set the position to the top/left start of the window. Then use POSITION  &lt;/P&gt;&lt;P&gt;to set the current position relatively to the start of the Window.  &lt;/P&gt;&lt;P&gt;Note that you uses "+" or "-" in the ORIGIN position to the set the position relatively. &lt;/P&gt;&lt;P&gt;/: POSITION WINDOW &lt;/P&gt;&lt;P&gt;/: POSITION XORIGIN '&lt;EM&gt;5' MM  YORIGIN '&lt;/EM&gt;10' MM &lt;/P&gt;&lt;P&gt;the position is now 5 MM from the left and 10 MM from the top of the window &lt;/P&gt;&lt;P&gt;NOTE: After using the position command you can move the current position &lt;/P&gt;&lt;P&gt;realtively to the last used position &lt;/P&gt;&lt;P&gt;/: POSITION XORIGIN '&lt;EM&gt;10' MM  YORIGIN '&lt;/EM&gt;20' MM &lt;/P&gt;&lt;P&gt;Now the position will be X = 15 and Y = 30 &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Drawing a line. You can draw a line by setting the Height or Weidth to 0 &lt;/P&gt;&lt;P&gt;and add a frane. E.g. a horizontal line: &lt;/P&gt;&lt;P&gt;/: SIZE HEIGHT '0' MM WIDTH '200' MM &lt;/P&gt;&lt;P&gt;/: BOX FRAME 10 TW XPOS '11.21' MM YPOS '14.81' MM INTENSITY 100 &lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;reward if u find useful&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nagesh.Paruchuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 06:59:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-table/m-p/2919693#M687486</guid>
      <dc:creator>paruchuri_nagesh</dc:creator>
      <dc:date>2007-10-17T06:59:21Z</dc:date>
    </item>
    <item>
      <title>Re: sap scripts table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-table/m-p/2919694#M687487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use &amp;amp;vline&amp;amp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To draw a vertical line draw a box with height 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BOX POSITION '1' HEIGHT '0'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="424917"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Oct 2007 06:59:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-table/m-p/2919694#M687487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-17T06:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: sap scripts table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-table/m-p/2919695#M687488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2008 11:57:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sap-scripts-table/m-p/2919695#M687488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-06T11:57:21Z</dc:date>
    </item>
  </channel>
</rss>

