<?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 Selection screen with long text in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-long-text/m-p/3561628#M857012</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to display the long text for the selection text as its a long text so selection-text will not work .Thext is  &lt;STRONG&gt;'Work breakdown structure element'&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However there is way to display as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_posid for prps-posid .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 1(30) TEXT-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it's giving error message 'Error when generating the selection screen "1000" of report'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice on this&lt;/P&gt;&lt;P&gt;&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;PK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 18 Mar 2008 05:48:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-18T05:48:50Z</dc:date>
    <item>
      <title>Selection screen with long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-long-text/m-p/3561628#M857012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to display the long text for the selection text as its a long text so selection-text will not work .Thext is  &lt;STRONG&gt;'Work breakdown structure element'&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;However there is way to display as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_posid for prps-posid .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 1(30) TEXT-001.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But it's giving error message 'Error when generating the selection screen "1000" of report'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice on this&lt;/P&gt;&lt;P&gt;&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;PK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 05:48:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-long-text/m-p/3561628#M857012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T05:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen with long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-long-text/m-p/3561629#M857013</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do this way ...&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECTION-SCREEN BEGIN OF LINE.
SELECT-OPTIONS: s_posid for prps-posid .
selection-screen position 3.
SELECTION-SCREEN COMMENT 1(35) TEXT-001.
SELECTION-SCREEN END OF LINE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if the same errors exits even after that cut down the message to &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;'Work brkdown struct. element'&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECTION-SCREEN BEGIN OF LINE.
SELECT-OPTIONS: s_posid for prps-posid .
selection-screen position 3.
SELECTION-SCREEN COMMENT 1(25) TEXT-001.
SELECTION-SCREEN END OF LINE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 05:54:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-long-text/m-p/3561629#M857013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T05:54:47Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen with long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-long-text/m-p/3561630#M857014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;U can only use max. 32 characters for your selection text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 06:09:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-long-text/m-p/3561630#M857014</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T06:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen with long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-long-text/m-p/3561631#M857015</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;u can display like this.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES:prps.
  SELECT-OPTIONS: s_posid for prps-posid .

AT SELECTION-SCREEN OUTPUT.
  %_S_POSID_%_app_%-text = 'Work breakdown structure element'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;max u can display 30 chars of selection text only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 06:14:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-long-text/m-p/3561631#M857015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T06:14:14Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen with long text</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-long-text/m-p/3561632#M857016</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;u have to write the code like this.using comment u can write more than 30 chars length text also.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TABLES:prps.
SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(35) TEXT.
SELECT-OPTIONS: s_posid for prps-posid .
SELECTION-SCREEN END OF LINE.

AT SELECTION-SCREEN OUTPUT.
text = 'Work breakdown structure element'.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Mar 2008 06:19:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-with-long-text/m-p/3561632#M857016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-18T06:19:20Z</dc:date>
    </item>
  </channel>
</rss>

