<?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 acording radio buttons code execution in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/acording-radio-buttons-code-execution/m-p/4246672#M1013621</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;i am working on a program with a requirement as in the selection screen with 2 radio buttons (1.excel,2.ftp)&lt;/P&gt;&lt;P&gt;if user select 1st radio button then the user should be able to select a list of records(may be in the format of excel or text ) which is prasent on the Desktop if he select 2nd radio button he should be able to selct from FTP serever .. and then execution part all the records in the file should be uploaded in the z table.&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;&lt;P&gt;helpfull will be rewarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 13 Aug 2008 05:07:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-13T05:07:13Z</dc:date>
    <item>
      <title>acording radio buttons code execution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/acording-radio-buttons-code-execution/m-p/4246672#M1013621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;i am working on a program with a requirement as in the selection screen with 2 radio buttons (1.excel,2.ftp)&lt;/P&gt;&lt;P&gt;if user select 1st radio button then the user should be able to select a list of records(may be in the format of excel or text ) which is prasent on the Desktop if he select 2nd radio button he should be able to selct from FTP serever .. and then execution part all the records in the file should be uploaded in the z table.&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;&lt;P&gt;helpfull will be rewarded.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 05:07:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/acording-radio-buttons-code-execution/m-p/4246672#M1013621</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T05:07:13Z</dc:date>
    </item>
    <item>
      <title>Re: acording radio buttons code execution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/acording-radio-buttons-code-execution/m-p/4246673#M1013622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can call corresponding fm's  for each radio button&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 05:12:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/acording-radio-buttons-code-execution/m-p/4246673#M1013622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T05:12:57Z</dc:date>
    </item>
    <item>
      <title>Re: acording radio buttons code execution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/acording-radio-buttons-code-execution/m-p/4246674#M1013623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;selection-screen begin of block b1.&lt;/P&gt;&lt;P&gt;parameters : p_appl radiobutton group rad1 default 'X',&lt;/P&gt;&lt;P&gt;p_fileappl type rlgrap-filename lowercase,&lt;/P&gt;&lt;P&gt;p_local radiobutton group rad1,&lt;/P&gt;&lt;P&gt;p_filelocl type rlgrap-filename lowercase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection screen you can check which raio button is selected by &lt;/P&gt;&lt;P&gt;if p_appl = 'X'.&lt;/P&gt;&lt;P&gt;upload file from apllication server.&lt;/P&gt;&lt;P&gt;elseif p_local = 'X'.&lt;/P&gt;&lt;P&gt;upload file from local server.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 05:15:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/acording-radio-buttons-code-execution/m-p/4246674#M1013623</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T05:15:37Z</dc:date>
    </item>
    <item>
      <title>Re: acording radio buttons code execution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/acording-radio-buttons-code-execution/m-p/4246675#M1013624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sunny,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;        Refer this codes,that will solve your issuse.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; At selection-screen on value request.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; if radio button = 1.&lt;/P&gt;&lt;P&gt;   FM : F4_File name.&lt;/P&gt;&lt;P&gt; else.&lt;/P&gt;&lt;P&gt; ........................&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it is helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;T.Durai murugan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 05:19:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/acording-radio-buttons-code-execution/m-p/4246675#M1013624</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T05:19:23Z</dc:date>
    </item>
    <item>
      <title>Re: acording radio buttons code execution</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/acording-radio-buttons-code-execution/m-p/4246676#M1013625</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 use attributes of SCREEN table to modify the screen fields dynamically...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more Go through this link..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/change-the-input-fields-dynamically-in-a-screen.htm" target="test_blank"&gt;http://www.sap-img.com/abap/change-the-input-fields-dynamically-in-a-screen.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;hope helpful&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Raghunath.S&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Aug 2008 05:20:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/acording-radio-buttons-code-execution/m-p/4246676#M1013625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-13T05:20:56Z</dc:date>
    </item>
  </channel>
</rss>

