<?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: module pool screen editable in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-screen-editable/m-p/2609360#M598404</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 call a module from PBO for this .. and put this code in the module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Declare this in TOP include&lt;/P&gt;&lt;P&gt;DATA : WA_COLS TYPE CXTAB_COLUMN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Logic in PBO module which has to be called inside LOOP .. ENDLOOP of Table **control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE OK_CODE.&lt;/P&gt;&lt;P&gt;WHEN 'SOME'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT T_CON-COLS INTO WA_COLS.&lt;/P&gt;&lt;P&gt;     IF WA_COLS-SCREEN-NAME = 'MARA-MATNR'.&lt;/P&gt;&lt;P&gt;          WA_COLS-SCREEN-INPUT = 1.&lt;/P&gt;&lt;P&gt;          MODIFY T_CON-COLS FROM WA_COLS.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&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;&amp;lt;b&amp;gt;Reward if Helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 04 Aug 2007 10:05:32 GMT</pubDate>
    <dc:creator>varma_narayana</dc:creator>
    <dc:date>2007-08-04T10:05:32Z</dc:date>
    <item>
      <title>module pool screen editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-screen-editable/m-p/2609358#M598402</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have a module pool screen consisting of a table. i have 4 fields in that table which are not editable. i want to make one of those fields editable based on a certain input. please tell me how do i go about this. provide a pseudo code if possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Aug 2007 09:56:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-screen-editable/m-p/2609358#M598402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-04T09:56:56Z</dc:date>
    </item>
    <item>
      <title>Re: module pool screen editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-screen-editable/m-p/2609359#M598403</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frank,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check these reports, You will find code to edit/non-edit of fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;BCALV_EDIT_01 &amp;lt;/b&amp;gt;This report illustrates the simplest case of using an editable/noneditable ALV Grid Control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;BCALV_EDIT_02 &amp;lt;/b&amp;gt;This report illustrates how to set chosen cells of an ALV Grid Control editable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Aug 2007 10:04:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-screen-editable/m-p/2609359#M598403</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-04T10:04:22Z</dc:date>
    </item>
    <item>
      <title>Re: module pool screen editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-screen-editable/m-p/2609360#M598404</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 call a module from PBO for this .. and put this code in the module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Declare this in TOP include&lt;/P&gt;&lt;P&gt;DATA : WA_COLS TYPE CXTAB_COLUMN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**Logic in PBO module which has to be called inside LOOP .. ENDLOOP of Table **control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE OK_CODE.&lt;/P&gt;&lt;P&gt;WHEN 'SOME'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT T_CON-COLS INTO WA_COLS.&lt;/P&gt;&lt;P&gt;     IF WA_COLS-SCREEN-NAME = 'MARA-MATNR'.&lt;/P&gt;&lt;P&gt;          WA_COLS-SCREEN-INPUT = 1.&lt;/P&gt;&lt;P&gt;          MODIFY T_CON-COLS FROM WA_COLS.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&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;&amp;lt;b&amp;gt;Reward if Helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Aug 2007 10:05:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-screen-editable/m-p/2609360#M598404</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-08-04T10:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: module pool screen editable</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-screen-editable/m-p/2609361#M598405</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;Ans : How to go on with your problem?&lt;/P&gt;&lt;P&gt;*********************************************&lt;/P&gt;&lt;P&gt;One of the best solution is using control table- COLS and doing relevant operation on it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;provide a pseudo code if possible&lt;/P&gt;&lt;P&gt;***************************************&lt;/P&gt;&lt;P&gt;Please do the following in the SAP system...&lt;/P&gt;&lt;P&gt;0.abapdocu -&amp;gt; ABAP USER DIALOGS -&amp;gt;SCREENS -&amp;gt; COMPLEX SCREEN ELEMENTS -&amp;gt;Table control with modifications&lt;/P&gt;&lt;P&gt;report : REPORT demo_dynpro_tabcont_loop_at.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;inside it you can see in PAI &lt;/P&gt;&lt;P&gt;MODULE user_command_0100 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE save_ok.&lt;/P&gt;&lt;P&gt;    WHEN 'TOGGLE'.&lt;/P&gt;&lt;P&gt;      LOOP AT flights-cols INTO cols WHERE index GT 2.&lt;/P&gt;&lt;P&gt;        IF  cols-screen-input = '0'.&lt;/P&gt;&lt;P&gt;          cols-screen-input = '1'.&lt;/P&gt;&lt;P&gt;        ELSEIF  cols-screen-input = '1'.&lt;/P&gt;&lt;P&gt;          cols-screen-input = '0'.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;        MODIFY flights-cols FROM cols INDEX sy-tabix.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this clarifies you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward all useful aswers &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Byju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Aug 2007 10:26:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-screen-editable/m-p/2609361#M598405</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-04T10:26:38Z</dc:date>
    </item>
  </channel>
</rss>

