<?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: WRITE AS RADIOBUTTON ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284714#M153601</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;pls chk my previous post

use checkbox

if user selects multiple lines , write validation

loop at itab.
   if itab-chk = 'X'.
     count = count + 1. 
   endif.
   if count GT 1.
      * display error message here 
   endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls reward points if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sekhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Mar 2006 22:07:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-11T22:07:02Z</dc:date>
    <item>
      <title>WRITE AS RADIOBUTTON ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284708#M153595</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 want to display my table's one field as radio button. But not in parameters section. How can I write my table's field as radio button?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Mar 2006 21:25:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284708#M153595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-11T21:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: WRITE AS RADIOBUTTON ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284709#M153596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you want to display this field as radio button in report output?&lt;/P&gt;&lt;P&gt;In report output you can use option 'symbol' while displaying details and use symbol radio button to display as radio button (only selected radio button symbol is available. you may have to explore a little).&lt;/P&gt;&lt;P&gt;Else there is a option in WRITE statement where you can display field as a checkbox.&lt;/P&gt;&lt;P&gt;Check this link for reference -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/d3/2e974d35c511d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Ashish Gundawar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Mar 2006 21:53:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284709#M153596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-11T21:53:27Z</dc:date>
    </item>
    <item>
      <title>Re: WRITE AS RADIOBUTTON ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284710#M153597</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;You can tryout writing table field as checkbox.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE - Output as checkbox &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Outputs the field f as a checkbox. The contents of the first character of f is interpreted as the "status": &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;' ' = not selected &lt;/P&gt;&lt;P&gt;'X' = selected &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user can change this as required. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note&lt;/P&gt;&lt;P&gt;To prevent the user changing the contents of the checkbox, you can use the addition ... INPUT OFF . The checkbox is then nothing more than a status display and can only be changed by programming. &lt;/P&gt;&lt;P&gt;In technical terms, a checkbox behaves exactly like an input field with a length of 1 (FORMAT INPUT ). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Examples&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: MARKFIELD(1) TYPE C VALUE 'X'.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;WRITE MARKFIELD AS CHECKBOX.           "checkbox selected&lt;/P&gt;&lt;P&gt;MARKFIELD = SPACE.&lt;/P&gt;&lt;P&gt;WRITE MARKFIELD AS CHECKBOX.           "deselected&lt;/P&gt;&lt;P&gt;WRITE MARKFIELD AS CHECKBOX INPUT OFF. "deselected, protected&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Mar 2006 21:53:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284710#M153597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-11T21:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: WRITE AS RADIOBUTTON ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284711#M153598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think displaying radio button is not possible,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if ur aim of using radio button is to selet only one record at a time, &lt;/P&gt;&lt;P&gt;then u can use checkbox and write a validation to select only one entry at a time&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Mar 2006 21:56:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284711#M153598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-11T21:56:01Z</dc:date>
    </item>
    <item>
      <title>Re: WRITE AS RADIOBUTTON ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284712#M153599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a table and, user can select one line(line selection is not usefull for this operation). If I use checkbox user can select multiple line, and I want to get which line has selected. But, as I said user should select only one line. how can I do? What should I do else that will supply as radio button?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Mar 2006 22:03:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284712#M153599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-11T22:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: WRITE AS RADIOBUTTON ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284713#M153600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can add a validation - use checkboxes in report output.&lt;/P&gt;&lt;P&gt;When user selects 1 / more checkboxes and clicks on any button, read the list and make sure that only one checkbox is selected. Else display error message to select only one checkbox.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Mar 2006 22:06:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284713#M153600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-11T22:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: WRITE AS RADIOBUTTON ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284714#M153601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;pls chk my previous post

use checkbox

if user selects multiple lines , write validation

loop at itab.
   if itab-chk = 'X'.
     count = count + 1. 
   endif.
   if count GT 1.
      * display error message here 
   endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls reward points if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sekhar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Mar 2006 22:07:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/write-as-radiobutton/m-p/1284714#M153601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-11T22:07:02Z</dc:date>
    </item>
  </channel>
</rss>

