<?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 modifications in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modifications/m-p/7321357#M1536923</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi fellow ABAPPERS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am currently working on a selection screen which requires descriptive text being displayed at the left of each field. This text changes according to the user input. Since the use of comments cannot be dynamic, I have opted to manually changing the selection screen dynpro (screen 1000), by adding the text boxes where needed. Then the code automatically places the required text at run-time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This solution works, but the problem is that any further modification made to the selection screen declaration leads to a &lt;EM&gt;regeneration&lt;/EM&gt; of the screen. Thus all the text boxes that were added manually via screen painter are lost. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do any of you know any way to avoid this problem and make the screen text fixed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please not that the screen cannot be converted into Module Pool as the program should be able to run in background as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All your help would be greatly appreciated &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Oct 2010 06:01:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-10-05T06:01:52Z</dc:date>
    <item>
      <title>Selection screen modifications</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modifications/m-p/7321357#M1536923</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi fellow ABAPPERS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am currently working on a selection screen which requires descriptive text being displayed at the left of each field. This text changes according to the user input. Since the use of comments cannot be dynamic, I have opted to manually changing the selection screen dynpro (screen 1000), by adding the text boxes where needed. Then the code automatically places the required text at run-time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This solution works, but the problem is that any further modification made to the selection screen declaration leads to a &lt;EM&gt;regeneration&lt;/EM&gt; of the screen. Thus all the text boxes that were added manually via screen painter are lost. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do any of you know any way to avoid this problem and make the screen text fixed?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please not that the screen cannot be converted into Module Pool as the program should be able to run in background as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All your help would be greatly appreciated &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 06:01:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modifications/m-p/7321357#M1536923</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-05T06:01:52Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen modifications</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modifications/m-p/7321358#M1536924</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just try those snippets&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: p_field(20).

AT SELECTION-SCREEN OUTPUT.
  WRITE sy-uzeit TO %_p_field_%_app_%-text.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;or&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECTION-SCREEN BEGIN OF LINE.
SELECTION-SCREEN COMMENT 1(30) p_text FOR FIELD p_field.
PARAMETERS: p_field(20).
SELECTION-SCREEN END OF LINE.

AT SELECTION-SCREEN OUTPUT.
  WRITE sy-uzeit TO p_text.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 06:43:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modifications/m-p/7321358#M1536924</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2010-10-05T06:43:20Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen modifications</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modifications/m-p/7321359#M1536925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raymond,&lt;/P&gt;&lt;P&gt;Thanks for ur reply. But there was a mistake in my question. I actually have to display the dynamic text on the RIGHT of the parameter. Any idea on how to do that?&lt;/P&gt;&lt;P&gt;Thx &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 11:11:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modifications/m-p/7321359#M1536925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-05T11:11:55Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen modifications</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modifications/m-p/7321360#M1536926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
SELECTION-SCREEN BEGIN OF LINE.
  
PARAMETERS: p_field(20).
SELECTION-SCREEN COMMENT 40(30) p_text FOR FIELD p_field.
SELECTION-SCREEN END OF LINE.

AT SELECTION-SCREEN OUTPUT.
  WRITE sy-uzeit TO p_text.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Bala Duvvuri&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Bala Duvvuri on Oct 5, 2010 5:27 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 11:27:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modifications/m-p/7321360#M1536926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-05T11:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen modifications</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modifications/m-p/7321361#M1536927</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;It is very basic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_field(20).&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 23(30) p_text FOR FIELD p_field.   "Comment line after the parameters &lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sujay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 11:30:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modifications/m-p/7321361#M1536927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-05T11:30:03Z</dc:date>
    </item>
    <item>
      <title>Re: Selection screen modifications</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modifications/m-p/7321362#M1536928</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;Try this out ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF LINE.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 1(12) p_comp FOR FIELD p_bukrs.&lt;/P&gt;&lt;P&gt;PARAMETERS: p_bukrs TYPE bukrs.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN COMMENT 30(30) p_text FOR FIELD p_bukrs. "Comment line after the parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;  p_comp = 'Company Code'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE butxt INTO p_text FROM t001&lt;/P&gt;&lt;P&gt;    WHERE bukrs = p_bukrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can change the code according to your requirement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Oct 2010 12:06:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/selection-screen-modifications/m-p/7321362#M1536928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-05T12:06:22Z</dc:date>
    </item>
  </channel>
</rss>

