<?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 Getting error for null object reference, while implementing class in module pool ? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690483#M31037</link>
    <description>&lt;P&gt;Hello everyone,&lt;/P&gt;
  &lt;P&gt;Please help me eliminate this error, I am new to abap. Would be very thankful for that.&lt;/P&gt;
  &lt;P&gt;SPAN { font-family: "Courier New"; font-size: 10pt; color: #000000; background: #FFFFFF; } .L0S31 { font-style: italic; color: #808080; } .L0S33 { color: #4DA619; } .L0S52 { color: #0000FF; } .L0S55 { color: #800080; } .L0S70 { color: #808080; }&lt;/P&gt;
  &lt;P&gt;class ZCL_NB_CLASS definition&lt;BR /&gt; public&lt;BR /&gt; create public .&lt;BR /&gt; &lt;BR /&gt; public section.&lt;BR /&gt; *"* public components of class ZCL_NB_CLASS&lt;BR /&gt; *"* do not include other source files here!!!&lt;BR /&gt; &lt;BR /&gt; methods DEPOSIT&lt;BR /&gt; importing&lt;BR /&gt; value(AMOUNT) type DMBTR&lt;BR /&gt; returning&lt;BR /&gt; value(NEW_BALANCE) type DMBTR .&lt;BR /&gt; methods SET_BALANCE&lt;BR /&gt; importing&lt;BR /&gt; value(AMOUNT) type DMBTR&lt;BR /&gt; returning&lt;BR /&gt; value(NEW_BALANCE) type DMBTR .&lt;BR /&gt; methods WITHDRAW&lt;BR /&gt; importing&lt;BR /&gt; value(AMOUNT) type DMBTR&lt;BR /&gt; returning&lt;BR /&gt; value(NEW_BALANCE) type DMBTR&lt;BR /&gt; exceptions&lt;BR /&gt; INSUFFICIENT_FUNDS .&lt;BR /&gt; methods MESSAGE&lt;BR /&gt; exporting&lt;BR /&gt; !MESS type BAPIRET2 .&lt;BR /&gt; protected section.&lt;BR /&gt; *"* protected components of class ZCL_NB_CLASS&lt;BR /&gt; *"* do not include other source files here!!!&lt;BR /&gt; private section.&lt;BR /&gt; *"* private components of class ZCL_NB_CLASS&lt;BR /&gt; *"* do not include other source files here!!!&lt;BR /&gt; &lt;BR /&gt; class-data BALANCE type DMBTR .&lt;BR /&gt; ENDCLASS.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; CLASS ZCL_NB_CLASS IMPLEMENTATION.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; * &amp;lt;SIGNATURE&amp;gt;---------------------------------------------------------------------------------------+&lt;BR /&gt; * | Instance Public Method ZCL_NB_CLASS-&amp;gt;DEPOSIT&lt;BR /&gt; * +-------------------------------------------------------------------------------------------------+&lt;BR /&gt; * | [---&amp;gt;] AMOUNT TYPE DMBTR&lt;BR /&gt; * | [&amp;lt;-()] NEW_BALANCE TYPE DMBTR&lt;BR /&gt; * +--------------------------------------------------------------------------------------&amp;lt;/SIGNATURE&amp;gt;&lt;BR /&gt; method DEPOSIT.&lt;BR /&gt; &lt;BR /&gt; BALANCE = balance + AMOUNT.&lt;BR /&gt; new_balance = balance.&lt;BR /&gt; &lt;BR /&gt; endmethod.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; * &amp;lt;SIGNATURE&amp;gt;---------------------------------------------------------------------------------------+&lt;BR /&gt; * | Instance Public Method ZCL_NB_CLASS-&amp;gt;MESSAGE&lt;BR /&gt; * +-------------------------------------------------------------------------------------------------+&lt;BR /&gt; * | [&amp;lt;---] MESS TYPE BAPIRET2&lt;BR /&gt; * +--------------------------------------------------------------------------------------&amp;lt;/SIGNATURE&amp;gt;&lt;BR /&gt; method MESSAGE.&lt;BR /&gt; &lt;BR /&gt; MESS-message = 'Message has been called'.&lt;BR /&gt; MESS-type = 'S'.&lt;BR /&gt; &lt;BR /&gt; endmethod.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; * &amp;lt;SIGNATURE&amp;gt;---------------------------------------------------------------------------------------+&lt;BR /&gt; * | Instance Public Method ZCL_NB_CLASS-&amp;gt;SET_BALANCE&lt;BR /&gt; * +-------------------------------------------------------------------------------------------------+&lt;BR /&gt; * | [---&amp;gt;] AMOUNT TYPE DMBTR&lt;BR /&gt; * | [&amp;lt;-()] NEW_BALANCE TYPE DMBTR&lt;BR /&gt; * +--------------------------------------------------------------------------------------&amp;lt;/SIGNATURE&amp;gt;&lt;BR /&gt; method SET_BALANCE.&lt;BR /&gt; &lt;BR /&gt; balance = new_balance.&lt;BR /&gt; &lt;BR /&gt; endmethod.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; * &amp;lt;SIGNATURE&amp;gt;---------------------------------------------------------------------------------------+&lt;BR /&gt; * | Instance Public Method ZCL_NB_CLASS-&amp;gt;WITHDRAW&lt;BR /&gt; * +-------------------------------------------------------------------------------------------------+&lt;BR /&gt; * | [---&amp;gt;] AMOUNT TYPE DMBTR&lt;BR /&gt; * | [&amp;lt;-()] NEW_BALANCE TYPE DMBTR&lt;BR /&gt; * | [EXC!] INSUFFICIENT_FUNDS&lt;BR /&gt; * +--------------------------------------------------------------------------------------&amp;lt;/SIGNATURE&amp;gt;&lt;BR /&gt; method WITHDRAW.&lt;BR /&gt; &lt;BR /&gt; IF balance GE AMOUNT.&lt;BR /&gt; balance = balance - AMOUNT.&lt;BR /&gt; NEW_BALANCE = BALANCE.&lt;BR /&gt; ELSE.&lt;BR /&gt; RAISE INSUFFICIENT_FUNDS.&lt;BR /&gt; ENDIF.&lt;BR /&gt; endmethod.&lt;BR /&gt; ENDCLASS.&lt;/P&gt;</description>
    <pubDate>Fri, 14 Dec 2018 12:23:00 GMT</pubDate>
    <dc:creator>nbitish</dc:creator>
    <dc:date>2018-12-14T12:23:00Z</dc:date>
    <item>
      <title>Getting error for null object reference, while implementing class in module pool ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690483#M31037</link>
      <description>&lt;P&gt;Hello everyone,&lt;/P&gt;
  &lt;P&gt;Please help me eliminate this error, I am new to abap. Would be very thankful for that.&lt;/P&gt;
  &lt;P&gt;SPAN { font-family: "Courier New"; font-size: 10pt; color: #000000; background: #FFFFFF; } .L0S31 { font-style: italic; color: #808080; } .L0S33 { color: #4DA619; } .L0S52 { color: #0000FF; } .L0S55 { color: #800080; } .L0S70 { color: #808080; }&lt;/P&gt;
  &lt;P&gt;class ZCL_NB_CLASS definition&lt;BR /&gt; public&lt;BR /&gt; create public .&lt;BR /&gt; &lt;BR /&gt; public section.&lt;BR /&gt; *"* public components of class ZCL_NB_CLASS&lt;BR /&gt; *"* do not include other source files here!!!&lt;BR /&gt; &lt;BR /&gt; methods DEPOSIT&lt;BR /&gt; importing&lt;BR /&gt; value(AMOUNT) type DMBTR&lt;BR /&gt; returning&lt;BR /&gt; value(NEW_BALANCE) type DMBTR .&lt;BR /&gt; methods SET_BALANCE&lt;BR /&gt; importing&lt;BR /&gt; value(AMOUNT) type DMBTR&lt;BR /&gt; returning&lt;BR /&gt; value(NEW_BALANCE) type DMBTR .&lt;BR /&gt; methods WITHDRAW&lt;BR /&gt; importing&lt;BR /&gt; value(AMOUNT) type DMBTR&lt;BR /&gt; returning&lt;BR /&gt; value(NEW_BALANCE) type DMBTR&lt;BR /&gt; exceptions&lt;BR /&gt; INSUFFICIENT_FUNDS .&lt;BR /&gt; methods MESSAGE&lt;BR /&gt; exporting&lt;BR /&gt; !MESS type BAPIRET2 .&lt;BR /&gt; protected section.&lt;BR /&gt; *"* protected components of class ZCL_NB_CLASS&lt;BR /&gt; *"* do not include other source files here!!!&lt;BR /&gt; private section.&lt;BR /&gt; *"* private components of class ZCL_NB_CLASS&lt;BR /&gt; *"* do not include other source files here!!!&lt;BR /&gt; &lt;BR /&gt; class-data BALANCE type DMBTR .&lt;BR /&gt; ENDCLASS.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; CLASS ZCL_NB_CLASS IMPLEMENTATION.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; * &amp;lt;SIGNATURE&amp;gt;---------------------------------------------------------------------------------------+&lt;BR /&gt; * | Instance Public Method ZCL_NB_CLASS-&amp;gt;DEPOSIT&lt;BR /&gt; * +-------------------------------------------------------------------------------------------------+&lt;BR /&gt; * | [---&amp;gt;] AMOUNT TYPE DMBTR&lt;BR /&gt; * | [&amp;lt;-()] NEW_BALANCE TYPE DMBTR&lt;BR /&gt; * +--------------------------------------------------------------------------------------&amp;lt;/SIGNATURE&amp;gt;&lt;BR /&gt; method DEPOSIT.&lt;BR /&gt; &lt;BR /&gt; BALANCE = balance + AMOUNT.&lt;BR /&gt; new_balance = balance.&lt;BR /&gt; &lt;BR /&gt; endmethod.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; * &amp;lt;SIGNATURE&amp;gt;---------------------------------------------------------------------------------------+&lt;BR /&gt; * | Instance Public Method ZCL_NB_CLASS-&amp;gt;MESSAGE&lt;BR /&gt; * +-------------------------------------------------------------------------------------------------+&lt;BR /&gt; * | [&amp;lt;---] MESS TYPE BAPIRET2&lt;BR /&gt; * +--------------------------------------------------------------------------------------&amp;lt;/SIGNATURE&amp;gt;&lt;BR /&gt; method MESSAGE.&lt;BR /&gt; &lt;BR /&gt; MESS-message = 'Message has been called'.&lt;BR /&gt; MESS-type = 'S'.&lt;BR /&gt; &lt;BR /&gt; endmethod.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; * &amp;lt;SIGNATURE&amp;gt;---------------------------------------------------------------------------------------+&lt;BR /&gt; * | Instance Public Method ZCL_NB_CLASS-&amp;gt;SET_BALANCE&lt;BR /&gt; * +-------------------------------------------------------------------------------------------------+&lt;BR /&gt; * | [---&amp;gt;] AMOUNT TYPE DMBTR&lt;BR /&gt; * | [&amp;lt;-()] NEW_BALANCE TYPE DMBTR&lt;BR /&gt; * +--------------------------------------------------------------------------------------&amp;lt;/SIGNATURE&amp;gt;&lt;BR /&gt; method SET_BALANCE.&lt;BR /&gt; &lt;BR /&gt; balance = new_balance.&lt;BR /&gt; &lt;BR /&gt; endmethod.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; * &amp;lt;SIGNATURE&amp;gt;---------------------------------------------------------------------------------------+&lt;BR /&gt; * | Instance Public Method ZCL_NB_CLASS-&amp;gt;WITHDRAW&lt;BR /&gt; * +-------------------------------------------------------------------------------------------------+&lt;BR /&gt; * | [---&amp;gt;] AMOUNT TYPE DMBTR&lt;BR /&gt; * | [&amp;lt;-()] NEW_BALANCE TYPE DMBTR&lt;BR /&gt; * | [EXC!] INSUFFICIENT_FUNDS&lt;BR /&gt; * +--------------------------------------------------------------------------------------&amp;lt;/SIGNATURE&amp;gt;&lt;BR /&gt; method WITHDRAW.&lt;BR /&gt; &lt;BR /&gt; IF balance GE AMOUNT.&lt;BR /&gt; balance = balance - AMOUNT.&lt;BR /&gt; NEW_BALANCE = BALANCE.&lt;BR /&gt; ELSE.&lt;BR /&gt; RAISE INSUFFICIENT_FUNDS.&lt;BR /&gt; ENDIF.&lt;BR /&gt; endmethod.&lt;BR /&gt; ENDCLASS.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Dec 2018 12:23:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690483#M31037</guid>
      <dc:creator>nbitish</dc:creator>
      <dc:date>2018-12-14T12:23:00Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error for null object reference, while implementing class in module pool ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690484#M31038</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Did you instantiate your object in the module pool before calling a method of the class?&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;"Classic notation":
DATA: lo_nb_class TYPE REF TO zcl_nb_class.
CREATE OBJECT lo_nb_class.
lo_nb_class-&amp;gt;withdraw( 500 ).

"New short syntax":
DATA(lo_nb_class) = NEW zcl_nb_class( ).
lo_nb_class-&amp;gt;withdraw( 500 ).

&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 14 Dec 2018 12:34:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690484#M31038</guid>
      <dc:creator>geert-janklaps</dc:creator>
      <dc:date>2018-12-14T12:34:53Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error for null object reference, while implementing class in module pool ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690485#M31039</link>
      <description>&lt;P&gt;Use the code button in the editor to provide your code in a nicely formatted and readable way, and then I might take the time to help you.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Dec 2018 12:38:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690485#M31039</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2018-12-14T12:38:30Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error for null object reference, while implementing class in module pool ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690486#M31040</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;Dear Greet,
Thanks for reply, I am using the below code for that, Also I have already created the object.

**************************************Init**********************************
  DATA OBJ TYPE REF TO ZCL_NB_CLASS.
  DATA TRANS_BALANCE TYPE DMBTR.
  DATA WITHDRAW TYPE DMBTR.
  DATA BALANCE_LEFT TYPE DMBTR.

START-OF-SELECTION.
  CREATE OBJECT OBJ .
DATA LV_MESSAGE TYPE BAPIRET2.

***********************************Init**************************************

***********************************PAI******************************************
CASE SY-UCOMM.
  WHEN 'DRAW'.
  CALL METHOD  OBJ-&amp;gt;deposit( EXPORTING AMOUNT = TRANS_BALANCE

                                  RECEIVING  NEW_BALANCE = BALANCE_LEFT ).
  WHEN 'SET'.
  CALL METHOD  OBJ-&amp;gt;set_balance( EXPORTING AMOUNT = TRANS_BALANCE
                                  RECEIVING  NEW_BALANCE = BALANCE_LEFT ).

  WHEN 'DEPO'.
  CALL METHOD  OBJ-&amp;gt;withdraw( EXPORTING AMOUNT = TRANS_BALANCE

                                  RECEIVING  NEW_BALANCE = BALANCE_LEFT ).
  WHEN 'MESS'.
  CALL METHOD  OBJ-&amp;gt;MESSAGE( IMPORTING MESS = LV_MESSAGE ).

ENDCASE.

************************************PAI***************************************&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 15 Dec 2018 05:26:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690486#M31040</guid>
      <dc:creator>nbitish</dc:creator>
      <dc:date>2018-12-15T05:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error for null object reference, while implementing class in module pool ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690487#M31041</link>
      <description>&lt;P&gt;This is the error analysis that I am getting...&lt;/P&gt;&lt;P&gt; An exception occurred that is explained in detail below.
 The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
  caught and
 therefore caused a runtime error.
 The reason for the exception is:
 You attempted to use a 'NULL' object reference (points to 'nothing')
 access a component (variable: "OBJ").
 An object reference must point to an object (an instance of a class)
 before it can be used to access components.
 Either the reference was never set or it was set to 'NULL' using the
 CLEAR statement.&lt;/P&gt;&lt;P&gt;But I have already created the object above.&lt;/P&gt;</description>
      <pubDate>Sat, 15 Dec 2018 05:34:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690487#M31041</guid>
      <dc:creator>nbitish</dc:creator>
      <dc:date>2018-12-15T05:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error for null object reference, while implementing class in module pool ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690488#M31042</link>
      <description>&lt;P&gt;Hi Greet,&lt;/P&gt;&lt;P&gt;My issue is solved. When I created the object in PAI include then it is working fine. But when I am defining it in program it is telling null object&lt;/P&gt;&lt;P&gt;reference. Does it mean that when I am defining it in the PROGRAM the object is not created for the whole " That is not for the includes " ?&lt;/P&gt;</description>
      <pubDate>Sat, 15 Dec 2018 06:36:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690488#M31042</guid>
      <dc:creator>nbitish</dc:creator>
      <dc:date>2018-12-15T06:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error for null object reference, while implementing class in module pool ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690489#M31043</link>
      <description>&lt;P&gt;Runtime knows nothing about includes.&lt;/P&gt;&lt;P&gt;Main program:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;... some code ...
INCLUDE sub_program.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;With include sub_program&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;...some more code...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Is EXACTLY the same as&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;... some code ...
... some more code ...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Includes are just ways of organising source code. That's it. Nothing else.&lt;/P&gt;</description>
      <pubDate>Sat, 15 Dec 2018 19:03:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690489#M31043</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2018-12-15T19:03:59Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error for null object reference, while implementing class in module pool ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690490#M31044</link>
      <description>&lt;P&gt;Thanks Mathew,&lt;/P&gt;&lt;P&gt;So could you please tell me at which point should I declare my object then.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROGRAM  ZNB_CLASS_MOD_POO_IMP.
DATA LV_MESSAGE TYPE BAPIRET2.
DATA OBJ TYPEREFTO ZCL_NB_CLASS.
DATA TRANS_BALANCE TYPE DMBTR.
DATA BAL TYPE DMBTR.
DATA BALANCE_LEFT TYPE DMBTR.
*************************** If I declare the object here then I gets error*************************

INCLUDE ZNB_CLASS_MOD_POO_IMP_STATUO01.
INCLUDE ZNB_CLASS_MOD_PAI.                          " I have declared my object in here, then its' working fine.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Dec 2018 08:10:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690490#M31044</guid>
      <dc:creator>nbitish</dc:creator>
      <dc:date>2018-12-16T08:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error for null object reference, while implementing class in module pool ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690491#M31045</link>
      <description>&lt;P&gt;Probably he wouldn't, because Matthew told you he would help you after you improve the formatting of the code in your initial question. If I had the same question as yours, I would first look at your post and then ran away because it's simply unreadable.&lt;/P&gt;</description>
      <pubDate>Sun, 16 Dec 2018 08:27:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690491#M31045</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2018-12-16T08:27:42Z</dc:date>
    </item>
    <item>
      <title>Re: Getting error for null object reference, while implementing class in module pool ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690492#M31046</link>
      <description>&lt;P&gt;idk what is your whole code but i tried with what you gave here, it run as normal where ever i create object. if you declared it before the include, it will become a global variable which available in your whole program. maybe you should re-organize your code first. beside, you are using sy-ucomm here which you should use okcode instead, FYI.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Dec 2018 01:12:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/getting-error-for-null-object-reference-while-implementing-class-in-module/m-p/690492#M31046</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2018-12-17T01:12:53Z</dc:date>
    </item>
  </channel>
</rss>

