<?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 make alv editable using checkbox in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956521#M1966902</link>
    <description>&lt;P&gt;Below is the screenshot of my output.&lt;/P&gt;
  &lt;P&gt;My requirement is whenever I will click on a particular checkbox, the corresponding entry in the fields Branch and Percentage should become editable ( right now the whole field is showing as editable)&lt;/P&gt;
  &lt;P&gt;How can I write code for editing specific fields for multiple(or single) entries selected through checkbox?&lt;/P&gt;
  &lt;P&gt;Also the changes should be reflected in the custom table.&lt;/P&gt;
  &lt;P&gt;Here's my code:&lt;/P&gt;
  &lt;P&gt;report zalv25.&lt;BR /&gt;type-pools : slis.&lt;BR /&gt;types :begin of ty_final,&lt;BR /&gt;check(1),&lt;BR /&gt;zstudid1 type zstud1-zstudid1,&lt;BR /&gt;zstudname1 type zstud1-zstudname1,&lt;BR /&gt;zstudage type zstud1-zstudage,&lt;BR /&gt;zaddress type zstud1-zaddress,&lt;BR /&gt;zmobile type zstud1-zmobile,&lt;BR /&gt;zcompany type zstud1-zcompany,&lt;BR /&gt;zbranch type zstud1-zbranch,&lt;BR /&gt;zper type zstud1-zper,&lt;BR /&gt;end of ty_final.&lt;BR /&gt; &lt;BR /&gt;data : wa_zstud1 type zstud1,&lt;BR /&gt;it_zstud1 type table of zstud1 with header line.&lt;BR /&gt; &lt;BR /&gt;data : it_field type slis_t_fieldcat_alv,&lt;BR /&gt;wa_field type slis_fieldcat_alv,&lt;BR /&gt;wa_layout type slis_layout_alv,&lt;BR /&gt;w_repid like sy-repid.&lt;BR /&gt;w_repid = sy-repid.&lt;BR /&gt; &lt;BR /&gt;selection-screen begin of block b1 with frame title text-001.&lt;BR /&gt;parameters : id type zstud1-zstudid1.&lt;BR /&gt;selection-screen end of block b1.&lt;BR /&gt; &lt;BR /&gt;start-of-selection.&lt;BR /&gt; &lt;BR /&gt;select * from zstud1 into table it_zstud1.&lt;BR /&gt; &lt;BR /&gt;end-of-selection.&lt;BR /&gt; &lt;BR /&gt;perform field_catalog.&lt;BR /&gt;perform alv_display.&lt;BR /&gt; &lt;BR /&gt;form field_catalog.&lt;BR /&gt;wa_field-fieldname = 'CHECK'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;wa_field-outputlen = 1.&lt;BR /&gt;wa_field-input = 'X'.&lt;BR /&gt;wa_field-checkbox = 'X'.&lt;BR /&gt;wa_field-edit = 'X'.&lt;BR /&gt;* wa_field-hotspot = 'X'.&lt;BR /&gt;wa_field-seltext_l = 'Check '.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt; &lt;BR /&gt;wa_field-fieldname = 'ZSTUDID1'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;wa_field-seltext_l = 'ID '.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt; &lt;BR /&gt;wa_field-fieldname = 'ZSTUDNAME1'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;wa_field-seltext_l = 'NAME '.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt; &lt;BR /&gt;wa_field-fieldname = 'ZSTUDAGE'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt; &lt;BR /&gt;wa_field-fieldname = 'ZADDRESS'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;wa_field-seltext_l = 'ADDRESS '.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt; &lt;BR /&gt;wa_field-fieldname = 'ZMOBILE'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;wa_field-seltext_l = 'MOBILE '.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt; &lt;BR /&gt;wa_field-fieldname = 'ZBRANCH'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;wa_field-input = 'check'.&lt;BR /&gt;wa_field-edit = 'check'.&lt;BR /&gt;wa_field-seltext_l = 'BRANCH '.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt; &lt;BR /&gt;wa_field-fieldname = 'ZPER'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;wa_field-input = 'check'.&lt;BR /&gt;wa_field-edit = 'check'.&lt;BR /&gt;wa_field-seltext_l = 'PERCENTAGE '.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt;endform.&lt;BR /&gt; &lt;BR /&gt;form alv_display.&lt;BR /&gt; &lt;BR /&gt;call function 'REUSE_ALV_GRID_DISPLAY'&lt;BR /&gt;exporting&lt;BR /&gt;* I_INTERFACE_CHECK = ' '&lt;BR /&gt;* I_BYPASSING_BUFFER = ' '&lt;BR /&gt;* I_BUFFER_ACTIVE = ' '&lt;BR /&gt;i_callback_program = ' w_repid'&lt;BR /&gt;* I_CALLBACK_PF_STATUS_SET = ' '&lt;BR /&gt;i_callback_user_command = 'USER_COMMAND'&lt;BR /&gt;* I_CALLBACK_TOP_OF_PAGE = ' '&lt;BR /&gt;* I_CALLBACK_HTML_TOP_OF_PAGE = ' '&lt;BR /&gt;* I_CALLBACK_HTML_END_OF_LIST = ' '&lt;BR /&gt;* I_STRUCTURE_NAME =&lt;BR /&gt;* I_BACKGROUND_ID = ' '&lt;BR /&gt;* I_GRID_TITLE =&lt;BR /&gt;* I_GRID_SETTINGS =&lt;BR /&gt;is_layout = wa_layout&lt;BR /&gt;it_fieldcat = it_field&lt;BR /&gt;* IT_EXCLUDING =&lt;BR /&gt;* IT_SPECIAL_GROUPS =&lt;BR /&gt;* IT_SORT =&lt;BR /&gt;* IT_FILTER =&lt;BR /&gt;* IS_SEL_HIDE =&lt;BR /&gt;* I_DEFAULT = 'X'&lt;BR /&gt;* I_SAVE = ' '&lt;BR /&gt;* IS_VARIANT =&lt;BR /&gt;* IT_EVENTS =&lt;BR /&gt;* IT_EVENT_EXIT =&lt;BR /&gt;* IS_PRINT =&lt;BR /&gt;* IS_REPREP_ID =&lt;BR /&gt;* I_SCREEN_START_COLUMN = 0&lt;BR /&gt;* I_SCREEN_START_LINE = 0&lt;BR /&gt;* I_SCREEN_END_COLUMN = 0&lt;BR /&gt;* I_SCREEN_END_LINE = 0&lt;BR /&gt;* I_HTML_HEIGHT_TOP = 0&lt;BR /&gt;* I_HTML_HEIGHT_END = 0&lt;BR /&gt;* IT_ALV_GRAPHICS =&lt;BR /&gt;* IT_HYPERLINK =&lt;BR /&gt;* IT_ADD_FIELDCAT =&lt;BR /&gt;* IT_EXCEPT_QINFO =&lt;BR /&gt;* IR_SALV_FULLSCREEN_ADAPTER =&lt;BR /&gt;* O_PREVIOUS_SRAL_HANDLER =&lt;BR /&gt;* IMPORTING&lt;BR /&gt;* E_EXIT_CAUSED_BY_CALLER =&lt;BR /&gt;* ES_EXIT_CAUSED_BY_USER =&lt;BR /&gt;tables&lt;BR /&gt;t_outtab = it_zstud1&lt;BR /&gt;* EXCEPTIONS&lt;BR /&gt;* PROGRAM_ERROR = 1&lt;BR /&gt;* OTHERS = 2&lt;BR /&gt;.&lt;BR /&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt;* Implement suitable error handling here&lt;BR /&gt;endif.&lt;BR /&gt; &lt;BR /&gt;endform.&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1698616-untitled.png" /&gt;&lt;/P&gt;</description>
    <pubDate>Wed, 26 Jun 2019 11:55:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2019-06-26T11:55:40Z</dc:date>
    <item>
      <title>make alv editable using checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956521#M1966902</link>
      <description>&lt;P&gt;Below is the screenshot of my output.&lt;/P&gt;
  &lt;P&gt;My requirement is whenever I will click on a particular checkbox, the corresponding entry in the fields Branch and Percentage should become editable ( right now the whole field is showing as editable)&lt;/P&gt;
  &lt;P&gt;How can I write code for editing specific fields for multiple(or single) entries selected through checkbox?&lt;/P&gt;
  &lt;P&gt;Also the changes should be reflected in the custom table.&lt;/P&gt;
  &lt;P&gt;Here's my code:&lt;/P&gt;
  &lt;P&gt;report zalv25.&lt;BR /&gt;type-pools : slis.&lt;BR /&gt;types :begin of ty_final,&lt;BR /&gt;check(1),&lt;BR /&gt;zstudid1 type zstud1-zstudid1,&lt;BR /&gt;zstudname1 type zstud1-zstudname1,&lt;BR /&gt;zstudage type zstud1-zstudage,&lt;BR /&gt;zaddress type zstud1-zaddress,&lt;BR /&gt;zmobile type zstud1-zmobile,&lt;BR /&gt;zcompany type zstud1-zcompany,&lt;BR /&gt;zbranch type zstud1-zbranch,&lt;BR /&gt;zper type zstud1-zper,&lt;BR /&gt;end of ty_final.&lt;BR /&gt; &lt;BR /&gt;data : wa_zstud1 type zstud1,&lt;BR /&gt;it_zstud1 type table of zstud1 with header line.&lt;BR /&gt; &lt;BR /&gt;data : it_field type slis_t_fieldcat_alv,&lt;BR /&gt;wa_field type slis_fieldcat_alv,&lt;BR /&gt;wa_layout type slis_layout_alv,&lt;BR /&gt;w_repid like sy-repid.&lt;BR /&gt;w_repid = sy-repid.&lt;BR /&gt; &lt;BR /&gt;selection-screen begin of block b1 with frame title text-001.&lt;BR /&gt;parameters : id type zstud1-zstudid1.&lt;BR /&gt;selection-screen end of block b1.&lt;BR /&gt; &lt;BR /&gt;start-of-selection.&lt;BR /&gt; &lt;BR /&gt;select * from zstud1 into table it_zstud1.&lt;BR /&gt; &lt;BR /&gt;end-of-selection.&lt;BR /&gt; &lt;BR /&gt;perform field_catalog.&lt;BR /&gt;perform alv_display.&lt;BR /&gt; &lt;BR /&gt;form field_catalog.&lt;BR /&gt;wa_field-fieldname = 'CHECK'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;wa_field-outputlen = 1.&lt;BR /&gt;wa_field-input = 'X'.&lt;BR /&gt;wa_field-checkbox = 'X'.&lt;BR /&gt;wa_field-edit = 'X'.&lt;BR /&gt;* wa_field-hotspot = 'X'.&lt;BR /&gt;wa_field-seltext_l = 'Check '.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt; &lt;BR /&gt;wa_field-fieldname = 'ZSTUDID1'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;wa_field-seltext_l = 'ID '.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt; &lt;BR /&gt;wa_field-fieldname = 'ZSTUDNAME1'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;wa_field-seltext_l = 'NAME '.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt; &lt;BR /&gt;wa_field-fieldname = 'ZSTUDAGE'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt; &lt;BR /&gt;wa_field-fieldname = 'ZADDRESS'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;wa_field-seltext_l = 'ADDRESS '.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt; &lt;BR /&gt;wa_field-fieldname = 'ZMOBILE'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;wa_field-seltext_l = 'MOBILE '.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt; &lt;BR /&gt;wa_field-fieldname = 'ZBRANCH'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;wa_field-input = 'check'.&lt;BR /&gt;wa_field-edit = 'check'.&lt;BR /&gt;wa_field-seltext_l = 'BRANCH '.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt; &lt;BR /&gt;wa_field-fieldname = 'ZPER'.&lt;BR /&gt;wa_field-tabname = 'IT_ZSTUD1'.&lt;BR /&gt;wa_field-input = 'check'.&lt;BR /&gt;wa_field-edit = 'check'.&lt;BR /&gt;wa_field-seltext_l = 'PERCENTAGE '.&lt;BR /&gt;append wa_field to it_field.&lt;BR /&gt;clear wa_field.&lt;BR /&gt;endform.&lt;BR /&gt; &lt;BR /&gt;form alv_display.&lt;BR /&gt; &lt;BR /&gt;call function 'REUSE_ALV_GRID_DISPLAY'&lt;BR /&gt;exporting&lt;BR /&gt;* I_INTERFACE_CHECK = ' '&lt;BR /&gt;* I_BYPASSING_BUFFER = ' '&lt;BR /&gt;* I_BUFFER_ACTIVE = ' '&lt;BR /&gt;i_callback_program = ' w_repid'&lt;BR /&gt;* I_CALLBACK_PF_STATUS_SET = ' '&lt;BR /&gt;i_callback_user_command = 'USER_COMMAND'&lt;BR /&gt;* I_CALLBACK_TOP_OF_PAGE = ' '&lt;BR /&gt;* I_CALLBACK_HTML_TOP_OF_PAGE = ' '&lt;BR /&gt;* I_CALLBACK_HTML_END_OF_LIST = ' '&lt;BR /&gt;* I_STRUCTURE_NAME =&lt;BR /&gt;* I_BACKGROUND_ID = ' '&lt;BR /&gt;* I_GRID_TITLE =&lt;BR /&gt;* I_GRID_SETTINGS =&lt;BR /&gt;is_layout = wa_layout&lt;BR /&gt;it_fieldcat = it_field&lt;BR /&gt;* IT_EXCLUDING =&lt;BR /&gt;* IT_SPECIAL_GROUPS =&lt;BR /&gt;* IT_SORT =&lt;BR /&gt;* IT_FILTER =&lt;BR /&gt;* IS_SEL_HIDE =&lt;BR /&gt;* I_DEFAULT = 'X'&lt;BR /&gt;* I_SAVE = ' '&lt;BR /&gt;* IS_VARIANT =&lt;BR /&gt;* IT_EVENTS =&lt;BR /&gt;* IT_EVENT_EXIT =&lt;BR /&gt;* IS_PRINT =&lt;BR /&gt;* IS_REPREP_ID =&lt;BR /&gt;* I_SCREEN_START_COLUMN = 0&lt;BR /&gt;* I_SCREEN_START_LINE = 0&lt;BR /&gt;* I_SCREEN_END_COLUMN = 0&lt;BR /&gt;* I_SCREEN_END_LINE = 0&lt;BR /&gt;* I_HTML_HEIGHT_TOP = 0&lt;BR /&gt;* I_HTML_HEIGHT_END = 0&lt;BR /&gt;* IT_ALV_GRAPHICS =&lt;BR /&gt;* IT_HYPERLINK =&lt;BR /&gt;* IT_ADD_FIELDCAT =&lt;BR /&gt;* IT_EXCEPT_QINFO =&lt;BR /&gt;* IR_SALV_FULLSCREEN_ADAPTER =&lt;BR /&gt;* O_PREVIOUS_SRAL_HANDLER =&lt;BR /&gt;* IMPORTING&lt;BR /&gt;* E_EXIT_CAUSED_BY_CALLER =&lt;BR /&gt;* ES_EXIT_CAUSED_BY_USER =&lt;BR /&gt;tables&lt;BR /&gt;t_outtab = it_zstud1&lt;BR /&gt;* EXCEPTIONS&lt;BR /&gt;* PROGRAM_ERROR = 1&lt;BR /&gt;* OTHERS = 2&lt;BR /&gt;.&lt;BR /&gt;if sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt;* Implement suitable error handling here&lt;BR /&gt;endif.&lt;BR /&gt; &lt;BR /&gt;endform.&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1698616-untitled.png" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 11:55:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956521#M1966902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-06-26T11:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: make alv editable using checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956522#M1966903</link>
      <description>&lt;P&gt;Hi, Bhavana&lt;/P&gt;&lt;P&gt;Try using REUSE_ALV_POPUP_TO_SELECT below eg., GR Quantity is editable...&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 12:11:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956522#M1966903</guid>
      <dc:creator>Abinathsiva</dc:creator>
      <dc:date>2019-06-26T12:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: make alv editable using checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956523#M1966904</link>
      <description>&lt;P&gt;Weird initialization of those 1-character fields:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;wa_field-input = 'check'.&lt;BR /&gt;wa_field-edit = 'check'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Do you mean:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;wa_field-input = 'X'.
wa_field-edit = 'X'.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Wed, 26 Jun 2019 12:55:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956523#M1966904</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-06-26T12:55:40Z</dc:date>
    </item>
    <item>
      <title>Re: make alv editable using checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956524#M1966905</link>
      <description>&lt;P&gt;I think you can have such a control only by using the ALV grid control class CL_GUI_ALV_GRID. The questions "how to trigger code upon ticking a checkbox" (use HOTSPOT + event hotspot_click) and "how to make editable a given cell" (STYLEFNAME component/LVC_T_STYL) have already been asked in the forum.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 13:06:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956524#M1966905</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-06-26T13:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: make alv editable using checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956525#M1966906</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I found some program  &lt;A href="https://answers.sap.com/questions/3823848/edit-one-cell-in-alvs-based-on-some-condition.html"&gt;Edit One Cell In Alvs Based On Some Condition&lt;/A&gt;, plz check it will work for you. You have to modify this program any event instead of the condition . &lt;/P&gt;&lt;P&gt;&lt;A href="https://answers.sap.com/questions/6802064/editable-alv-on-click-of-button.html"&gt;Editable alv on click of button&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nawa.&lt;/P&gt;</description>
      <pubDate>Wed, 26 Jun 2019 14:04:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956525#M1966906</guid>
      <dc:creator>Nawanandana</dc:creator>
      <dc:date>2019-06-26T14:04:09Z</dc:date>
    </item>
    <item>
      <title>Re: make alv editable using checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956526#M1966907</link>
      <description>&lt;P&gt;I am still not able to solve my issue. I tried everything but I am still not getting how I should do it.&lt;/P&gt;&lt;P&gt;Can someone at least tell me the syntax of how I should make the checkboxes functional by giving particular condition to make changes in selected records ? &lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 11:06:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956526#M1966907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-06-28T11:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: make alv editable using checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956527#M1966908</link>
      <description>&lt;P&gt;&lt;A href="https://answers.sap.com/users/791812/bhavanaaa.html"&gt;Bhavana Rajput&lt;/A&gt; do you use CL_GUI_ALV_GRID now?&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 12:44:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956527#M1966908</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-06-28T12:44:29Z</dc:date>
    </item>
    <item>
      <title>Re: make alv editable using checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956528#M1966909</link>
      <description>&lt;P&gt;Hi Bhavana,&lt;/P&gt;&lt;P&gt;follow below steps&lt;/P&gt;&lt;P&gt;i. create 1 gui button for the report (tcode se41),whenever records are selected then user has to click edit button. then only usercommand will trigger.&lt;/P&gt;&lt;P&gt;ii.implement user command subroutine with following type of code(use your own internal tables).&lt;/P&gt;&lt;P&gt;loop selected records and use styles to enable/disable for particular fields.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  LOOP AT IT_EKKO INTO WA_EKKO.
    IF WA_EKKO-NETPR GT 10.
      LS_STYLEROW-FIELDNAME = 'NETPR' .
      LS_STYLEROW-STYLE = CL_GUI_ALV_GRID=&amp;gt;MC_STYLE_DISABLED.
      "set field to disabled
      APPEND LS_STYLEROW TO WA_EKKO-FIELD_STYLE.
      MODIFY IT_EKKO FROM WA_EKKO.
    ENDIF.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 28 Jun 2019 12:44:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956528#M1966909</guid>
      <dc:creator>babu_gavi</dc:creator>
      <dc:date>2019-06-28T12:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: make alv editable using checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956529#M1966910</link>
      <description>&lt;P&gt;Just to add more context to your answer, it's valid for CL_GUI_ALV_GRID, not for REUSE_ALV_GRID_DISPLAY.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 13:16:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956529#M1966910</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-06-28T13:16:42Z</dc:date>
    </item>
    <item>
      <title>Re: make alv editable using checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956530#M1966911</link>
      <description>&lt;P&gt;By the way, your checkbox column is redundant with the first "box column", which can be also used to select the lines.&lt;/P&gt;</description>
      <pubDate>Fri, 28 Jun 2019 13:41:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956530#M1966911</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-06-28T13:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: make alv editable using checkbox</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956531#M1966912</link>
      <description>&lt;P&gt;Yes. My issue is solved now.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Sat, 29 Jun 2019 08:14:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-alv-editable-using-checkbox/m-p/11956531#M1966912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-06-29T08:14:37Z</dc:date>
    </item>
  </channel>
</rss>

