<?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: seletion screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/seletion-screen/m-p/1238854#M141557</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had changed the text size to text(100) and then only changed the data to text+70...but after changing also i am not able to display.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Mar 2006 07:25:55 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-21T07:25:55Z</dc:date>
    <item>
      <title>seletion screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/seletion-screen/m-p/1238852#M141555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the alvlist i included a header,&lt;/P&gt;&lt;P&gt;by using this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM BUILD_COMMENT USING P_HEADING TYPE SLIS_T_LISTHEADER.&lt;/P&gt;&lt;P&gt;  DATA: HLINE TYPE SLIS_LISTHEADER,&lt;/P&gt;&lt;P&gt;        TEXT(60) TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: HLINE, TEXT.&lt;/P&gt;&lt;P&gt;  HLINE-TYP  = 'H'.&lt;/P&gt;&lt;P&gt;  WRITE: TEXT-101 TO TEXT+3.&lt;/P&gt;&lt;P&gt;  HLINE-INFO = TEXT.&lt;/P&gt;&lt;P&gt;  APPEND HLINE TO P_HEADING.&lt;/P&gt;&lt;P&gt;  CLEAR TEXT.&lt;/P&gt;&lt;P&gt;  WRITE: 'User: ' TO TEXT,&lt;/P&gt;&lt;P&gt;         SY-UNAME TO TEXT+6,&lt;/P&gt;&lt;P&gt;         'Date: ' TO TEXT+35,&lt;/P&gt;&lt;P&gt;         SY-DATUM TO TEXT+40,&lt;/P&gt;&lt;P&gt;        'Page: ' TO TEXT+52,&lt;/P&gt;&lt;P&gt;         SY-PAGNO TO TEXT+56.&lt;/P&gt;&lt;P&gt;  HLINE-INFO = TEXT.&lt;/P&gt;&lt;P&gt;  APPEND HLINE TO P_HEADING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " BUILD_COMMENT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i change the text size to someother for ex text(100),and give text+70 means the text is not displayed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 06:58:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/seletion-screen/m-p/1238852#M141555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T06:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: seletion screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/seletion-screen/m-p/1238853#M141556</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The structure SLIS_T_LISTHEADER has the field INFO of length only 60. That is the reason why it is not printing the extra characters after 60.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 07:23:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/seletion-screen/m-p/1238853#M141556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T07:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: seletion screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/seletion-screen/m-p/1238854#M141557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I had changed the text size to text(100) and then only changed the data to text+70...but after changing also i am not able to display.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 07:25:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/seletion-screen/m-p/1238854#M141557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T07:25:55Z</dc:date>
    </item>
    <item>
      <title>Re: seletion screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/seletion-screen/m-p/1238855#M141558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even though you have increased the length of TEXT, the target field slis*-INFO can't accept more than 60 chars. &lt;/P&gt;&lt;P&gt;As the final text u r working with is in INFO and not in TEXT, only 60 chars appear.&lt;/P&gt;&lt;P&gt;If you put a break point and check out at this point.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 07:30:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/seletion-screen/m-p/1238855#M141558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T07:30:40Z</dc:date>
    </item>
    <item>
      <title>Re: seletion screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/seletion-screen/m-p/1238856#M141559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;where there is any way to change or any other method is there for moving the text to the top right of the page.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Mar 2006 07:32:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/seletion-screen/m-p/1238856#M141559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-21T07:32:32Z</dc:date>
    </item>
  </channel>
</rss>

