<?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: What is function group? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515724#M845613</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;check out this link..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION MODULES:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;It is a modularization technique.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;It can be called from any different clients.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;It can return a value.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION GROUP:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is a container of user-defined function modules. Function modules created should be specified a function group, where it can be accessed globally then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To create a function group, use following navigations:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE80 -&amp;gt; Select Function Group from drop-down list box -&amp;gt; Specify function group name starting with Z or Y -&amp;gt; Press Enter -&amp;gt; Click on Yes to create object -&amp;gt; Enter short description -&amp;gt; Save under a package -&amp;gt; Assign a request number -&amp;gt; A function group is created in a function library.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES OF FUNCTION MODULES:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. NORMAL FUNCTION MODULE - It can be called only from within the same client.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. REMOTE-ENABLED FUNCTION MODULE - It can be called either from within the same client or different client.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Navigations to create a function module:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE37 -&amp;gt; Opens Function Builder Screen -&amp;gt; Specify function module name starting with Z or Y -&amp;gt; Click on Create -&amp;gt; Opens an interface -&amp;gt; Specify function group -&amp;gt; Enter short description -&amp;gt; Click on Continue -&amp;gt; Discard the message -&amp;gt; Opens Function Builder Interface -&amp;gt; In the IMPORT tab button, specify the following parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A TYPE I&lt;/P&gt;&lt;P&gt;B TYPE I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the EXPORT tab button, specify the following parameter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C TYPE I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the SOURCE CODE tab button, write the following arithmetic operation statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C = A + B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save the FM -&amp;gt; Activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To invoke the function module from the program, use 'CTRL+F6' shortcut key. Write the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : X TYPE I VALUE '100', Y TYPE I VALUE '200', Z TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZBASKAR' (CTRL+F6)&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   A             = X&lt;/P&gt;&lt;P&gt;   B             = Y&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   C             =  Z  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE Z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate -&amp;gt; Execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PASSING INTERNAL TABLE AS AN ARGUMENT:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a FM with the above navigations. In the TABLES tab button, specify the following parameter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB LIKE KNA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the SOURCE CODE tab button, specify the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; ITAB-KUNNR, ITAB-NAME1, ITAB-LAND1, ITAB-ORT01.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the SE38 editor, write the following code to pass internal table as an argument:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA KTAB LIKE KNA1 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM KNA1 INTO TABLE KTAB .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZBASKAR'&lt;/P&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;   ITAB          =       KTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate -&amp;gt; Execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TO CHANGE THE VALUE OR CHARACTER OF A VALUE (UPPERCASE TO LOWER CASE OR VICE VERSA):&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on CHANGING tab button, specify the following parameter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STR TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the SOURCE CODE tab button, specify the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE STR TO UPPER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the SE38 editor, write the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA A(10) VALUE 'karthik'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZBASKAR'&lt;/P&gt;&lt;P&gt; CHANGING&lt;/P&gt;&lt;P&gt;   STR           =    A .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate -&amp;gt; Execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTION HANDLING IN FUNCTION MODULE:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on EXCEPTIONS tab button, specify the following parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLE_LESS_SIZE&lt;/P&gt;&lt;P&gt;TABLE_MORE_SIZE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on SOURCE CODE tab button, specify the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-TFILL &amp;lt; 10.&lt;/P&gt;&lt;P&gt;RAISE TABLE_LESS_SIZE.&lt;/P&gt;&lt;P&gt;ELSEIF SY-TFILL &amp;gt; 10.&lt;/P&gt;&lt;P&gt;RAISE TABLE_MORE_SIZE.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In SE38 editor, write the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA KTAB LIKE KNA1 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM KNA1 INTO TABLE KTAB UP TO 5 ROWS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZBASKAR'&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   TABLE_LESS_SIZE       = 1&lt;/P&gt;&lt;P&gt;   TABLE_MORE_SIZE       = 2&lt;/P&gt;&lt;P&gt;   OTHERS                = 3 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE KTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 1.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'INTERNAL TABLE SIZE IS LESS'.&lt;/P&gt;&lt;P&gt;ELSEIF SY-SUBRC = 2.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'INTERNAL TABLE SIZE IS MORE'.&lt;/P&gt;&lt;P&gt;ELSEIF SY-SUBRC = 3.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'INTERNAL TABLE HAS CORRECT NUMBER OF VALUES'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some of the common function modules used in BDC and Reports:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC_OPEN_GROUP&lt;/P&gt;&lt;P&gt;BDC_CLOSE_GROUP&lt;/P&gt;&lt;P&gt;BDC_INSERT&lt;/P&gt;&lt;P&gt;UPLOAD&lt;/P&gt;&lt;P&gt;DOWNLOAD&lt;/P&gt;&lt;P&gt;WS_UPLOAD&lt;/P&gt;&lt;P&gt;WS_DOWNLOAD&lt;/P&gt;&lt;P&gt;REUSE_ALV_GRID_DISPLAY&lt;/P&gt;&lt;P&gt;REUSE_ALV_LIST_DISPLAY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps u,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arunsri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Arunsri on Mar 4, 2008 10:41 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Mar 2008 09:40:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-04T09:40:19Z</dc:date>
    <item>
      <title>What is function group?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515722#M845611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is function group? what is the purpose of it while creating function module .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;Edited by: Alvaro Tejada Galindo on Mar 4, 2008 3:14 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 09:34:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515722#M845611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T09:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: What is function group?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515723#M845612</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;FUNCTION GROUP:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is a container of user-defined function modules. Function modules created should be specified a function group, where it can be accessed globally then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To create a function group, use following navigations:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE80 -&amp;gt; Select Function Group from drop-down list box -&amp;gt; Specify function group name starting with Z or Y -&amp;gt; Press Enter -&amp;gt; Click on Yes to create object -&amp;gt; Enter short description -&amp;gt; Save under a package -&amp;gt; Assign a request number -&amp;gt; A function group is created in a function library.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 09:40:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515723#M845612</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T09:40:15Z</dc:date>
    </item>
    <item>
      <title>Re: What is function group?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515724#M845613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;check out this link..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/9f/db988735c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION MODULES:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;It is a modularization technique.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;It can be called from any different clients.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;It can return a value.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FUNCTION GROUP:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is a container of user-defined function modules. Function modules created should be specified a function group, where it can be accessed globally then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To create a function group, use following navigations:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE80 -&amp;gt; Select Function Group from drop-down list box -&amp;gt; Specify function group name starting with Z or Y -&amp;gt; Press Enter -&amp;gt; Click on Yes to create object -&amp;gt; Enter short description -&amp;gt; Save under a package -&amp;gt; Assign a request number -&amp;gt; A function group is created in a function library.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES OF FUNCTION MODULES:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. NORMAL FUNCTION MODULE - It can be called only from within the same client.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. REMOTE-ENABLED FUNCTION MODULE - It can be called either from within the same client or different client.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Navigations to create a function module:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="---------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SE37 -&amp;gt; Opens Function Builder Screen -&amp;gt; Specify function module name starting with Z or Y -&amp;gt; Click on Create -&amp;gt; Opens an interface -&amp;gt; Specify function group -&amp;gt; Enter short description -&amp;gt; Click on Continue -&amp;gt; Discard the message -&amp;gt; Opens Function Builder Interface -&amp;gt; In the IMPORT tab button, specify the following parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A TYPE I&lt;/P&gt;&lt;P&gt;B TYPE I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the EXPORT tab button, specify the following parameter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C TYPE I&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the SOURCE CODE tab button, write the following arithmetic operation statement:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;C = A + B.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save the FM -&amp;gt; Activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To invoke the function module from the program, use 'CTRL+F6' shortcut key. Write the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : X TYPE I VALUE '100', Y TYPE I VALUE '200', Z TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZBASKAR' (CTRL+F6)&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;P&gt;   A             = X&lt;/P&gt;&lt;P&gt;   B             = Y&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   C             =  Z  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE Z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate -&amp;gt; Execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PASSING INTERNAL TABLE AS AN ARGUMENT:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a FM with the above navigations. In the TABLES tab button, specify the following parameter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITAB LIKE KNA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the SOURCE CODE tab button, specify the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; ITAB-KUNNR, ITAB-NAME1, ITAB-LAND1, ITAB-ORT01.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the SE38 editor, write the following code to pass internal table as an argument:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA KTAB LIKE KNA1 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM KNA1 INTO TABLE KTAB .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZBASKAR'&lt;/P&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;   ITAB          =       KTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate -&amp;gt; Execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TO CHANGE THE VALUE OR CHARACTER OF A VALUE (UPPERCASE TO LOWER CASE OR VICE VERSA):&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on CHANGING tab button, specify the following parameter:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;STR TYPE C.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the SOURCE CODE tab button, specify the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSLATE STR TO UPPER CASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the SE38 editor, write the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA A(10) VALUE 'karthik'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZBASKAR'&lt;/P&gt;&lt;P&gt; CHANGING&lt;/P&gt;&lt;P&gt;   STR           =    A .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate -&amp;gt; Execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTION HANDLING IN FUNCTION MODULE:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on EXCEPTIONS tab button, specify the following parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLE_LESS_SIZE&lt;/P&gt;&lt;P&gt;TABLE_MORE_SIZE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on SOURCE CODE tab button, specify the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-TFILL &amp;lt; 10.&lt;/P&gt;&lt;P&gt;RAISE TABLE_LESS_SIZE.&lt;/P&gt;&lt;P&gt;ELSEIF SY-TFILL &amp;gt; 10.&lt;/P&gt;&lt;P&gt;RAISE TABLE_MORE_SIZE.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In SE38 editor, write the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA KTAB LIKE KNA1 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM KNA1 INTO TABLE KTAB UP TO 5 ROWS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZBASKAR'&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   TABLE_LESS_SIZE       = 1&lt;/P&gt;&lt;P&gt;   TABLE_MORE_SIZE       = 2&lt;/P&gt;&lt;P&gt;   OTHERS                = 3 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE KTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 1.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'INTERNAL TABLE SIZE IS LESS'.&lt;/P&gt;&lt;P&gt;ELSEIF SY-SUBRC = 2.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'INTERNAL TABLE SIZE IS MORE'.&lt;/P&gt;&lt;P&gt;ELSEIF SY-SUBRC = 3.&lt;/P&gt;&lt;P&gt;WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'INTERNAL TABLE HAS CORRECT NUMBER OF VALUES'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Some of the common function modules used in BDC and Reports:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDC_OPEN_GROUP&lt;/P&gt;&lt;P&gt;BDC_CLOSE_GROUP&lt;/P&gt;&lt;P&gt;BDC_INSERT&lt;/P&gt;&lt;P&gt;UPLOAD&lt;/P&gt;&lt;P&gt;DOWNLOAD&lt;/P&gt;&lt;P&gt;WS_UPLOAD&lt;/P&gt;&lt;P&gt;WS_DOWNLOAD&lt;/P&gt;&lt;P&gt;REUSE_ALV_GRID_DISPLAY&lt;/P&gt;&lt;P&gt;REUSE_ALV_LIST_DISPLAY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps u,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arunsri&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Arunsri on Mar 4, 2008 10:41 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 09:40:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515724#M845613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T09:40:19Z</dc:date>
    </item>
    <item>
      <title>Re: What is function group?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515725#M845614</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;A function module is a subroutine with the corresponding function that is centrally&lt;/P&gt;&lt;P&gt;stored in the Function Library of the SAP system. Each function module has an&lt;/P&gt;&lt;P&gt;interface for importing or exporting parameters. The main purpose of function&lt;/P&gt;&lt;P&gt;modules is their reusability. Hence, they belong to the so called reuse components.&lt;/P&gt;&lt;P&gt;Function modules are organized into function groups. Each function group is a&lt;/P&gt;&lt;P&gt;collection of function modules that have similar functions and/or process the same&lt;/P&gt;&lt;P&gt;data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A function group can contain the same components as an executable program. These&lt;/P&gt;&lt;P&gt;include:&lt;/P&gt;&lt;P&gt;Data objects These are global in relation to the function group, that is, they are visible to and&lt;/P&gt;&lt;P&gt;changeable by all function modules within the group.&lt;/P&gt;&lt;P&gt;Subroutines&lt;/P&gt;&lt;P&gt;These can be called from all function modules in the group.&lt;/P&gt;&lt;P&gt;Screens&lt;/P&gt;&lt;P&gt;These can be called from all function modules in the group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The properties of a function module include, among other things, the short description&lt;/P&gt;&lt;P&gt;and the function group it belongs to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As is the case with subroutines, a function module can contain local type and data&lt;/P&gt;&lt;P&gt;object definitions. These can only be seen within the function module.&lt;/P&gt;&lt;P&gt;The interface of a function module can contain the following elements:&lt;/P&gt;&lt;P&gt;&amp;#149; Import parameters: They can receive the values or variables of the calling&lt;/P&gt;&lt;P&gt;program when the function module is called. The optional parameters do not&lt;/P&gt;&lt;P&gt;have to be supplied with data during the call.&lt;/P&gt;&lt;P&gt;&amp;#149; Export parameters: The calling program accepts the output of the function&lt;/P&gt;&lt;P&gt;module through the assignment of a &amp;#147;receiving variable.&amp;#148; Export parameters are&lt;/P&gt;&lt;P&gt;always optional.&lt;/P&gt;&lt;P&gt;&amp;#149; Changing parameters: It is possible to pass the variables of the calling program&lt;/P&gt;&lt;P&gt;that are changed by the function module to the changing parameters.&lt;/P&gt;&lt;P&gt;&amp;#149; Exceptions: They can be triggered by the function module in certain error&lt;/P&gt;&lt;P&gt;situations and provide information on the respective processing error in the&lt;/P&gt;&lt;P&gt;function module. Exceptions should be treated by the calling program.&lt;/P&gt;&lt;P&gt;In general, the interface parameters are assigned to types from the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a program calls a function module, the entire corresponding function group is&lt;/P&gt;&lt;P&gt;loaded and the function module is executed. The function group remains loaded in&lt;/P&gt;&lt;P&gt;the working memory until the calling program is closed. Calling another function&lt;/P&gt;&lt;P&gt;module of this group is thus processed without repeat loading and with the same&lt;/P&gt;&lt;P&gt;global data of the function group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thus, if a function module that writes values to the global data of the function group is&lt;/P&gt;&lt;P&gt;called, other function modules in the same function group can access this data when&lt;/P&gt;&lt;P&gt;they are called in the same program run.&lt;/P&gt;&lt;P&gt;Apart from the global data of its function group a function module can also access its&lt;/P&gt;&lt;P&gt;own, locally defined data objects as well as its interface parameters. The latter are&lt;/P&gt;&lt;P&gt;used to accept data or return it to the calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Searching for Function Modules&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Theapplication-related search through the Application Hierarchy should be&lt;/P&gt;&lt;P&gt;used whenever you want to search for function modules within one/several&lt;/P&gt;&lt;P&gt;application components.&lt;/P&gt;&lt;P&gt;&amp;#149; You use the free search via the Repository Information System if you search for&lt;/P&gt;&lt;P&gt;function modules independent of application components.&lt;/P&gt;&lt;P&gt;&amp;#149; Theprogram-related search should be used if the function module you are&lt;/P&gt;&lt;P&gt;searching for is called within an existing program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you find a function module, you should first find out whether it has been released&lt;/P&gt;&lt;P&gt;(attributes of the function modules), because you only have the right to support and&lt;/P&gt;&lt;P&gt;upward compatibility when you use released function modules. We recommend only&lt;/P&gt;&lt;P&gt;using released function modules.&lt;/P&gt;&lt;P&gt;You can use the documentation of the function module to find out about its&lt;/P&gt;&lt;P&gt;functionality and obtain further information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Omkaram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 09:41:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515725#M845614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T09:41:19Z</dc:date>
    </item>
    <item>
      <title>Re: What is function group?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515726#M845615</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;A function module is a subroutine with the corresponding function that is centrally&lt;/P&gt;&lt;P&gt;stored in the Function Library of the SAP system. Each function module has an&lt;/P&gt;&lt;P&gt;interface for importing or exporting parameters. The main purpose of function&lt;/P&gt;&lt;P&gt;modules is their reusability. Hence, they belong to the so called reuse components.&lt;/P&gt;&lt;P&gt;Function modules are organized into function groups. Each function group is a&lt;/P&gt;&lt;P&gt;collection of function modules that have similar functions and/or process the same&lt;/P&gt;&lt;P&gt;data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A function group can contain the same components as an executable program. These&lt;/P&gt;&lt;P&gt;include:&lt;/P&gt;&lt;P&gt;Data objects These are global in relation to the function group, that is, they are visible to and&lt;/P&gt;&lt;P&gt;changeable by all function modules within the group.&lt;/P&gt;&lt;P&gt;Subroutines&lt;/P&gt;&lt;P&gt;These can be called from all function modules in the group.&lt;/P&gt;&lt;P&gt;Screens&lt;/P&gt;&lt;P&gt;These can be called from all function modules in the group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The properties of a function module include, among other things, the short description&lt;/P&gt;&lt;P&gt;and the function group it belongs to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As is the case with subroutines, a function module can contain local type and data&lt;/P&gt;&lt;P&gt;object definitions. These can only be seen within the function module.&lt;/P&gt;&lt;P&gt;The interface of a function module can contain the following elements:&lt;/P&gt;&lt;P&gt;&amp;#149; Import parameters: They can receive the values or variables of the calling&lt;/P&gt;&lt;P&gt;program when the function module is called. The optional parameters do not&lt;/P&gt;&lt;P&gt;have to be supplied with data during the call.&lt;/P&gt;&lt;P&gt;&amp;#149; Export parameters: The calling program accepts the output of the function&lt;/P&gt;&lt;P&gt;module through the assignment of a &amp;#147;receiving variable.&amp;#148; Export parameters are&lt;/P&gt;&lt;P&gt;always optional.&lt;/P&gt;&lt;P&gt;&amp;#149; Changing parameters: It is possible to pass the variables of the calling program&lt;/P&gt;&lt;P&gt;that are changed by the function module to the changing parameters.&lt;/P&gt;&lt;P&gt;&amp;#149; Exceptions: They can be triggered by the function module in certain error&lt;/P&gt;&lt;P&gt;situations and provide information on the respective processing error in the&lt;/P&gt;&lt;P&gt;function module. Exceptions should be treated by the calling program.&lt;/P&gt;&lt;P&gt;In general, the interface parameters are assigned to types from the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a program calls a function module, the entire corresponding function group is&lt;/P&gt;&lt;P&gt;loaded and the function module is executed. The function group remains loaded in&lt;/P&gt;&lt;P&gt;the working memory until the calling program is closed. Calling another function&lt;/P&gt;&lt;P&gt;module of this group is thus processed without repeat loading and with the same&lt;/P&gt;&lt;P&gt;global data of the function group.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thus, if a function module that writes values to the global data of the function group is&lt;/P&gt;&lt;P&gt;called, other function modules in the same function group can access this data when&lt;/P&gt;&lt;P&gt;they are called in the same program run.&lt;/P&gt;&lt;P&gt;Apart from the global data of its function group a function module can also access its&lt;/P&gt;&lt;P&gt;own, locally defined data objects as well as its interface parameters. The latter are&lt;/P&gt;&lt;P&gt;used to accept data or return it to the calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Searching for Function Modules&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Theapplication-related search through the Application Hierarchy should be&lt;/P&gt;&lt;P&gt;used whenever you want to search for function modules within one/several&lt;/P&gt;&lt;P&gt;application components.&lt;/P&gt;&lt;P&gt;&amp;#149; You use the free search via the Repository Information System if you search for&lt;/P&gt;&lt;P&gt;function modules independent of application components.&lt;/P&gt;&lt;P&gt;&amp;#149; Theprogram-related search should be used if the function module you are&lt;/P&gt;&lt;P&gt;searching for is called within an existing program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you find a function module, you should first find out whether it has been released&lt;/P&gt;&lt;P&gt;(attributes of the function modules), because you only have the right to support and&lt;/P&gt;&lt;P&gt;upward compatibility when you use released function modules. We recommend only&lt;/P&gt;&lt;P&gt;using released function modules.&lt;/P&gt;&lt;P&gt;You can use the documentation of the function module to find out about its&lt;/P&gt;&lt;P&gt;functionality and obtain further information.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Omkaram.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 09:41:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515726#M845615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T09:41:50Z</dc:date>
    </item>
    <item>
      <title>Re: What is function group?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515727#M845616</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;Under one function group there many similar function modules :&lt;/P&gt;&lt;P&gt;U can write global declaration in the include programs.&lt;/P&gt;&lt;P&gt;Creation :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Goto SE37-&amp;gt;Goto-&amp;gt;Function Group-&amp;gt;Create Group.&lt;/P&gt;&lt;P&gt;- Give the function group name and short text.&lt;/P&gt;&lt;P&gt;- Click SAVE button.&lt;/P&gt;&lt;P&gt;- Activate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Case1 : While creating fngrp it will ask u the package name.&lt;/P&gt;&lt;P&gt;First check wht r the fngrp's existed under tht &lt;/P&gt;&lt;P&gt;package.If any include program is inactive open&lt;/P&gt;&lt;P&gt;tht program and activate it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-"The top include is inactive in function group"&lt;/P&gt;&lt;P&gt;Actually this is the case will occur while exex the&lt;/P&gt;&lt;P&gt;Function module. Bcaz under one fngrp there&lt;/P&gt;&lt;P&gt;will be so many fnmodules.Tht u hav to open tht &lt;/P&gt;&lt;P&gt;fnmodule n Goto-&amp;gt;MainProgram there u hav 2&lt;/P&gt;&lt;P&gt;check the include program which is not active &lt;/P&gt;&lt;P&gt;and make it as activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Jagadeesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 09:42:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515727#M845616</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T09:42:11Z</dc:date>
    </item>
    <item>
      <title>Re: What is function group?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515728#M845617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;every function module is assigned for the function group ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;means for hr you may create a function group,&lt;/P&gt;&lt;P&gt;for mm you may create a gfunction group,&lt;/P&gt;&lt;P&gt;like that ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;venkat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Mar 4, 2008 3:15 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 09:42:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515728#M845617</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T09:42:24Z</dc:date>
    </item>
    <item>
      <title>Re: What is function group?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515729#M845618</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;Please refer to the link below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/9f/db992335c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/9f/db992335c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sriram Ponna.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Mar 2008 10:15:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-function-group/m-p/3515729#M845618</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-04T10:15:19Z</dc:date>
    </item>
  </channel>
</rss>

