<?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: capturing checkbox value at  at selection-screen on value request event in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858715#M1592762</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;define your checkbox as follow:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_check as CHECKBOX USER-COMMAND abcd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you're ok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 28 Apr 2011 15:13:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-04-28T15:13:30Z</dc:date>
    <item>
      <title>capturing checkbox value at  at selection-screen on value request event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858713#M1592760</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;I have a checkbox and parameter field and by default checkbox is unchecked.when I check the checkbox and press f4 on the field within the at selection-screen on value request event i want to capture the checkbox value .Is it possible because even though the checkbox is checked it is coming as initial and I am not adding any user-command to checkbox&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Bala Duvvuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2011 14:42:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858713#M1592760</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-28T14:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: capturing checkbox value at  at selection-screen on value request event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858714#M1592761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;nevermind.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you have to use user command . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sampath Kumar on Apr 28, 2011 9:02 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sampath Kumar on Apr 28, 2011 9:04 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2011 15:02:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858714#M1592761</guid>
      <dc:creator>former_member191735</dc:creator>
      <dc:date>2011-04-28T15:02:13Z</dc:date>
    </item>
    <item>
      <title>Re: capturing checkbox value at  at selection-screen on value request event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858715#M1592762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;define your checkbox as follow:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_check as CHECKBOX USER-COMMAND abcd.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and you're ok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2011 15:13:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858715#M1592762</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-28T15:13:30Z</dc:date>
    </item>
    <item>
      <title>Re: capturing checkbox value at  at selection-screen on value request event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858716#M1592763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bala,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you don't want to use user-command syntax and still want to capture whether check box value, make use of screen-request &lt;/P&gt;&lt;P&gt;value to determine whether check box is checked or not. Try this code and see for yourself as how screen-request is being set to '1' when checked and to '0' when unchecked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT y_vm_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_check  AS CHECKBOX,&lt;/P&gt;&lt;P&gt;            p_user TYPE char10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_user.&lt;/P&gt;&lt;P&gt;  PERFORM get_user_data.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  get_user_data&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM get_user_data .&lt;/P&gt;&lt;P&gt;  LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;    BREAK-POINT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Check SCREEN-REQUEST value here when screen-name = 'p_check'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " get_user_data&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Apr 2011 15:20:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858716#M1592763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-28T15:20:19Z</dc:date>
    </item>
    <item>
      <title>Re: capturing checkbox value at  at selection-screen on value request event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858717#M1592764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vivek,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen-request is always showing 1 if checkbox is checked or unchecked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Bala Duvvuri&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2011 09:43:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858717#M1592764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-29T09:43:04Z</dc:date>
    </item>
    <item>
      <title>Re: capturing checkbox value at  at selection-screen on value request event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858718#M1592765</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;Please share the code used for declaration and for checking.&lt;/P&gt;&lt;P&gt;This would be helpful for us to understand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Meera&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Apr 2011 10:30:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858718#M1592765</guid>
      <dc:creator>former_member463524</dc:creator>
      <dc:date>2011-04-29T10:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: capturing checkbox value at  at selection-screen on value request event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858719#M1592766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bala , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can do this in the following ways:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_check1 AS CHECKBOX.( By default the check box is not checked).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now if you from the program you call the selection screen , you can collect the value of p_check1 in any other variable say check1 and then check whether &lt;/P&gt;&lt;P&gt;if check1 = 'X' &lt;/P&gt;&lt;P&gt;/*Write your code here&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For the value request you have to use AT SELECTION-SCREEN ON VALUE REQUEST FOR...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kavindra&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 30 Apr 2011 12:42:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858719#M1592766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-04-30T12:42:01Z</dc:date>
    </item>
    <item>
      <title>Re: capturing checkbox value at  at selection-screen on value request event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858720#M1592767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Meera,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is my code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_check1 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE REQUEST FOR p_file.&lt;/P&gt;&lt;P&gt;if p_local eq 'X'.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Bala Duvvuri&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 May 2011 13:01:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858720#M1592767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-01T13:01:28Z</dc:date>
    </item>
    <item>
      <title>Re: capturing checkbox value at  at selection-screen on value request event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858721#M1592768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bala,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_check1 AS CHECKBOX.&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE REQUEST FOR p_file.&lt;/P&gt;&lt;P&gt;if p_local eq 'X' needs to be changed to p_check1.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have declared p_check1 as the parameter but you are checking p_local variable.&lt;/P&gt;&lt;P&gt;Please change the check against p_check1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Meera&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 May 2011 10:27:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858721#M1592768</guid>
      <dc:creator>former_member463524</dc:creator>
      <dc:date>2011-05-02T10:27:05Z</dc:date>
    </item>
    <item>
      <title>Re: capturing checkbox value at  at selection-screen on value request event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858722#M1592769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No more a requirement and I dont think we can capture checkbox value at selection-screen on value request without using user command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Bala Duvvuri&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 May 2011 10:51:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858722#M1592769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-05-02T10:51:23Z</dc:date>
    </item>
    <item>
      <title>Re: capturing checkbox value at  at selection-screen on value request event</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858723#M1592770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bala,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check whether p_file value request getting triggered before the check box selection through debugging.&lt;/P&gt;&lt;P&gt;If it is getting triggered before check box selection, you cant able to capture in on value request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Meera&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 May 2011 11:04:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-checkbox-value-at-at-selection-screen-on-value-request-event/m-p/7858723#M1592770</guid>
      <dc:creator>former_member463524</dc:creator>
      <dc:date>2011-05-02T11:04:17Z</dc:date>
    </item>
  </channel>
</rss>

