<?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: Checkbox as user command in report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503096#M1065429</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sathar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tks for your help but the sctructure sscrfields-ucomm is ever empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can fil it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Oct 2008 08:13:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-01T08:13:31Z</dc:date>
    <item>
      <title>Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503089#M1065422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i maked a chechbox as user-command like below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZTEST_CHECKBOX.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;parameters:  p_date type sy-datum,          &lt;/P&gt;&lt;P&gt;p_chec1 as checkbox user-command aaa1.&lt;/P&gt;&lt;P&gt;p_chec2 as checkbox user-command aaa2.&lt;/P&gt;&lt;P&gt;p_chec3 as checkbox user-command aaa3.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;at selection-screen output.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;etc etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my problem is: when i click on check-box, la variable sy-ucomm is empty, so I do not know wich checkbox is pressed ( if p_chec1 or p_chec2 or p_chec3) .&lt;/P&gt;&lt;P&gt;( for other reason I can't use p_chec1 = 'x' )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( if in dynpro I set checkbox as exit command, when i press on the checkbox the report end )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any idea ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tks a lot&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 06:46:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503089#M1065422</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T06:46:45Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503090#M1065423</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 have to check the sy-ucomm:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CASE sy-ucomm.
WHEN 'AAA1'.
==&amp;gt; 1st checkbox was checked/unchecked.
WHEN 'AAA2'.
==&amp;gt; 2nd...
...
ENDCASE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 06:50:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503090#M1065423</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-10-01T06:50:20Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503091#M1065424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WRITE your code in the event AT SELECTION SCREEN.&lt;/P&gt;&lt;P&gt;do not use at selection screen output.&lt;/P&gt;&lt;P&gt;It will work definately...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and if u want to use at selection screen output then follow the below procedure..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZTESTNATESH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: A AS CHECKBOX USER-COMMAND AAA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;    IF A = 'X'.&lt;/P&gt;&lt;P&gt;      MESSAGE 'HI' TYPE 'I'.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Naresh Patel on Oct 1, 2008 8:53 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 06:52:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503091#M1065424</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T06:52:13Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503092#M1065425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT ZTEST_CHECKBOX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO LIKE THIS:&lt;/P&gt;&lt;P&gt;parameters: p_date type sy-datum, &lt;/P&gt;&lt;P&gt;p_chec1 as checkbox user-command aaa1.&lt;/P&gt;&lt;P&gt;p_chec2 as checkbox user-command aaa2.&lt;/P&gt;&lt;P&gt;p_chec3 as checkbox user-command aaa3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-ucomm.&lt;/P&gt;&lt;P&gt;when 'aaa1'.&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;when 'aaa2'.&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;when 'aaa3'.&lt;/P&gt;&lt;P&gt;---&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Amit Gupta on Oct 1, 2008 8:53 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Amit Gupta on Oct 1, 2008 8:54 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 06:52:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503092#M1065425</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T06:52:48Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503093#M1065426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if you cant use p_chec1 = 'x' &lt;/P&gt;&lt;P&gt;the may be function module &lt;/P&gt;&lt;P&gt;DYNP_VALUES_READ can be useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 06:54:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503093#M1065426</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T06:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503094#M1065427</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 send one program... U read this u have get idea..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZBA_CHKBOX_IN_OUTPUT NO STANDARD PAGE HEADING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: slis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: ZPROGMENU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: FLAG VALUE 1,&lt;/P&gt;&lt;P&gt;      SEL,&lt;/P&gt;&lt;P&gt;      WA_PROG LIKE ZPROGMENU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lt_progmenu  like ZPROGMENU OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;      lt_progmenu1 like ZPROGMENU OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;      lt_progmenu2 TYPE TABLE OF ZPROGMENU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : lt_listheader TYPE slis_t_listheader.&lt;/P&gt;&lt;P&gt;DATA: ls_line TYPE slis_listheader.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : gv_toutdt TYPE prps-post1,&lt;/P&gt;&lt;P&gt;       gv_touttm TYPE prps-post1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;FOR ALV Display&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: gr_table TYPE REF TO cl_salv_table.&lt;/P&gt;&lt;P&gt;data: gr_funct type ref to cl_salv_functions.&lt;/P&gt;&lt;P&gt;data: gr_columns type ref to cl_salv_columns_table.&lt;/P&gt;&lt;P&gt;data: gr_column type ref to CL_SALV_COLUMN_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****************&lt;STRONG&gt;TOP OF PAGE&lt;/STRONG&gt;*****************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ULINE (135).&lt;/P&gt;&lt;P&gt;     NEW-LINE.&lt;/P&gt;&lt;P&gt;     WRITE : SY-VLINE, (3)  TEXT-000 COLOR COL_HEADING,&lt;/P&gt;&lt;P&gt;             SY-VLINE, (3)  TEXT-001 COLOR COL_HEADING,&lt;/P&gt;&lt;P&gt;             SY-VLINE, (20) TEXT-002 COLOR COL_HEADING,&lt;/P&gt;&lt;P&gt;             SY-VLINE, (40) TEXT-003 COLOR COL_HEADING,&lt;/P&gt;&lt;P&gt;             SY-VLINE, (40) TEXT-004 COLOR COL_HEADING,&lt;/P&gt;&lt;P&gt;             SY-VLINE, (10) TEXT-005 COLOR COL_HEADING,&lt;/P&gt;&lt;P&gt;             SY-VLINE.&lt;/P&gt;&lt;P&gt;     NEW-LINE.&lt;/P&gt;&lt;P&gt;     ULINE (135).&lt;/P&gt;&lt;P&gt;     NEW-LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*****************&lt;STRONG&gt;START OF SELECTION&lt;/STRONG&gt;***********************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from ZPROGMENU INTO TABLE lt_progmenu.&lt;/P&gt;&lt;P&gt;DELETE lt_progmenu WHERE PROG IS INITIAL.&lt;/P&gt;&lt;P&gt;SORT lt_progmenu BY APPL TCODE PROG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT lt_progmenu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   PERFORM CHANGE_COLOR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt;  SY-VLINE,&lt;/P&gt;&lt;P&gt;             SEL UNDER TEXT-000 AS CHECKBOX, 7 SY-VLINE,&lt;/P&gt;&lt;P&gt;             (3)  lt_progmenu-appl     UNDER TEXT-001, SY-VLINE,&lt;/P&gt;&lt;P&gt;             (20) lt_progmenu-tcode    UNDER TEXT-002, SY-VLINE,&lt;/P&gt;&lt;P&gt;             (40) lt_progmenu-prog     UNDER TEXT-003, SY-VLINE,&lt;/P&gt;&lt;P&gt;             (40) lt_progmenu-ltext    UNDER TEXT-004, SY-VLINE,&lt;/P&gt;&lt;P&gt;             (10) lt_progmenu-hit_rate UNDER TEXT-005, SY-VLINE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;NEW-LINE.&lt;/P&gt;&lt;P&gt;WRITE: SY-ULINE(135).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*******************&lt;STRONG&gt;END-OF-SELECTION&lt;/STRONG&gt;**************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PF-STATUS 'GUISTAT'.&lt;/P&gt;&lt;P&gt;SET TITLEBAR 'ACN'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;  CASE SY-UCOMM .&lt;/P&gt;&lt;P&gt;    WHEN 'DISPLAY'.&lt;/P&gt;&lt;P&gt;      DO.&lt;/P&gt;&lt;P&gt;       CLEAR SEL.&lt;/P&gt;&lt;P&gt;       CLEAR WA_PROG.&lt;/P&gt;&lt;P&gt;       READ LINE SY-INDEX FIELD VALUE&lt;/P&gt;&lt;P&gt;                          SEL INTO SEL&lt;/P&gt;&lt;P&gt;                          lt_progmenu-appl INTO WA_PROG-APPL&lt;/P&gt;&lt;P&gt;                          lt_progmenu-tcode INTO WA_PROG-tcode&lt;/P&gt;&lt;P&gt;                          lt_progmenu-PROG INTO WA_PROG-PROG&lt;/P&gt;&lt;P&gt;                          lt_progmenu-ltext INTO WA_PROG-ltext&lt;/P&gt;&lt;P&gt;                          lt_progmenu-hit_rate INTO WA_PROG-hit_rate.&lt;/P&gt;&lt;P&gt;       IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;         EXIT.&lt;/P&gt;&lt;P&gt;       ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       IF SEL = 'x' OR SEL = 'X'.&lt;/P&gt;&lt;P&gt;         MOVE-CORRESPONDING WA_PROG TO lt_progmenu1.&lt;/P&gt;&lt;P&gt;         APPEND lt_progmenu1.&lt;/P&gt;&lt;P&gt;       ENDIF.&lt;/P&gt;&lt;P&gt;      ENDDO.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF NOT lt_progmenu1 IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  lt_progmenu2[] = lt_progmenu1[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TRY.&lt;/P&gt;&lt;P&gt;      CALL METHOD cl_salv_table=&amp;gt;factory&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          r_salv_table = gr_table&lt;/P&gt;&lt;P&gt;        CHANGING&lt;/P&gt;&lt;P&gt;          t_table      = lt_progmenu2.&lt;/P&gt;&lt;P&gt;    CATCH cx_salv_msg .&lt;/P&gt;&lt;P&gt;  ENDTRY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; gr_table-&amp;gt;display( ).&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;CLEAR: SEL,lt_progmenu,lt_progmenu1,lt_progmenu2.&lt;/P&gt;&lt;P&gt;REFRESH: lt_progmenu,lt_progmenu1,lt_progmenu2.&lt;/P&gt;&lt;P&gt;&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  CHANGE_COLOR&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 CHANGE_COLOR .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF FLAG = 1.&lt;/P&gt;&lt;P&gt;      FORMAT COLOR 2 INTENSIFIED ON.&lt;/P&gt;&lt;P&gt;      FLAG = 2.&lt;/P&gt;&lt;P&gt;   ELSE.&lt;/P&gt;&lt;P&gt;     FORMAT COLOR 2 INTENSIFIED OFF.&lt;/P&gt;&lt;P&gt;     FLAG = 1.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    " CHANGE_COL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 06:56:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503094#M1065427</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T06:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503095#M1065428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this&lt;/P&gt;&lt;P&gt;Declare structure SSCRFIELDS using table statement. When the user selects the checkbox on the selection screen, function code will be transferred to the component ucomm of the work area sscrfields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: sscrfields.

parameters: p_date type sy-datum,
p_chec1 as checkbox user-command AAA1,
p_chec2 as checkbox user-command AAA2,
p_chec3 as checkbox user-command AAA3.

at SELECTION-SCREEN.

case sscrfields-ucomm.
when 'AAA1'.
---
when 'AAA2'.
---
when 'AAA3'.
---
endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sathar RA on Oct 1, 2008 9:13 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 07:13:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503095#M1065428</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T07:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503096#M1065429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sathar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tks for your help but the sctructure sscrfields-ucomm is ever empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How I can fil it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 08:13:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503096#M1065429</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T08:13:31Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503097#M1065430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Hi Sathar,&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; tks for your help but the sctructure sscrfields-ucomm is ever empty.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; How I can fil it?&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; tks&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sy-ucomm you have to check (not sscrfields-ucomm), just check my code sample above!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 08:18:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503097#M1065430</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-10-01T08:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503098#M1065431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You need to check for sy-ucomm in &lt;STRONG&gt;at selection-screen&lt;/STRONG&gt; instead of at selection-screen output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The sy-ucomm for the parameters will be populated during PAI ( at selection-screen) and not in PBO ( at selection-screen output). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 08:43:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503098#M1065431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T08:43:08Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503099#M1065432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Roberto&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u have declared TABLES: SSCRFIELDS in ur program, when u click the check box in selection screen the fcode assigned to that check box will get transferred to sscrfield-ucomm. You can confirm this by switching on the debugger before u click check box and I am very sure that sscrfield-ucomm will have the function code assigned to the check box u clicked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the explanation in SAP help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;The addition USER-COMMAND can be used to assign a function code fcode to the parameter. The function code fcode must be directly specified and may have a maximum length of 20 characters. To evaluate the function code, an interface work area of the structure SSCRFIELDS from the ABAP Dictionary must be declared using the statement TABLES. When the user selects the checkbox on the selection screen, the runtime environment triggers the event AT SELECTION-SCREEN and transfers the function code fcode to the component ucomm of the interface work area sscrfields. If a function code used in the GUI status of the selection screen is specified for fcode, the selection screen processing is affected accordingly.&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;Regards&lt;/P&gt;&lt;P&gt;Sathar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 08:46:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503099#M1065432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T08:46:44Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503100#M1065433</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Roberto&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u have declared TABLES: SSCRFIELDS in ur program, when u click the check box in selection screen the fcode assigned to that check box&lt;/P&gt;&lt;P&gt; will get transferred to sscrfield-ucomm. You can confirm this by switching on the debugger before u click check box and &lt;/P&gt;&lt;P&gt;I am very sure that sscrfield-ucomm will have the function code assigned to the check box u clicked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the explanation in SAP help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The addition USER-COMMAND can be used to assign a function code fcode to the parameter. The function code fcode must be directly specified and may have a maximum length of 20 characters. &lt;/P&gt;&lt;P&gt;To evaluate the function code, an interface work area of the structure SSCRFIELDS from the ABAP Dictionary must be declared using the statement TABLES. &lt;/P&gt;&lt;P&gt;When the user selects the checkbox on the selection screen, the runtime environment triggers the event AT SELECTION-SCREEN and transfers the function code fcode to the component ucomm of the interface work area sscrfields. &lt;/P&gt;&lt;P&gt;If a function code used in the GUI status of the selection screen is specified for fcode, the selection screen processing is affected accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sathar&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sathar RA on Oct 1, 2008 10:48 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 08:47:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503100#M1065433</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T08:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503101#M1065434</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Roberto,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  try it this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;parameters: p_date type sy-datum,
p_chec1 as checkbox user-command aaa1,
p_chec2 as checkbox user-command aaa2,
p_chec3 as checkbox user-command aaa3.

at selection-screen.


if sy-ucomm = 'AAA1'.

  message 'p_chec1 is checked' type 'S'.

elseif sy-ucomm = 'AAA2'.

  message 'p_chec2 is checked' type 'S'.

elseif sy-ucomm = 'AAA3'.

  message 'p_chec3 is checked' type 'S'.
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;With luck,&lt;/P&gt;&lt;P&gt;Pritam.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 09:04:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503101#M1065434</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T09:04:33Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503102#M1065435</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tks a lot for the message,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i tried and it's run only with "AT SELECTION-SCREEN".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Unfortunatly, I have to use AT SELECTION-SCREEN OUTPUT ( i have to disable screen option ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and with AT SELECTION-SCREEN OUTPUT that structure is empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea ??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 12:27:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503102#M1065435</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T12:27:49Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503103#M1065436</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please try whether this will work for you..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TABLES: sscrfields.
data: gv_ucomm type sy-ucomm.

AT SELECTION-SCREEN.

gv_ucomm = sscrfields-ucomm.

AT SELECTION-SCREEN OUTPUT.

case gv_ucomm.

when 'AAA1'.

when 'AAA2'.

when 'AAA3'.

endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sathar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Oct 2008 06:08:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503103#M1065436</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-06T06:08:33Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503104#M1065437</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try out this:-&lt;/P&gt;&lt;P&gt;&lt;/P&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;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------" /&gt; SELECTION SCREEN DETAILS -&lt;HR originaltext="----------------------------" /&gt;&lt;P&gt;&lt;/P&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;&lt;/P&gt;&lt;P&gt;***Selection criteria for the account type&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF BLOCK a1 WITH FRAME TITLE text-t01.&lt;/P&gt;&lt;P&gt;PARAMETERS :    p_glacc AS CHECKBOX USER-COMMAND ucom,&lt;/P&gt;&lt;P&gt;                p_cc    AS CHECKBOX USER-COMMAND ucom,&lt;/P&gt;&lt;P&gt;                p_pc    AS CHECKBOX USER-COMMAND ucom.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***Selection criteria for general filtering&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF BLOCK a2 WITH FRAME TITLE text-t02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_kokrs    FOR  zusf_cc_chg_hist-kokrs&lt;/P&gt;&lt;P&gt;                           NO-EXTENSION   NO INTERVALS DEFAULT 'US00',&lt;/P&gt;&lt;P&gt;                                                    "CO Area&lt;/P&gt;&lt;P&gt;                s_bukrs    FOR zusf_gl_change-bukrs ,      "Company Code&lt;/P&gt;&lt;P&gt;                s_kostl    FOR  zusf_cc_chg_hist-kostl,     "Cost Center&lt;/P&gt;&lt;P&gt;                s_saknr    FOR  zusf_gl_change-saknr,     "G/L Account&lt;/P&gt;&lt;P&gt;                s_prctr    FOR  zusf_pc_change-prctr,     "Profit Center&lt;/P&gt;&lt;P&gt;                s_cdate    FOR  zusf_cc_chg_hist-cdate&lt;/P&gt;&lt;P&gt;                           NO-EXTENSION  NO INTERVALS,    "Changed on&lt;/P&gt;&lt;P&gt;                s_req      FOR  trdyse01cm-username&lt;/P&gt;&lt;P&gt;                           NO-EXTENSION  NO INTERVALS,     "Requester&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;               s_create   FOR  zusf_pc_change-name&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                           NO-EXTENSION NO INTERVALS,     "Created by&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                s_create   FOR  trdyse01cm-username&lt;/P&gt;&lt;P&gt;                            NO-EXTENSION NO INTERVALS,     "Created by&lt;/P&gt;&lt;P&gt;                s_appr     FOR  zusf_cc_chg_hist-appname&lt;/P&gt;&lt;P&gt;                         NO-EXTENSION   NO INTERVALS.     "Approved by&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN:&lt;/P&gt;&lt;P&gt;                 END OF BLOCK a2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN OUTPUT.&lt;/P&gt;&lt;P&gt;***If only g/l account is selected.&lt;/P&gt;&lt;P&gt;***display only those fileds which&lt;/P&gt;&lt;P&gt;***are in the Record requested changes for GL Account&lt;/P&gt;&lt;P&gt;  IF NOT p_glacc IS INITIAL .&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-name ='S_BUKRS-LOW'&lt;/P&gt;&lt;P&gt;         OR screen-name ='S_BUKRS-HIGH'&lt;/P&gt;&lt;P&gt;         OR screen-name ='%_S_BUKRS_%_APP_%-VALU_PUSH'&lt;/P&gt;&lt;P&gt;          OR screen-name ='S_SAKNR-LOW' OR screen-name ='S_SAKNR-HIGH'&lt;/P&gt;&lt;P&gt;          OR screen-name ='%_S_SAKNR_%_APP_%-VALU_PUSH'&lt;/P&gt;&lt;P&gt;         OR screen-name ='P_GLACC' OR screen-name ='P_CC'&lt;/P&gt;&lt;P&gt;         OR screen-name ='P_PC' OR screen-name ='P_RCHNG'&lt;/P&gt;&lt;P&gt;         OR screen-name = 'P_RCRT' OR screen-name = 'P_BOTH'&lt;/P&gt;&lt;P&gt;         OR screen-name ='S_CDATE-LOW'&lt;/P&gt;&lt;P&gt;         OR  screen-name ='S_REQ-LOW'&lt;/P&gt;&lt;P&gt;         OR screen-name ='S_CREATE-LOW'&lt;/P&gt;&lt;P&gt;         OR screen-name ='S_APPR-LOW'.&lt;/P&gt;&lt;P&gt;        screen-input = 1.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ELSE.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;***If both g/l account and profit center is selected&lt;/P&gt;&lt;P&gt;***display fields relevant to both of them.&lt;/P&gt;&lt;P&gt;  IF NOT p_glacc IS INITIAL AND  NOT p_pc IS INITIAL.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-name ='S_BUKRS-LOW'  OR screen-name ='S_BUKRS-HIGH'&lt;/P&gt;&lt;P&gt;          OR screen-name ='%_S_BUKRS_%_APP_%-VALU_PUSH'&lt;/P&gt;&lt;P&gt;          OR  screen-name = 'S_KOKRS-LOW'&lt;/P&gt;&lt;P&gt;          OR screen-name = 'S_KOKRS-HIGH'&lt;/P&gt;&lt;P&gt;         OR screen-name = '%_S_KORKS_%_APP_%-VALU_PUSH'&lt;/P&gt;&lt;P&gt;            OR  screen-name = 'S_PRCTR-LOW'&lt;/P&gt;&lt;P&gt;          OR screen-name ='S_PRCTR-HIGH'&lt;/P&gt;&lt;P&gt;          OR screen-name ='%_S_PRCTR_%_APP_%-VALU_PUSH'&lt;/P&gt;&lt;P&gt;          OR screen-name ='S_SAKNR-LOW' OR screen-name ='S_SAKNR-HIGH'&lt;/P&gt;&lt;P&gt;           OR screen-name ='%_S_SAKNR_%_APP_%-VALU_PUSH' OR&lt;/P&gt;&lt;P&gt;          screen-name ='P_GLACC' OR screen-name ='P_CC'&lt;/P&gt;&lt;P&gt;          OR screen-name ='P_PC' OR screen-name ='P_RCHNG'&lt;/P&gt;&lt;P&gt;          OR screen-name = 'P_RCRT' OR screen-name = 'P_BOTH'&lt;/P&gt;&lt;P&gt;            OR screen-name ='S_CDATE-LOW'&lt;/P&gt;&lt;P&gt;             OR  screen-name ='S_REQ-LOW'&lt;/P&gt;&lt;P&gt;         OR screen-name ='S_CREATE-LOW'&lt;/P&gt;&lt;P&gt;         OR screen-name ='S_APPR-LOW'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        screen-input = 1.&lt;/P&gt;&lt;P&gt;        MODIFY SCREEN.&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;Similary you can try for your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it works.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Oct 2008 06:23:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503104#M1065437</guid>
      <dc:creator>amit_singh20</dc:creator>
      <dc:date>2008-10-06T06:23:48Z</dc:date>
    </item>
    <item>
      <title>Re: Checkbox as user command in report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503105#M1065438</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tks Sathar,&lt;/P&gt;&lt;P&gt;I solved my problem!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Oct 2008 09:19:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkbox-as-user-command-in-report/m-p/4503105#M1065438</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-07T09:19:29Z</dc:date>
    </item>
  </channel>
</rss>

