<?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: tables in sapscript in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-in-sapscript/m-p/1867588#M365571</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I hope ur query 1 is solved .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//I have created separate element for the column headings.Now,the space between the column headers remain constant even if the spacing between the contents are varrying.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;column headings are Fixed length and it will remain constant .&lt;/P&gt;&lt;P&gt;where as ur field contents may vary &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remember that i have only  finite space ( equal to that of the column header ) to display the data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the field data is more than you need to set the column heading in proportion to the column heading .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex.&lt;/P&gt;&lt;P&gt;material description is 35 char &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;Material Description                                    Plant                    "&amp;lt;-- heading&lt;/P&gt;&lt;P&gt;XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX    2222                    "&amp;lt;--field val&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i can only fit that size of 35 for material description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The texts will not vary .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 19 Jan 2007 08:42:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-19T08:42:48Z</dc:date>
    <item>
      <title>tables in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-in-sapscript/m-p/1867584#M365567</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 have two queries on 'tables in sapscript'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1&amp;gt; For some longer records,the extended part of the last field is coming down below the first field..like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field1         field2            field3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AAA          BBBB         CCCCCCCC&lt;/P&gt;&lt;P&gt;CC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to prevent this ? &lt;/P&gt;&lt;P&gt;If the length of field3 data is more,i want it to come in second line of field 3 itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2&amp;gt;I have created separate element for the column headings.Now,the space between the column headers remain constant even if the spacing between the contents are varrying.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field1           field2           field3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AAAAAAAAAA   BBBBBB   CCCCCCC...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to make the distances between the column headers same as the contents ?&lt;/P&gt;&lt;P&gt;Please help.Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ananya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 07:51:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-in-sapscript/m-p/1867584#M365567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T07:51:54Z</dc:date>
    </item>
    <item>
      <title>Re: tables in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-in-sapscript/m-p/1867585#M365568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use string operations like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;itab-f1+0(8)&amp;amp;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to make it appear inthe second line just add the code as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if &amp;amp;itab-f1+8(8)&amp;amp;  ne ' ' 
/ : &amp;amp;itab-f1+9(6)&amp;amp;       
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;this way and make the string to fit to the space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. make use of hte TAB delimiters in the window to maintian fixed dimensions in the paragraph format.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 07:56:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-in-sapscript/m-p/1867585#M365568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T07:56:06Z</dc:date>
    </item>
    <item>
      <title>Re: tables in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-in-sapscript/m-p/1867586#M365569</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 have already created TAB delimited paragraph format and have specified the same format for both the header and the table contents.Still,for longer entries the field contents are not aligned with the headers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards&lt;/P&gt;&lt;P&gt;Ananya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 08:18:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-in-sapscript/m-p/1867586#M365569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T08:18:41Z</dc:date>
    </item>
    <item>
      <title>Re: tables in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-in-sapscript/m-p/1867587#M365570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ananya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For problem 2 try giving same field lengths of header &amp;amp; contents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashven&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 08:38:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-in-sapscript/m-p/1867587#M365570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T08:38:56Z</dc:date>
    </item>
    <item>
      <title>Re: tables in sapscript</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tables-in-sapscript/m-p/1867588#M365571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I hope ur query 1 is solved .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;//I have created separate element for the column headings.Now,the space between the column headers remain constant even if the spacing between the contents are varrying.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;column headings are Fixed length and it will remain constant .&lt;/P&gt;&lt;P&gt;where as ur field contents may vary &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remember that i have only  finite space ( equal to that of the column header ) to display the data .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the field data is more than you need to set the column heading in proportion to the column heading .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex.&lt;/P&gt;&lt;P&gt;material description is 35 char &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;P&gt;Material Description                                    Plant                    "&amp;lt;-- heading&lt;/P&gt;&lt;P&gt;XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX    2222                    "&amp;lt;--field val&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i can only fit that size of 35 for material description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The texts will not vary .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;vijay.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Jan 2007 08:42:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tables-in-sapscript/m-p/1867588#M365571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-19T08:42:48Z</dc:date>
    </item>
  </channel>
</rss>

