<?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: Check BOX problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-problem/m-p/2001840#M407599</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sreedhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For reading the contents of line use HIDE or GET CURSOR FIELD statement. And then delete the value from database. It will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashven&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Mar 2007 05:14:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-05T05:14:00Z</dc:date>
    <item>
      <title>Check BOX problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-problem/m-p/2001836#M407595</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;Iam Displaying the output in ALV format with check boxes, in the output, if we check 2 check boxes and press delete pushbuttons, the values has to delete from th e DB table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here my prob is iam getting the output with check boxes,. but when i select 1 check box and press delete, the record was not deleted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For reading the check box lines i used the command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ LINE sy-index FIELD VALUE i_kssk1-flag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but this is not working. please any one suggest me the other solutions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Sreedhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 05:02:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-problem/m-p/2001836#M407595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T05:02:57Z</dc:date>
    </item>
    <item>
      <title>Re: Check BOX problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-problem/m-p/2001837#M407596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the problem mite be that ur not reading the first line but reading some other line..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did u check whether ur reading the checked line or not?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 05:07:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-problem/m-p/2001837#M407596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T05:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: Check BOX problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-problem/m-p/2001838#M407597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check in debugging whether the value is getting cptured in the following code&lt;/P&gt;&lt;P&gt;READ LINE sy-index FIELD VALUE i_kssk1-flag.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check whtehr u have writte the code in user_command?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If not u need to change the same to rs_selfield TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;then read.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FORM user_command USING r_ucomm LIKE sy-ucomm
                  rs_selfield TYPE slis_selfield.
 
* Check function code
  CASE r_ucomm.
    WHEN '&amp;amp;IC1'.
*   Check field clicked on within ALVgrid report
    IF rs_selfield-fieldname = 'EBELN'.
*     Read data table, using index of row user clicked on
      READ TABLE it_ekko INTO wa_ekko INDEX rs_selfield-tabindex.
*     Set parameter ID for transaction screen field
      SET PARAMETER ID 'BES' FIELD wa_ekko-ebeln.
*     Sxecute transaction ME23N, and skip initial data entry screen
      CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.
    ENDIF.
  ENDCASE.
ENDFORM&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 05:11:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-problem/m-p/2001838#M407597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T05:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Check BOX problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-problem/m-p/2001839#M407598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can u just send ur code,so that i can understand it fully&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 05:11:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-problem/m-p/2001839#M407598</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T05:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Check BOX problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-problem/m-p/2001840#M407599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sreedhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For reading the contents of line use HIDE or GET CURSOR FIELD statement. And then delete the value from database. It will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ashven&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 05:14:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-problem/m-p/2001840#M407599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T05:14:00Z</dc:date>
    </item>
    <item>
      <title>Re: Check BOX problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-problem/m-p/2001841#M407600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sreedhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please refer to the following link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/an%20easy%20reference%20for%20alv%20grid%20control.pdf" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/an%20easy%20reference%20for%20alv%20grid%20control.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls. reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Mar 2007 05:19:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/check-box-problem/m-p/2001841#M407600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-05T05:19:59Z</dc:date>
    </item>
  </channel>
</rss>

