<?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 changes in selection screen in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-changes-in-selection-screen/m-p/5204101#M1203954</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to change the title of block into a selection screen after clicking radio button .the changes will be done dynamically.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 21 Feb 2009 14:23:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-21T14:23:52Z</dc:date>
    <item>
      <title>dynamic text changes in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-changes-in-selection-screen/m-p/5204101#M1203954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to change the title of block into a selection screen after clicking radio button .the changes will be done dynamically.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2009 14:23:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-changes-in-selection-screen/m-p/5204101#M1203954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-21T14:23:52Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic text changes in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-changes-in-selection-screen/m-p/5204102#M1203955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pravik,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;selection-screen : begin of block b1 with frame title text-034.

selection-screen begin of line.
parameter : r_mas_dl radiobutton group r user-command btn default 'X'.
selection-screen comment 3(50) text-060.
selection-screen end of line.

selection-screen begin of line.
parameter:  r_new_dl radiobutton group r.
selection-screen comment 3(50) text-058.
selection-screen end of line.

selection-screen begin of line.
parameter: r_chn_d1 radiobutton group r.
selection-screen comment 3(50) text-059.
selection-screen end of line.

selection-screen skip 3.
parameter p_file  type rlgrap-filename modif id a.
select-options: s_sernr for risa0-sernr modif id b no-extension no intervals.
selection-screen : end of block b1 .


at selection-screen output.

  if r_mas_dl = c_x.                                      " For the first Radio button 
    set titlebar 'MAS' with text-041. " Header Text1.
    loop at screen.
      if screen-group1 = c_a.
*        CLEAR p_file.
        if screen-name = text-052. "'P_FILE'.
          screen-invisible = 0.
          screen-input = 1.
        endif.
      endif.

      if screen-group1 = c_b.
        screen-invisible = 1.
        screen-input = 0.
      endif.

      if screen-group1 = c_c.
        screen-invisible = 1.
        screen-input = 0.
      endif.

      modify screen.
    endloop.

  elseif r_new_dl = c_x.                             " For the second radio button
    clear p_file.
    set titlebar 'SIN' with text-058. " Header Text2
    loop at screen.
      if screen-group1 = c_a.
        clear s_sernr.
        screen-input = 0.
        screen-invisible = 1.
      endif.
      if screen-group1 = c_b.
        screen-input = 1.
        screen-invisible = 0.
      endif.

      if screen-group1 = c_c.
        screen-invisible = 1.
        screen-input = 0.
      endif.

      modify screen.
    endloop.

  elseif r_chn_d1 = c_x.                               " For the third radion button.
    clear p_file.
    set titlebar 'CHG' with text-059. " Header Text3.
    loop at screen.
      if screen-group1 = c_a.
        clear s_sernr.
        screen-input = 0.
        screen-invisible = 1.
      endif.
      if screen-group1 = c_b.
        screen-input = 0.
        screen-invisible = 1.
      endif.

      if screen-group1 = c_c.
        screen-invisible = 0.
        screen-input = 1.
      endif.

      modify screen.
    endloop.
  endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2009 14:41:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-changes-in-selection-screen/m-p/5204102#M1203955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-21T14:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic text changes in selection screen</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-changes-in-selection-screen/m-p/5204103#M1203956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi pravik ....u just copy this code and get relaxed....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b0 with frame-title abcd .&lt;/P&gt;&lt;P&gt;parameters:r1 radiobutton group rd1 default 'x' user-command abc,&lt;/P&gt;&lt;P&gt;                 r2 radiobutton group rd1.&lt;/P&gt;&lt;P&gt;selection-screen end of block b0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt;if r1 = 'x' .&lt;/P&gt;&lt;P&gt;move 'sales' to abcd.&lt;/P&gt;&lt;P&gt;elseif r2 = 'x' .&lt;/P&gt;&lt;P&gt;move 'delivery' to abcd.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 21 Feb 2009 14:52:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-text-changes-in-selection-screen/m-p/5204103#M1203956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-21T14:52:52Z</dc:date>
    </item>
  </channel>
</rss>

