<?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: Class visibility in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425352#M1844983</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Egor,&lt;/P&gt;&lt;P&gt;can you point out, wehre in your opinion is the added value for use of local classes in your scenario?&lt;/P&gt;&lt;P&gt;Actually, i have some difficulties to fathom, what it is exactly, that you want to accomplish.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Are you talking about 50+ different classes or&lt;/LI&gt;&lt;LI&gt;are you talking about 50+ instances of one class or&lt;/LI&gt;&lt;LI&gt;are you talking about 50+ classes derived from one another&lt;/LI&gt;&lt;LI&gt;???&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The usual scenario, where you'd have some slightly different mechanics at work through the same interface, would imply. that you&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;build an interface with everything public, including a factory method and the reference variables as class attribute&lt;/LI&gt;&lt;LI&gt;build a master-class, which would implement all common methods and the factory method&lt;/LI&gt;&lt;LI&gt;derived from master-class one to many classes for the varying tasks&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;The factory method would then have to decide, which actual implementation to invoke and store the resulting instance object in class attribute and/or return them to caller.&lt;/P&gt;&lt;P&gt;Any program using this construction, would only know the interface, or at most the master-class, nevertheless all implementation would be globally with "create private"&lt;/P&gt;&lt;P&gt;Serialization is no reason for local implementation. It will work with this as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With your concept of local classes, the receiving program could never know, which methods(arguments) or attributes to work. I really don't see, why anyone would want to go that way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards - Jörg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 01 Jul 2014 12:59:23 GMT</pubDate>
    <dc:creator>jrg_wulf</dc:creator>
    <dc:date>2014-07-01T12:59:23Z</dc:date>
    <item>
      <title>Class visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425343#M1844974</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;Is in ABAP any possibility to declare classes in section "Class rel. local definitions" and declare public methods or public types with them? I want to create dozen classes and main class-factory which will return some of them by request. Create everything in public will takes a lot of time, and not so beatiful&amp;nbsp; like(pseudo code):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Class zcl_factory.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Public section.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPES:&amp;nbsp; t_point TYPE REF TO LOCAL CLASS lcl_point.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; " in my case it is about 50+ classes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CLASS-METHODS: get_point RETURNING VALUE(point) TYPE t_point. &lt;/P&gt;&lt;P&gt;EndClass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And using:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: lv_point TYPE zcl_factory=&amp;gt;t_point.&lt;/P&gt;&lt;P&gt;lv_point = zcl_factory=&amp;gt;get_point().&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*do something with lv_point&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 07:05:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425343#M1844974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-01T07:05:32Z</dc:date>
    </item>
    <item>
      <title>Re: Class visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425344#M1844975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Egor,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am still not clear with your requirement, I am sorry friend. Please correct me if I am wrong anywhere below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you are trying to create class factory which is having around 50 class definitions in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;whenever you need any one object reference of those 50, you will call the factory method to get the object reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is it correct Egor ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bhaskar &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 07:37:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425344#M1844975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-01T07:37:11Z</dc:date>
    </item>
    <item>
      <title>Re: Class visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425345#M1844976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you're right, but i cannot find any possibility to do that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 07:42:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425345#M1844976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-01T07:42:31Z</dc:date>
    </item>
    <item>
      <title>Re: Class visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425346#M1844977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Egor,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Class zcl_factory.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Public section.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPES:&amp;nbsp; t_point TYPE REF TO LOCAL CLASS lcl_point.&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;/CODE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;CODE&gt;
&lt;P&gt;Egor Titov wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;BR /&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Class zcl_factory.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Public section.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPES:&amp;nbsp; t_point TYPE REF TO LOCAL CLASS &lt;/P&gt;
&lt;/CODE&gt;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;/P&gt;
&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;i think , we can not refer local class reference to to global class variable.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 07:52:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425346#M1844977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-01T07:52:24Z</dc:date>
    </item>
    <item>
      <title>Re: Class visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425347#M1844978</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Egor,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok that's great, I wanted to know further about your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as you mentioned you need to access 50 classes through the class factory, are those 50 classes are having different functionalities with them ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lets suppose they are different and each class is having different method functionalities associated with it, then with our defining them individually how do we make them work ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please correct if I am getting deviated from your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Bhaskar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 07:55:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425347#M1844978</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-01T07:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: Class visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425348#M1844979</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Egor,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The visibility of a local class is restricted to the program where it is defined.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;Class of an ABAP program that can be viewed and used statically from the &lt;SPAN style="text-decoration: underline;"&gt;ABAP program only&lt;/SPAN&gt;. Local classes can be created in all &lt;SPAN style="text-decoration: underline;"&gt;program types&lt;/SPAN&gt;, with the exception of interface pools and type groups.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ref - &lt;A href="http://help.sap.com/abapdocu_740/en/abenlocal_class_glosry.htm" title="http://help.sap.com/abapdocu_740/en/abenlocal_class_glosry.htm"&gt;ABAP Keyword Documentation&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Btw i am not sure what do you mean by this - &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;Create everything in public will takes a lot of time, and not so beatiful&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;From my experience i can say that it'S far more easy to create &amp;amp; maintain a global class than a local class(via SE80). But if you are using Eclipse may be there's not much difference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 08:02:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425348#M1844979</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2014-07-01T08:02:44Z</dc:date>
    </item>
    <item>
      <title>Re: Class visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425349#M1844980</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I planed create internal class through factory, change some attributes, add it to container class, which will hold all instances and then serialize this container in xml with all added classes and according to their attributes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 08:13:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425349#M1844980</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-01T08:13:44Z</dc:date>
    </item>
    <item>
      <title>Re: Class visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425350#M1844981</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for reply, but it very strange why it is possible to create public internal type in class, but not public internal class-type in class(&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 08:21:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425350#M1844981</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-01T08:21:06Z</dc:date>
    </item>
    <item>
      <title>Re: Class visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425351#M1844982</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;Egor Titov wrote:&lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;Thank you for reply, but it very strange why it is possible to create public internal type in class, but not &lt;SPAN style="text-decoration: underline;"&gt;&lt;EM&gt;public internal class-type&lt;/EM&gt;&lt;/SPAN&gt; in class&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;What do you mean by this? Local class types are not part of the Public section of the class, so there is no straightforward way of accessing them from outside. (Read - &lt;A href="http://help.sap.com/abapdocu_740/en/abenclasses.htm" title="http://help.sap.com/abapdocu_740/en/abenclasses.htm"&gt;ABAP Keyword Documentation&lt;/A&gt;).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Further you can see that local classes, macros are all kept in separate includes. You can use the menu function GoTo to check them out -&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/487821" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/487822" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you try to access the local definitions/implementations you'll get a popup telling you how these elements are separated from each other.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/487832" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use local classes very rarely and mostly for modularization purposes (as helper classes). And certainly if i had your requirement i would not think of creating local classes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 08:44:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425351#M1844982</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2014-07-01T08:44:13Z</dc:date>
    </item>
    <item>
      <title>Re: Class visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425352#M1844983</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Egor,&lt;/P&gt;&lt;P&gt;can you point out, wehre in your opinion is the added value for use of local classes in your scenario?&lt;/P&gt;&lt;P&gt;Actually, i have some difficulties to fathom, what it is exactly, that you want to accomplish.&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Are you talking about 50+ different classes or&lt;/LI&gt;&lt;LI&gt;are you talking about 50+ instances of one class or&lt;/LI&gt;&lt;LI&gt;are you talking about 50+ classes derived from one another&lt;/LI&gt;&lt;LI&gt;???&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;The usual scenario, where you'd have some slightly different mechanics at work through the same interface, would imply. that you&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;build an interface with everything public, including a factory method and the reference variables as class attribute&lt;/LI&gt;&lt;LI&gt;build a master-class, which would implement all common methods and the factory method&lt;/LI&gt;&lt;LI&gt;derived from master-class one to many classes for the varying tasks&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;The factory method would then have to decide, which actual implementation to invoke and store the resulting instance object in class attribute and/or return them to caller.&lt;/P&gt;&lt;P&gt;Any program using this construction, would only know the interface, or at most the master-class, nevertheless all implementation would be globally with "create private"&lt;/P&gt;&lt;P&gt;Serialization is no reason for local implementation. It will work with this as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With your concept of local classes, the receiving program could never know, which methods(arguments) or attributes to work. I really don't see, why anyone would want to go that way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards - Jörg&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 12:59:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425352#M1844983</guid>
      <dc:creator>jrg_wulf</dc:creator>
      <dc:date>2014-07-01T12:59:23Z</dc:date>
    </item>
    <item>
      <title>Re: Class visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425353#M1844984</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for reply.&lt;/P&gt;&lt;P&gt;Now I realize I chose a wrong way.&lt;/P&gt;&lt;P&gt;I had a more than 50 different classes, and i didn't want to make them global - from my point of view, it would take more time then just write all of them in local class include, another reason - all this classes &lt;SPAN class="short_text" lang="en"&gt;&lt;SPAN class="hps"&gt;has very short time of life, in all cases they all should be created in one method and than destroyed at the end of this method(it is just a helpful classes). So I didn't see reasons to make them global.&lt;/SPAN&gt;&lt;SPAN class="hps"&gt;&lt;/SPAN&gt;&lt;SPAN class="hps"&gt;&lt;BR /&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 01 Jul 2014 15:43:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425353#M1844984</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-07-01T15:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: Class visibility</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425354#M1844985</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;See if this desigh is what you need ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.scn.sap.com/wiki/display/ABAP/ABAP+Objects+Design+Patterns+-+Abstract+Factory" title="http://wiki.scn.sap.com/wiki/display/ABAP/ABAP+Objects+Design+Patterns+-+Abstract+Factory"&gt;ABAP Objects Design Patterns - Abstract Factory - ABAP Development - SCN Wiki&lt;/A&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>Tue, 01 Jul 2014 16:15:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/class-visibility/m-p/10425354#M1844985</guid>
      <dc:creator>rosenberg_eitan</dc:creator>
      <dc:date>2014-07-01T16:15:08Z</dc:date>
    </item>
  </channel>
</rss>

