<?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 module pool save icon in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-save-icon/m-p/1491094#M228489</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;i have a module pool program where it's used for creating,modifing a business object. i have a save icon in application tool bar to save the code .&lt;/P&gt;&lt;P&gt;but the problem here is in the modification part where  i have a table control and the data which is modified is being saved correctly but i have another icon(not in app tool bar) where it's used to delete a particular row in the table control. and when iam saving it, the row is not being deleted from the database table .can anyone help me in this issue.&lt;/P&gt;&lt;P&gt;PAI&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0110 INPUT.&lt;/P&gt;&lt;P&gt;  case ok_code.&lt;/P&gt;&lt;P&gt;       when 'DELCON'.&lt;/P&gt;&lt;P&gt;      perform delete_condition_row.&lt;/P&gt;&lt;P&gt;      refresh control 'TAB_COND' from screen '1004'.&lt;/P&gt;&lt;P&gt;  endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " USER_COMMAND_0110  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM delete_join_row .&lt;/P&gt;&lt;P&gt;   DATA L_SELLINE          LIKE SY-STEPL.&lt;/P&gt;&lt;P&gt;   GET CURSOR LINE L_SELLINE.&lt;/P&gt;&lt;P&gt;   DELETE g_TAB_join_itab INDEX L_SELLINE.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " delete_join_row&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_1000 INPUT.&lt;/P&gt;&lt;P&gt;case ok_code.&lt;/P&gt;&lt;P&gt;  when 'save'.&lt;/P&gt;&lt;P&gt;      data zgnx_cond_tab type table of zgnx_condition.&lt;/P&gt;&lt;P&gt;      data zgnx_cond_wa type zgnx_condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      refresh: zgnx_cond_tab.&lt;/P&gt;&lt;P&gt;      clear: zgnx_cond_wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      loop at g_TAB_COND_itab&lt;/P&gt;&lt;P&gt;      into g_TAB_COND_wa.&lt;/P&gt;&lt;P&gt;        move-corresponding g_TAB_COND_wa to zgnx_cond_wa.&lt;/P&gt;&lt;P&gt;        zgnx_cond_wa-obj_name = SCR1000-OBJ_NAME.&lt;/P&gt;&lt;P&gt;        append zgnx_cond_wa to zgnx_cond_tab.&lt;/P&gt;&lt;P&gt;      endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     MODIFY zgnx_condition from table zgnx_cond_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;This is the code that i have used.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 26 Aug 2006 04:45:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-26T04:45:10Z</dc:date>
    <item>
      <title>module pool save icon</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-save-icon/m-p/1491094#M228489</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;i have a module pool program where it's used for creating,modifing a business object. i have a save icon in application tool bar to save the code .&lt;/P&gt;&lt;P&gt;but the problem here is in the modification part where  i have a table control and the data which is modified is being saved correctly but i have another icon(not in app tool bar) where it's used to delete a particular row in the table control. and when iam saving it, the row is not being deleted from the database table .can anyone help me in this issue.&lt;/P&gt;&lt;P&gt;PAI&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_0110 INPUT.&lt;/P&gt;&lt;P&gt;  case ok_code.&lt;/P&gt;&lt;P&gt;       when 'DELCON'.&lt;/P&gt;&lt;P&gt;      perform delete_condition_row.&lt;/P&gt;&lt;P&gt;      refresh control 'TAB_COND' from screen '1004'.&lt;/P&gt;&lt;P&gt;  endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " USER_COMMAND_0110  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM delete_join_row .&lt;/P&gt;&lt;P&gt;   DATA L_SELLINE          LIKE SY-STEPL.&lt;/P&gt;&lt;P&gt;   GET CURSOR LINE L_SELLINE.&lt;/P&gt;&lt;P&gt;   DELETE g_TAB_join_itab INDEX L_SELLINE.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " delete_join_row&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_1000 INPUT.&lt;/P&gt;&lt;P&gt;case ok_code.&lt;/P&gt;&lt;P&gt;  when 'save'.&lt;/P&gt;&lt;P&gt;      data zgnx_cond_tab type table of zgnx_condition.&lt;/P&gt;&lt;P&gt;      data zgnx_cond_wa type zgnx_condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      refresh: zgnx_cond_tab.&lt;/P&gt;&lt;P&gt;      clear: zgnx_cond_wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      loop at g_TAB_COND_itab&lt;/P&gt;&lt;P&gt;      into g_TAB_COND_wa.&lt;/P&gt;&lt;P&gt;        move-corresponding g_TAB_COND_wa to zgnx_cond_wa.&lt;/P&gt;&lt;P&gt;        zgnx_cond_wa-obj_name = SCR1000-OBJ_NAME.&lt;/P&gt;&lt;P&gt;        append zgnx_cond_wa to zgnx_cond_tab.&lt;/P&gt;&lt;P&gt;      endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     MODIFY zgnx_condition from table zgnx_cond_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;This is the code that i have used.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Aug 2006 04:45:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-save-icon/m-p/1491094#M228489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-26T04:45:10Z</dc:date>
    </item>
    <item>
      <title>Re: module pool save icon</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-save-icon/m-p/1491095#M228490</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;What is screen 1000 and screen 0110. R u calling subscreens, if yes address me the screen sequence and the logic..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Aug 2006 05:38:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-save-icon/m-p/1491095#M228490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-26T05:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: module pool save icon</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-save-icon/m-p/1491096#M228491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have not coded to delete from the db table, only from the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

FORM delete_join_row .
DATA L_SELLINE LIKE SY-STEPL.
GET CURSOR LINE L_SELLINE.
&amp;lt;b&amp;gt;DELETE g_TAB_join_itab INDEX L_SELLINE.&amp;lt;/b&amp;gt;
ENDFORM. "


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Aug 2006 06:10:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-save-icon/m-p/1491096#M228491</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-08-26T06:10:54Z</dc:date>
    </item>
    <item>
      <title>Re: module pool save icon</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-save-icon/m-p/1491097#M228492</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;can anybody give me exact idea about module pool and d/b table creation with navigation by taking a simple example like emp table?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 26 Aug 2006 09:10:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-save-icon/m-p/1491097#M228492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-26T09:10:11Z</dc:date>
    </item>
    <item>
      <title>Re: module pool save icon</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-save-icon/m-p/1491098#M228493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Rich,&lt;/P&gt;&lt;P&gt;I know that i didn't code for updating the internal table into the database.can u suggest me how can i code it.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 Aug 2006 04:40:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/module-pool-save-icon/m-p/1491098#M228493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-28T04:40:54Z</dc:date>
    </item>
  </channel>
</rss>

