<?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: Checkboxes in ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkboxes-in-alv/m-p/8722605#M1672860</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this thread&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/message/8516321#8516321" title="http://scn.sap.com/message/8516321#8516321"&gt;http://scn.sap.com/message/8516321#8516321&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 May 2012 04:24:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-05-18T04:24:35Z</dc:date>
    <item>
      <title>Checkboxes in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkboxes-in-alv/m-p/8722604#M1672859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; I need some help in below mentioned issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I have to add 3 columns&amp;nbsp; of check boxes in my ALV Report&lt;/P&gt;&lt;P&gt;2. on bases of sy-uname ckeckboxes of this columns should be enabled or disabled &lt;/P&gt;&lt;P&gt;3. on bases of the data in a particular field in a row, check boxes of that row should be enabled or disabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now, &lt;/P&gt;&lt;P&gt;To make columns enabled or disabled i can use field catalog.&lt;/P&gt;&lt;P&gt;If there is only one column of check boxes and I have to make enable or disable checkbox of a row I can use &lt;SPAN style="color: #000000;"&gt;IS_LAYOUT-BOX_FIELDNAME&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, my confusion is with 3 columns how can I make enable or disable checkboxes of a row????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me with this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #ff0000;"&gt;&lt;STRONG style="font-family: book antiqua,palatino;"&gt;Moderator message : Not enough re-search before posting, discussion locked&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Vinod Kumar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2012 04:10:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkboxes-in-alv/m-p/8722604#M1672859</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-18T04:10:20Z</dc:date>
    </item>
    <item>
      <title>Re: Checkboxes in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkboxes-in-alv/m-p/8722605#M1672860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this thread&lt;/P&gt;&lt;P&gt;&lt;A _jive_internal="true" href="https://answers.sap.com/message/8516321#8516321" title="http://scn.sap.com/message/8516321#8516321"&gt;http://scn.sap.com/message/8516321#8516321&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2012 04:24:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkboxes-in-alv/m-p/8722605#M1672860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-18T04:24:35Z</dc:date>
    </item>
    <item>
      <title>Re: Checkboxes in ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/checkboxes-in-alv/m-p/8722606#M1672861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;box fieldname will display like boxes on the left side of ALV grid. with which u can select rows of alv grid.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;i guess it is not possible to disable them.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Instead use: in field catalogue:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;wa_fcat-fieldname = 'MATNR'.&lt;/P&gt;&lt;P&gt;wa_fcat-checkbox = 'X'.&lt;/P&gt;&lt;P&gt;if alpha eq 1.&amp;nbsp;&amp;nbsp; &amp;lt;-- your condition to make the records editable conditionally.&lt;/P&gt;&lt;P&gt;wa_fcat-edit = 'X'.&lt;/P&gt;&lt;P&gt;endif&lt;/P&gt;&lt;P&gt;append wa_fcat to it_fcat.&lt;/P&gt;&lt;P&gt;clear wa_fcat.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this logic will make the entire column editable or non editable.&lt;/P&gt;&lt;P&gt;revert back if feel some problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2012 04:42:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/checkboxes-in-alv/m-p/8722606#M1672861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-05-18T04:42:18Z</dc:date>
    </item>
  </channel>
</rss>

