<?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: Use global variables from different Function Group in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826265#M1956252</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="color: #333333; font-family: arial, helvetica, sans-serif;"&gt;For this, however, the function group in question has to provide a GET_... function module, providing what others usually request for.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And this can be a problem. From time to time one is forced to do unwanted things.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Sep 2016 09:55:17 GMT</pubDate>
    <dc:creator>retired_member</dc:creator>
    <dc:date>2016-09-05T09:55:17Z</dc:date>
    <item>
      <title>Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826255#M1956242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Community,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am faced the following Issue:&lt;/P&gt;&lt;P&gt;Some FMs I use in an user exit provide data to the global variables of their Function Group A. &lt;/P&gt;&lt;P&gt;In the same user exit are also FMs from a different Function Group B called. The FMs semantically belong together, but they can not be included in Function Group A because there is no space left (restricted to 100 FMs).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any possibility to use global data from Function Group A in a FM of Function Group B?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Philipp&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2016 13:46:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826255#M1956242</guid>
      <dc:creator>philippdoelker</dc:creator>
      <dc:date>2016-09-02T13:46:41Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826256#M1956243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Philipp,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess one of the option would be to enhance one of the FM in FG'A' to call a FM in FG'B'. This way you can pass the required data from FG'A' to FG'B' and store it as global variables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vikram.M&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2016 13:57:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826256#M1956243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-09-02T13:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826257#M1956244</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you create a Function Module or a Form in the Function Group with the informaiton, the Function Modules of the other Funciton Group just call this Funciton Module or Form to get the informaton abck.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Sep 2016 14:01:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826257#M1956244</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2016-09-02T14:01:53Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826258#M1956245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Philipp,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Declare all you shared global variables in one include and make use of the (obsolete) statements BEGIN OF COMMON PART and END OF COMMON PART.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;&lt;BR /&gt;&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 10pt; font-family: 'Courier New';"&gt;&lt;STRONG&gt;DATA BEGIN OF COMMON PART [name]. &lt;BR /&gt;&amp;nbsp; ... &lt;BR /&gt;&amp;nbsp; DATA ... &lt;BR /&gt;&amp;nbsp; ... &lt;BR /&gt;DATA END OF COMMON PART [name].&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://help.sap.com/abapdocu_70/en/ABAPDATA_COMMON.htm"&gt;https://help.sap.com/abapdocu_70/en/ABAPDATA_COMMON.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use the same include in both function groups.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #333333; font-size: 12px;"&gt;Kind regards&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2016 08:02:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826258#M1956245</guid>
      <dc:creator>arseni_gallardo</dc:creator>
      <dc:date>2016-09-05T08:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826259#M1956246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;COMMON PART shouldn't be used in new developments. You know how global variables are frowned upon and considered to be bad programming? COMMON PART variables are like uber-global-variables (universal? galactic?).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is what the ABAP documentation says:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="padding-left: 30px;"&gt;&lt;EM&gt;The use of common data areas in otherwise independent programs can be very problematic, with regard to both the maintainability and the functions. Therefore, common data areas should no longer be used. The parameter interfaces of procedures are available for exchanging data between programs. &lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Frankly. if you'vet got ~100 variables in a function group and you're using many global fields within the group, you've got an issue with program design that's crying out for refactoring.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want a bad workaround while you're planning your refactoring project &lt;SPAN __jive_emoticon_name="wink" __jive_macro_name="emoticon" class="jive_emote jive_macro" src="https://community.sap.com/108/images/emoticons/wink.gif"&gt;&lt;/SPAN&gt; create function group C with your global variables, and a host of getter/setter function modules in it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2016 09:08:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826259#M1956246</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2016-09-05T09:08:02Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826260#M1956247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, there's an interesting variant of ASSIGN (...). Check the documentation (under hints ...).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2016 09:35:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826260#M1956247</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2016-09-05T09:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826261#M1956248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But is it a good idea to use it? If you're in control of the development, you should create proper interfaces.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2016 09:40:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826261#M1956248</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2016-09-05T09:40:51Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826262#M1956249</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No it isn't, but it's documented ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2016 09:43:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826262#M1956249</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2016-09-05T09:43:51Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826263#M1956250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The dynamic assign 'ASSIGN ('(SAPL...)GV_...') TO &amp;lt;LV_...&amp;gt;' is surely not a good idea. It's grabbing items from somebody else's living room. It would be much nicer to ring the bell and ask politely for the item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For this, however, the function group in question has to provide a GET_... function module, providing what others usually request for.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2016 09:46:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826263#M1956250</guid>
      <dc:creator>sapitr_entwicklung</dc:creator>
      <dc:date>2016-09-05T09:46:40Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826264#M1956251</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And it's for internal use only. Or at least my documentation says so.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2016 09:49:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826264#M1956251</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-09-05T09:49:39Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826265#M1956252</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;SPAN style="color: #333333; font-family: arial, helvetica, sans-serif;"&gt;For this, however, the function group in question has to provide a GET_... function module, providing what others usually request for.&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;And this can be a problem. From time to time one is forced to do unwanted things.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2016 09:55:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826265#M1956252</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2016-09-05T09:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826266#M1956253</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yep. The user has to take full responsibility for her actions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2016 09:56:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826266#M1956253</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2016-09-05T09:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826267#M1956254</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;Horst Keller wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Yes, there's an interesting variant of ASSIGN (...). Check the documentation (under hints ...).&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Oops! the variant-that-should-not-be-named &lt;SPAN __jive_emoticon_name="grin" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/108/images/emoticons/grin.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2016 15:49:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826267#M1956254</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2016-09-05T15:49:09Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826268#M1956255</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good morning friends.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on the ABAP documentation, you should use the functionalities of &lt;STRONG&gt;EXPORT / IMPORT in shared memory&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;SAP provides this type of functionality to share information between different memory sectors that run in the same session.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2016 17:12:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826268#M1956255</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-09-05T17:12:33Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826269#M1956256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In fact, you better use shared objects then, because with those you don't need EXPORT/IMPORT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2016 20:13:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826269#M1956256</guid>
      <dc:creator>retired_member</dc:creator>
      <dc:date>2016-09-05T20:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826270#M1956257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's correct &lt;STRONG&gt;@Horst Keller&lt;/STRONG&gt;..&amp;nbsp;&amp;nbsp;&amp;nbsp; and it is a better option too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here's some links about it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/c5/85634e53d422409f0975aa9a551297/content.htm" title="http://help.sap.com/saphelp_nw70/helpdata/en/c5/85634e53d422409f0975aa9a551297/content.htm"&gt;&lt;STRONG&gt;Shared Objects - Implementation - ABAP - Shared Objects - SAP Library&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/307d791b-3343-2e10-f78a-e1d50c7cf89a" title="http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/307d791b-3343-2e10-f78a-e1d50c7cf89a"&gt;&lt;STRONG&gt;How to Work with ABAP Shared Memory Objects | SCN&lt;/STRONG&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;What are Shared Memory Objects? The Shared Memory Objects concept is available from release 6.40 onwards. It consists of storing data in SAP memory (much like the EXPORT/IMPORT statements before ECC6), for rapid data retrieval without the need for physically reading persistent DB tables. Unlike the “old” EXPORT/IMPORT technique, however, the Shared Memory Object concept also allows for business logic to be stored (for instance, sorting or calculations based on the stored data).&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope this information can help with the original issue..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards!!&lt;/P&gt;&lt;P&gt;Gio.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2016 21:40:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826270#M1956257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-09-05T21:40:16Z</dc:date>
    </item>
    <item>
      <title>Re: Use global variables from different Function Group</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826271#M1956258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't see any need to use shared objects, because i assume both FGs are part of the same internal session (when called within the same user exit). You could just use static attributes of a global class. That's less overhead than shared objects and data won't be visible to the whole AS.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2016 06:22:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/use-global-variables-from-different-function-group/m-p/11826271#M1956258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-09-06T06:22:41Z</dc:date>
    </item>
  </channel>
</rss>

