<?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: Dynpros directly by methods in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800119#M1467325</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; I am currently working with Dynpros in an OO context as well. &lt;/P&gt;&lt;P&gt;&amp;gt; For me it was fine to define a global Interface and build up on this Interface a local class which works as a "Dynpro Handler". &amp;gt; So my global classes can actually access the Dynpro environment and I do not have to code that much non OO Code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In practice it doesn't seem very different, but the style is certainly better.&lt;/P&gt;&lt;P&gt;I'll try to do it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 28 Apr 2010 08:05:17 GMT</pubDate>
    <dc:creator>former_member1161170</dc:creator>
    <dc:date>2010-04-28T08:05:17Z</dc:date>
    <item>
      <title>Dynpros directly by methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800113#M1467319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have just read this interesting article, written by Thomas Jung:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"OO ABAP Dynpro Programming"&lt;/P&gt;&lt;P&gt;/people/thomas.jung3/blog/2005/09/08/oo-abap-dynpro-programming&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I have understood well:&lt;/P&gt;&lt;P&gt;1) I can't use dynpros directly by methods&lt;/P&gt;&lt;P&gt;2) Thomas suggests to get a dynpro by a function module, and after he can use the dynpro calling the function module&lt;/P&gt;&lt;P&gt;3) It isn't the faster technique (I could get everything only by the function module, without a class), but he suggests it only to get more excercises as it possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are these three things correct? &lt;/P&gt;&lt;P&gt;Or it is possible to use dynpros directly by methods?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 21 Apr 2010 16:29:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800113#M1467319</guid>
      <dc:creator>former_member1161170</dc:creator>
      <dc:date>2010-04-21T16:29:48Z</dc:date>
    </item>
    <item>
      <title>Re: Dynpros directly by methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800114#M1467320</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;1) that is only correct für global classes (the ones you define with the class builder), local classes can use dynpros&lt;/P&gt;&lt;P&gt;   directly with commands like "call screen"&lt;/P&gt;&lt;P&gt;2) it is a common workaround for global classes, yes&lt;/P&gt;&lt;P&gt;3) you could. nobody says you have to develop with oo-techniques, you can achive the same results by using classic abap&lt;/P&gt;&lt;P&gt;   or a mixture of abap-oo and classic abap. on the otherhand. maybe check out this article about abap oo. &lt;A href="http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/37c5db90-0201-0010-3a9b-d0a5288f3c15?quicklink=index&amp;amp;overridelayout=true" target="test_blank"&gt;http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/37c5db90-0201-0010-3a9b-d0a5288f3c15?quicklink=index&amp;amp;overridelayout=true&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i agree with you that its not a good style to use a function module in oo-programming. but the classis sap gui is based on dynpros and has come a long way. for example webdynpro is completely "pure oo".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;greetings,&lt;/P&gt;&lt;P&gt;dsp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 07:52:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800114#M1467320</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T07:52:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dynpros directly by methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800115#M1467321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt;1) that is only correct für global classes (the ones you define with the class builder), local classes can use dynpros directly with commands like "call screen"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes. I'ts my case I'm making a global class by se24 / se80.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt;2) it is a common workaround for global classes, yes&lt;/P&gt;&lt;P&gt;&amp;gt;3) you could. nobody says you have to develop with oo-techniques, you can achive the same results by using classic abap or a mixture of abap-oo and classic abap. on the otherhand. maybe check out this article about abap oo. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm new in Abap: I knew Java before Abap so now, if it is possible, i prefer Abap OO than Abap classic. But when I find tis limits I'm discouraged.&lt;/P&gt;&lt;P&gt;The article is very interesting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;P&gt;i agree with you that its not a good style to use a function module in oo-programming. but the classis sap gui is based on dynpros and has come a long way. for example webdynpro is completely "pure oo".&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I must work by 4.6c. I'm sure that Web Dynpros are very interesting, but they're only a dream this year.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Grettings.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 08:38:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800115#M1467321</guid>
      <dc:creator>former_member1161170</dc:creator>
      <dc:date>2010-04-22T08:38:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dynpros directly by methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800116#M1467322</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;im in the same situation. i developed oo before i reached the apap world, so i was quite used to this coding-stylet. sadly there are several points where you need to go back and use classic abap elements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;maybe you could just write a small local class für dynpro handling and keep on using your global class, but i never tried this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;greetings,&lt;/P&gt;&lt;P&gt;dsp&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: dsp on Apr 22, 2010 12:00 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Apr 2010 10:00:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800116#M1467322</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-22T10:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dynpros directly by methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800117#M1467323</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;I am currently working with Dynpros in an OO context as well. &lt;/P&gt;&lt;P&gt;For me it was fine to define a global Interface and build up on this Interface a local class which works as a "Dynpro Handler". So my global classes can actually access the Dynpro environment and I do not have to code that much non OO Code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Sebastian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Apr 2010 11:55:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800117#M1467323</guid>
      <dc:creator>sebastianNoe</dc:creator>
      <dc:date>2010-04-27T11:55:35Z</dc:date>
    </item>
    <item>
      <title>Re: Dynpros directly by methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800118#M1467324</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;thats a really great idea, ill try this out in my next project.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Apr 2010 14:10:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800118#M1467324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-04-27T14:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: Dynpros directly by methods</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800119#M1467325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; I am currently working with Dynpros in an OO context as well. &lt;/P&gt;&lt;P&gt;&amp;gt; For me it was fine to define a global Interface and build up on this Interface a local class which works as a "Dynpro Handler". &amp;gt; So my global classes can actually access the Dynpro environment and I do not have to code that much non OO Code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In practice it doesn't seem very different, but the style is certainly better.&lt;/P&gt;&lt;P&gt;I'll try to do it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 28 Apr 2010 08:05:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynpros-directly-by-methods/m-p/6800119#M1467325</guid>
      <dc:creator>former_member1161170</dc:creator>
      <dc:date>2010-04-28T08:05:17Z</dc:date>
    </item>
  </channel>
</rss>

