<?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: function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3298295#M789384</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI srinivas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This FM is used for saving the modifyed data in alv output and it can save it to ztable .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex: DATA: BEGIN OF ITAB OCCURS 0 WITH HEADER LINE, &lt;/P&gt;&lt;P&gt;SELECT. &lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE EKKO. &lt;/P&gt;&lt;P&gt;DATA: END OF ITAB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In fieldcat declaration, make your desired field attribute editable. &lt;/P&gt;&lt;P&gt;Ex: FIELDCAT-EDIT = 'X'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In layout declaration, declare your selection indicator from the ITAB. &lt;/P&gt;&lt;P&gt;Ex: p_layouts-sel_mode = 'A'. &lt;/P&gt;&lt;P&gt;p_layouts-box_fname = 'SELECT'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In user-command form, declare the following codes to check if there's a change in ALV. &lt;/P&gt;&lt;P&gt;data it_grid TYPE REF TO cl_gui_alv_grid. &lt;/P&gt;&lt;P&gt;data p_valid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR' &lt;/P&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;P&gt;e_repid = sy-repid &lt;/P&gt;&lt;P&gt;e_grid = it_grid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD it_grid-&amp;gt;check_changed_data &lt;/P&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;P&gt;e_valid = p_valid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if P_VALID = 'X'. Your ALV has been changed and may proceed to your next logic..... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;hitesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Feb 2008 05:10:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-05T05:10:57Z</dc:date>
    <item>
      <title>function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3298294#M789383</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;what is the use of this FM GET_GLOBALS_FROM_SLVC_FULLSCR&lt;/P&gt;&lt;P&gt;any one pls tell me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points wil be given for right answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Feb 2008 05:06:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3298294#M789383</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-05T05:06:19Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3298295#M789384</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI srinivas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This FM is used for saving the modifyed data in alv output and it can save it to ztable .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex: DATA: BEGIN OF ITAB OCCURS 0 WITH HEADER LINE, &lt;/P&gt;&lt;P&gt;SELECT. &lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE EKKO. &lt;/P&gt;&lt;P&gt;DATA: END OF ITAB. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In fieldcat declaration, make your desired field attribute editable. &lt;/P&gt;&lt;P&gt;Ex: FIELDCAT-EDIT = 'X'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In layout declaration, declare your selection indicator from the ITAB. &lt;/P&gt;&lt;P&gt;Ex: p_layouts-sel_mode = 'A'. &lt;/P&gt;&lt;P&gt;p_layouts-box_fname = 'SELECT'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In user-command form, declare the following codes to check if there's a change in ALV. &lt;/P&gt;&lt;P&gt;data it_grid TYPE REF TO cl_gui_alv_grid. &lt;/P&gt;&lt;P&gt;data p_valid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'GET_GLOBALS_FROM_SLVC_FULLSCR' &lt;/P&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;P&gt;e_repid = sy-repid &lt;/P&gt;&lt;P&gt;e_grid = it_grid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD it_grid-&amp;gt;check_changed_data &lt;/P&gt;&lt;P&gt;IMPORTING &lt;/P&gt;&lt;P&gt;e_valid = p_valid. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if P_VALID = 'X'. Your ALV has been changed and may proceed to your next logic..... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;hitesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Feb 2008 05:10:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3298295#M789384</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-05T05:10:57Z</dc:date>
    </item>
    <item>
      <title>Re: function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3298296#M789385</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Hitesh,&lt;/P&gt;&lt;P&gt;your answer is good,&lt;/P&gt;&lt;P&gt;but thing is what need of that method. after calling FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;best regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Feb 2008 05:24:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-module/m-p/3298296#M789385</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-05T05:24:41Z</dc:date>
    </item>
  </channel>
</rss>

