<?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 Dynamic text for selection screen block title in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-for-selection-screen-block-title/m-p/10309939#M1834629</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to make a selection-screen reusable, so I created an include for that.&lt;/P&gt;&lt;P&gt;Furthermore it is possible to set the texts for the parameters and select-options dynamically. &lt;/P&gt;&lt;P&gt;But I can't find a possibility to set the title for a selection screen block dynamically. For example in that code, I want to set that for text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001&lt;/P&gt;
&lt;P&gt;*... Parameters and Select-Options ...&lt;/P&gt;
&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 23 May 2014 08:34:20 GMT</pubDate>
    <dc:creator>thw</dc:creator>
    <dc:date>2014-05-23T08:34:20Z</dc:date>
    <item>
      <title>Dynamic text for selection screen block title</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-for-selection-screen-block-title/m-p/10309939#M1834629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to make a selection-screen reusable, so I created an include for that.&lt;/P&gt;&lt;P&gt;Furthermore it is possible to set the texts for the parameters and select-options dynamically. &lt;/P&gt;&lt;P&gt;But I can't find a possibility to set the title for a selection screen block dynamically. For example in that code, I want to set that for text-001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001&lt;/P&gt;
&lt;P&gt;*... Parameters and Select-Options ...&lt;/P&gt;
&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 08:34:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-for-selection-screen-block-title/m-p/10309939#M1834629</guid>
      <dc:creator>thw</dc:creator>
      <dc:date>2014-05-23T08:34:20Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic text for selection screen block title</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-for-selection-screen-block-title/m-p/10309940#M1834630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can set the frame title of Selection-Screen Block in INITIALIZATION statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt; SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;BEGIN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;BLOCK &lt;/SPAN&gt;b1 &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FRAME &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TITLE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;text&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp; &lt;SPAN class="L0S52"&gt;PARAMETER &lt;/SPAN&gt;par &lt;SPAN class="L0S52"&gt;TYPE &lt;/SPAN&gt;char1&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;END &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;BLOCK &lt;/SPAN&gt;b1&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;*&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;INITIALIZATION&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;*&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt; text &lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'DynamicText'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Angelo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 08:40:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-for-selection-screen-block-title/m-p/10309940#M1834630</guid>
      <dc:creator>former_member302911</dc:creator>
      <dc:date>2014-05-23T08:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic text for selection screen block title</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-for-selection-screen-block-title/m-p/10309941#M1834631</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Thomas,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If I understood your question, are you looking for INITIALIZATION event on condition basis?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anubhab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 08:41:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-for-selection-screen-block-title/m-p/10309941#M1834631</guid>
      <dc:creator>anubhab</dc:creator>
      <dc:date>2014-05-23T08:41:01Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic text for selection screen block title</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-for-selection-screen-block-title/m-p/10309942#M1834632</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;Pls try this scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Selection screen begin of block b1 with frame title a1.&lt;/P&gt;&lt;P&gt;parameter par type char1.&lt;/P&gt;&lt;P&gt;selection screen end of block b1.&lt;/P&gt;&lt;P&gt;perform selection_screen.&lt;/P&gt;&lt;P&gt;form selection screen.&lt;/P&gt;&lt;P&gt;a1 = 'Dynamic Test'.&lt;/P&gt;&lt;P&gt;end form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So in this part u can include some text for selection screen in future too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 08:56:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-for-selection-screen-block-title/m-p/10309942#M1834632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-05-23T08:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic text for selection screen block title</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-for-selection-screen-block-title/m-p/10309943#M1834633</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Many thanks for your help! It worked &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_macro jive_emote" src="https://community.sap.com/776/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 23 May 2014 09:22:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-for-selection-screen-block-title/m-p/10309943#M1834633</guid>
      <dc:creator>thw</dc:creator>
      <dc:date>2014-05-23T09:22:30Z</dc:date>
    </item>
  </channel>
</rss>

