<?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: Create a class definition and implementation inside PBO module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-class-definition-and-implementation-inside-pbo-module/m-p/7606335#M1568828</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create it globally in se24 or particularly for that transaction. Or access it via grouped function modules.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Jan 2011 12:38:15 GMT</pubDate>
    <dc:creator>kesavadas_thekkillath</dc:creator>
    <dc:date>2011-01-24T12:38:15Z</dc:date>
    <item>
      <title>Create a class definition and implementation inside PBO module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-class-definition-and-implementation-inside-pbo-module/m-p/7606334#M1568827</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;&lt;/P&gt;&lt;P&gt;I am having 5 screens in a report. Now for the fifth screen i have created a separate transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the class definition and implementation of screen 5 for method &lt;STRONG&gt;on_dropdown_clicked&lt;/STRONG&gt; is written in main program. &lt;/P&gt;&lt;P&gt;so if i run the transaction that program is not called and hence the class and the methods are not called(bez i am using separate txn for the 5th screen).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please tell me how to call this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ranjith&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jan 2011 11:00:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-class-definition-and-implementation-inside-pbo-module/m-p/7606334#M1568827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-24T11:00:18Z</dc:date>
    </item>
    <item>
      <title>Re: Create a class definition and implementation inside PBO module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-class-definition-and-implementation-inside-pbo-module/m-p/7606335#M1568828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create it globally in se24 or particularly for that transaction. Or access it via grouped function modules.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jan 2011 12:38:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-class-definition-and-implementation-inside-pbo-module/m-p/7606335#M1568828</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2011-01-24T12:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: Create a class definition and implementation inside PBO module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-class-definition-and-implementation-inside-pbo-module/m-p/7606336#M1568829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please tell me how i can call the below definition and implementation ? Please give me the full explanation since i am new to this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Here is the code in Main pgm:&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_toolbar_event_receiver DEFINITION.&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;    METHODS: on_function_selected&lt;/P&gt;&lt;P&gt;               FOR EVENT function_selected OF cl_gui_toolbar&lt;/P&gt;&lt;P&gt;                 IMPORTING fcode,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;             on_dropdown_clicked&lt;/P&gt;&lt;P&gt;               FOR EVENT dropdown_clicked OF cl_gui_toolbar&lt;/P&gt;&lt;P&gt;                 IMPORTING fcode&lt;/P&gt;&lt;P&gt;                           posx&lt;/P&gt;&lt;P&gt;                           posy.&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "lcl_toolbar_event_receiver DEFINITION&lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;      CLASS lcl_toolbar_event_receiver IMPLEMENTATION&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;*&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;**&lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLASS lcl_toolbar_event_receiver IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;  METHOD on_function_selected.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    PERFORM create_node USING ''.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'IQS1_GET_TMP_NUMBER'&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        e_qmnum = p_aggre.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "on_function_selected&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Jan 2011 12:56:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-class-definition-and-implementation-inside-pbo-module/m-p/7606336#M1568829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-24T12:56:12Z</dc:date>
    </item>
    <item>
      <title>Re: Create a class definition and implementation inside PBO module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-class-definition-and-implementation-inside-pbo-module/m-p/7606337#M1568830</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;I am not sure what you mean by another transaction here but I am assuming that it implies that it is defined in some other object. Can you not define the class below in the other object as well? I suppose that should solve your problem.&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;Ramneek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 26 Jan 2011 17:08:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/create-a-class-definition-and-implementation-inside-pbo-module/m-p/7606337#M1568830</guid>
      <dc:creator>Ramneek</dc:creator>
      <dc:date>2011-01-26T17:08:10Z</dc:date>
    </item>
  </channel>
</rss>

