<?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: DYNAMIC selection screen ISSUE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001110#M1804571</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone expalin why the user use user-command FLG ? what is use of this statement ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Jan 2014 07:49:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-01-21T07:49:00Z</dc:date>
    <item>
      <title>DYNAMIC selection screen ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001101#M1804562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have gone through some existing code and found some doubtful line.I have gone through the internet for some document but not able to clear the doubt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;PARAMETERS: r_local RADIOBUTTON GROUP rad1 USER-COMMAND flg, "Local&lt;BR /&gt;&amp;nbsp; r_server RADIOBUTTON GROUP rad1 DEFAULT 'X'. "Server&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;* Begin - Block 2&lt;BR /&gt;SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.&lt;BR /&gt;PARAMETER: p_local LIKE rlgrap-filename DEFAULT 'C:\' OBLIGATORY.&lt;BR /&gt;PARAMETER: p_server LIKE rlgrap-filename DEFAULT '/default' OBLIGATORY.&lt;BR /&gt;* End - Block 2&lt;BR /&gt;SELECTION-SCREEN END OF BLOCK b2.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;* Begin - Block 3&lt;BR /&gt;SELECTION-SCREEN BEGIN OF BLOCK b3 WITH FRAME TITLE text-003.&lt;BR /&gt;SELECT-OPTIONS: s_kunnr FOR kna1-kunnr, "Customer Number 1&lt;BR /&gt;&amp;nbsp; s_land1 FOR kna1-land1. "Country Key&lt;BR /&gt;* End - Block 3&lt;BR /&gt;SELECTION-SCREEN END OF BLOCK b3.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;* End - Block 1&lt;BR /&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;************************************************************************&lt;BR /&gt;* At Selection Screen OUTPUT *&lt;BR /&gt;************************************************************************&lt;BR /&gt;AT SELECTION-SCREEN OUTPUT.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;* Check what radiobutton is selected&lt;BR /&gt;* Local&lt;BR /&gt;&amp;nbsp; IF r_local = 'X'.&lt;BR /&gt;&amp;nbsp; LOOP AT SCREEN.&lt;BR /&gt;&amp;nbsp; IF "screen-name = 'P_LOCAL'. " OR&lt;BR /&gt;&amp;nbsp; screen-name = '%_P_LOCAL_%_APP_%-TEXT'.&lt;BR /&gt;&amp;nbsp; screen-invisible = '0'.&lt;BR /&gt;&amp;nbsp; screen-input = '1'.&lt;BR /&gt;&amp;nbsp; MODIFY SCREEN.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;&amp;nbsp; ELSEIF screen-name = 'P_SERVER'. " OR&lt;BR /&gt;&amp;nbsp; screen-name = '%_P_SERVER_%_APP_%-TEXT'.&lt;BR /&gt;&amp;nbsp; screen-invisible = '1'.&lt;BR /&gt;&amp;nbsp; screen-input = '0'.&lt;BR /&gt;&amp;nbsp; MODIFY SCREEN.&lt;BR /&gt;&amp;nbsp; ENDIF.&lt;BR /&gt;&amp;nbsp; ENDLOOP.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;* Server&lt;BR /&gt;&amp;nbsp; ELSE.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;&amp;nbsp; LOOP AT SCREEN.&lt;BR /&gt;&amp;nbsp; IF screen-name = 'P_SERVER' OR&lt;BR /&gt;&amp;nbsp; screen-name = '%_P_SERVER_%_APP_%-TEXT'.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;&amp;nbsp; screen-invisible = '0'.&lt;BR /&gt;&amp;nbsp; screen-input = '0'.&lt;BR /&gt;&amp;nbsp; MODIFY SCREEN.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;&amp;nbsp; ELSEIF screen-name = 'P_LOCAL' OR&lt;BR /&gt;&amp;nbsp; screen-name = '%_P_LOCAL_%_APP_%-TEXT' OR&lt;BR /&gt;&amp;nbsp; screen-name = '%_S_KUNNR_%_APP_%-TEXT' OR&lt;BR /&gt;&amp;nbsp; screen-name = '%_S_KUNNR_%_APP_%-OPTI_PUSH' OR&lt;BR /&gt;&amp;nbsp; screen-name = 'S_KUNNR-LOW' OR&lt;BR /&gt;&amp;nbsp; screen-name = '%_S_KUNNR_%_APP_%-TO_TEXT' OR&lt;BR /&gt;&amp;nbsp; screen-name = 'S_KUNNR-HIGH' OR&lt;BR /&gt;&amp;nbsp; screen-name = '%_S_KUNNR_%_APP_%-VALU_PUSH'. .&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;&amp;nbsp; screen-invisible = '1'.&lt;BR /&gt;&amp;nbsp; screen-input = '0'.&lt;BR /&gt;&amp;nbsp; MODIFY SCREEN.&lt;BR /&gt;&amp;nbsp; ENDIF.&lt;BR /&gt;&amp;nbsp; ENDLOOP.&lt;BR /&gt;&amp;nbsp; ENDIF.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;My doubt is why use use the below statement ? means what is the exact use of the statement and in which case we generally use this statement ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: Arial; font-size: 10pt;"&gt;'%_P_LOCAL_%_APP_%-TEXT' &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial;"&gt;'%_S_KUNNR_%_APP_%-TEXT'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial;"&gt;how the system comes to know about the statement ?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial;"&gt;Please clear my doubt and if posible then send me some document.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial;"&gt;Kind Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt; font-family: Arial;"&gt;Ajit&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 12:04:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001101#M1804562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-20T12:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC selection screen ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001102#M1804563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why the user use the user-command statement ? no where he use the user-command FLG .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please clarify the same .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 12:09:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001102#M1804563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-20T12:09:43Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC selection screen ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001103#M1804564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ajit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These are nothing but label text. When you create a parameters/select option selection screen you see the label also. Those label text are defined in this form. You can open any executable report check what are element created on selction screen 1000 created by SAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 12:11:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001103#M1804564</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2014-01-20T12:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC selection screen ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001104#M1804565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For rest you need to search&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 12:12:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001104#M1804565</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2014-01-20T12:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC selection screen ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001105#M1804566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Ajit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Juz follow the process below then u understood the logic of this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: Arial;"&gt;'%_P_LOCAL_%_APP_%-TEXT'&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: Arial;"&gt;'%_S_KUNNR_%_APP_%-TEXT' &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="font-size: 12px; color: #333333;"&gt;&lt;SPAN style="font-weight: inherit; font-style: inherit; font-size: 10pt; font-family: Arial;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-style: inherit; font-family: Arial; font-weight: inherit;"&gt;Whenever in report if we use parameters or selection-screen, Automatically system &lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-family: Arial;"&gt;generates&lt;/SPAN&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-style: inherit; font-family: Arial; font-weight: inherit;"&gt; a screen with the screen number 1000.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-style: inherit; font-family: Arial; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-style: inherit; font-family: Arial; font-weight: inherit;"&gt;Juz press f1 in the selection screen parameter and go for technical information.. inthat double click the screen number&amp;nbsp; it will go the screen painter and go for the layout .In that layout double click all the fileds and see the name of each button and text u will come to know that why they used like this...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-style: inherit; font-family: Arial; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-style: inherit; font-family: Arial; font-weight: inherit;"&gt;i hope u understand , any doubts please feel free to ask ...&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-style: inherit; font-family: Arial; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-style: inherit; font-family: Arial; font-weight: inherit;"&gt;Thanks,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-style: inherit; font-family: Arial; font-weight: inherit;"&gt;Vijay SR&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-style: inherit; font-family: Arial; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-style: inherit; font-family: Arial; font-weight: inherit;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 12:17:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001105#M1804566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-20T12:17:51Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC selection screen ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001106#M1804567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you said, I have gone through the layout and double click on each field and I found the name but in text nothing is mentaioned , So how i ll find that &lt;SPAN style="color: #333333; font-family: Arial;"&gt;'%_P_LOCAL_%_APP_%&lt;/SPAN&gt;' ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please clarify ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kind regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 12:28:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001106#M1804567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-20T12:28:32Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC selection screen ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001107#M1804568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your clear clarifications..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now I got all the field names and that &lt;SPAN style="color: #333333; font-family: Arial;"&gt;'%_P_LOCAL_%_APP_%&lt;/SPAN&gt; name also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 12:36:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001107#M1804568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-20T12:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC selection screen ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001108#M1804569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Nabheet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you for your valueable answer. Now I am clear my doubt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tnaks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 12:36:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001108#M1804569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-20T12:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC selection screen ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001109#M1804570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Once if u found the answer is correct please mark it as right answer , so that i will useful for other sdn searchers to solve the same kind of issue...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vijay SR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 12:38:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001109#M1804570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-20T12:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC selection screen ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001110#M1804571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could anyone expalin why the user use user-command FLG ? what is use of this statement ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 07:49:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001110#M1804571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-21T07:49:00Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC selection screen ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001111#M1804572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The User-command statement is used to perform some action when the user makes changes to the screen. For example, if I have 2 radio buttons and for the 1st button i have to show 2 fields as selection fields and for the 2nd button I have to show 3 fields then based on the user command selected by the user (either 1st rbadio button or 2nd radio button) logic can be written.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards,&lt;/P&gt;&lt;P&gt;Giriesh M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 11:50:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001111#M1804572</guid>
      <dc:creator>GirieshM</dc:creator>
      <dc:date>2014-01-21T11:50:41Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC selection screen ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001112#M1804573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Girish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But he has not use user command FLG anywhere in the&amp;nbsp; program. So I confuged.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ajit &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 12:59:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001112#M1804573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-21T12:59:40Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC selection screen ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001113#M1804574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The User command FLG will not be used in the program but it triggers the At-Selection Screen Output event when you select any of the radio button mentioned within a group. In this above code, R_local and r_server are radio buttons with the group rad1. So whenever user selects any radiobutoon the User command triggers the at selection screen event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With Regards,&lt;/P&gt;&lt;P&gt;Giriesh M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 13:12:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001113#M1804574</guid>
      <dc:creator>GirieshM</dc:creator>
      <dc:date>2014-01-21T13:12:35Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC selection screen ISSUE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001114#M1804575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you very much girish. Now I am clear&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jan 2014 13:18:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-selection-screen-issue/m-p/10001114#M1804575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-21T13:18:10Z</dc:date>
    </item>
  </channel>
</rss>

