<?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: calling this OO code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118308#M1510752</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;types: begin of ty_lfa1,&lt;/P&gt;&lt;P&gt;       lifnr type lfa1-lifnr,&lt;/P&gt;&lt;P&gt;       name1 type lfa1-name1,&lt;/P&gt;&lt;P&gt;       name2 type lfa1-name2,&lt;/P&gt;&lt;P&gt;       end of ty_lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: t_lfa1 type standard table of ty_lfa1.&lt;/P&gt;&lt;P&gt;data: wa_lfa1 like line of t_lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class fetchsap definition.&lt;/P&gt;&lt;P&gt;public section.&lt;/P&gt;&lt;P&gt;Methods:&lt;/P&gt;&lt;P&gt;picksalesbudget exporting tp_lfa1 like t_lfa1.&lt;/P&gt;&lt;P&gt;endclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class fetchsap implementation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;method picksalesbudget.&lt;/P&gt;&lt;P&gt;select lifnr name1 name2 from lfa1 up to 3 rows into table tp_lfa1.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: obc TYPE REF TO fetchsap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD obc-&amp;gt;picksalesbudget( IMPORTING tp_lfa1 = t_lfa1 ).&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at t_lfa1 into wa_lfa1.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i get this error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; OBJECTS_OBJREF_NOT_ASSIGNED&lt;/P&gt;&lt;P&gt; CX_SY_REF_IS_INITIAL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jun 2010 10:55:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-06-29T10:55:03Z</dc:date>
    <item>
      <title>calling this OO code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118303#M1510747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want three record of vendors to be retrieved by this method.I am doing something like following&lt;/P&gt;&lt;P&gt;code doesnot compile after third last DATA statement.Plz help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

types: begin of ty_lfa1,
       lifnr type lfa1-lifnr,
       name1 type lfa1-name1,
       name2 type lfa1-name2,
       end of ty_lfa1.

data: t_lfa1 type standard table of ty_lfa1.

class fetchsap definition.
public section.
Methods:
picksalesbudget exporting tp_lfa1 like t_lfa1.
endclass.

class fetchsap implementation.

method picksalesbudget.
select lifnr name1 name2 from lfa1 up to 3 rows into table tp_lfa1.
endmethod.

endclass.

*DATA: obc TYPE REF TO fetchsap.*

create object obc.

call method obc-&amp;gt;picksalesbudget ().
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: aditya  sharma on Jun 29, 2010 12:19 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: aditya  sharma on Jun 29, 2010 12:20 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 10:18:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118303#M1510747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-29T10:18:48Z</dc:date>
    </item>
    <item>
      <title>Re: calling this OO code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118304#M1510748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use this code .. it will work fine ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_lfa1,&lt;/P&gt;&lt;P&gt;       lifnr type lfa1-lifnr,&lt;/P&gt;&lt;P&gt;       name1 type lfa1-name1,&lt;/P&gt;&lt;P&gt;       name2 type lfa1-name2,&lt;/P&gt;&lt;P&gt;       end of ty_lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: t_lfa1 type standard table of ty_lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class fetchsap definition.&lt;/P&gt;&lt;P&gt;public section.&lt;/P&gt;&lt;P&gt;Methods:&lt;/P&gt;&lt;P&gt;picksalesbudget exporting tp_lfa1 like t_lfa1.&lt;/P&gt;&lt;P&gt;endclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class fetchsap implementation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;method picksalesbudget.&lt;/P&gt;&lt;P&gt;select lifnr name1 name2 from lfa1 up to 3 rows into table tp_lfa1.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endclass.&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;DATA: obc TYPE REF TO fetchsap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create object obc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call method obc-&amp;gt;picksalesbudget.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 10:31:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118304#M1510748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-29T10:31:39Z</dc:date>
    </item>
    <item>
      <title>Re: calling this OO code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118305#M1510749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Change to this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;START-OF-SELECTION. "Add the START-OF-SELECTION event name

  DATA: obc TYPE REF TO fetchsap.
  CREATE OBJECT obc.

  CALL METHOD obc-&amp;gt;picksalesbudget( IMPORTING tp_lfa1 = t_lfa1 ). "Add the IMPORTING addition

  CHECK t_lfa1 IS NOT INITIAL.&lt;/CODE&gt;&lt;/PRE&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, 29 Jun 2010 10:32:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118305#M1510749</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-06-29T10:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: calling this OO code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118306#M1510750</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 did some small correction in your program as marked in bold&lt;/P&gt;&lt;P&gt;( Please set break point  for the statement &lt;/P&gt;&lt;P&gt;    SELECT lifnr name1 name2 FROM lfa1 UP TO 3 ROWS INTO TABLE tp_lfa1. and you will see three records come &lt;/P&gt;&lt;P&gt;   on tp_lfa1 in debuggin)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  yup_oo_test                             .&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_lfa1,&lt;/P&gt;&lt;P&gt;       lifnr TYPE lfa1-lifnr,&lt;/P&gt;&lt;P&gt;       name1 TYPE lfa1-name1,&lt;/P&gt;&lt;P&gt;       name2 TYPE lfa1-name2,&lt;/P&gt;&lt;P&gt;       END OF ty_lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: t_lfa1 TYPE STANDARD TABLE OF ty_lfa1.&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS fetchsap DEFINITION&lt;/P&gt;&lt;/LI&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 fetchsap DEFINITION.&lt;/P&gt;&lt;P&gt;  PUBLIC SECTION.&lt;/P&gt;&lt;P&gt;    METHODS:&lt;/P&gt;&lt;P&gt;    picksalesbudget EXPORTING tp_lfa1 LIKE t_lfa1.&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "fetchsap DEFINITION&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      CLASS fetchsap IMPLEMENTATION&lt;/P&gt;&lt;/LI&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 fetchsap IMPLEMENTATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  METHOD picksalesbudget.&lt;/P&gt;&lt;P&gt;    SELECT lifnr name1 name2 FROM lfa1 UP TO 3 ROWS INTO TABLE tp_lfa1.&lt;/P&gt;&lt;P&gt;  ENDMETHOD.                    "picksalesbudget&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCLASS.                    "fetchsap IMPLEMENTATION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;START-OF-SELECTION.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DATA: obc TYPE REF TO fetchsap.&lt;/STRONG&gt;CREATE OBJECT obc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CALL METHOD obc-&amp;gt;picksalesbudget.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD obc-&amp;gt;picksalesbudget.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Pramod Upadhyay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 10:36:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118306#M1510750</guid>
      <dc:creator>pramodu</dc:creator>
      <dc:date>2010-06-29T10:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: calling this OO code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118307#M1510751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Object should be gets created after Start-of-selection Statement Only in Case of Executable Programs.&lt;/P&gt;&lt;P&gt;Write Event Start-of-selection Before U are Going to Create Objects .&lt;/P&gt;&lt;P&gt;You Can Create references &amp;amp; Objects After Start-of-Selection .&lt;/P&gt;&lt;P&gt;But it is Advisable to Create References Before Start of Selection (Type Ref to )&amp;amp; &lt;/P&gt;&lt;P&gt;                                  Create Objects After Start of Selection (Create ) .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 10:43:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118307#M1510751</guid>
      <dc:creator>karthik_vardhan</dc:creator>
      <dc:date>2010-06-29T10:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: calling this OO code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118308#M1510752</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;types: begin of ty_lfa1,&lt;/P&gt;&lt;P&gt;       lifnr type lfa1-lifnr,&lt;/P&gt;&lt;P&gt;       name1 type lfa1-name1,&lt;/P&gt;&lt;P&gt;       name2 type lfa1-name2,&lt;/P&gt;&lt;P&gt;       end of ty_lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: t_lfa1 type standard table of ty_lfa1.&lt;/P&gt;&lt;P&gt;data: wa_lfa1 like line of t_lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class fetchsap definition.&lt;/P&gt;&lt;P&gt;public section.&lt;/P&gt;&lt;P&gt;Methods:&lt;/P&gt;&lt;P&gt;picksalesbudget exporting tp_lfa1 like t_lfa1.&lt;/P&gt;&lt;P&gt;endclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;class fetchsap implementation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;method picksalesbudget.&lt;/P&gt;&lt;P&gt;select lifnr name1 name2 from lfa1 up to 3 rows into table tp_lfa1.&lt;/P&gt;&lt;P&gt;endmethod.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endclass.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: obc TYPE REF TO fetchsap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD obc-&amp;gt;picksalesbudget( IMPORTING tp_lfa1 = t_lfa1 ).&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at t_lfa1 into wa_lfa1.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i get this error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; OBJECTS_OBJREF_NOT_ASSIGNED&lt;/P&gt;&lt;P&gt; CX_SY_REF_IS_INITIAL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 10:55:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118308#M1510752</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-29T10:55:03Z</dc:date>
    </item>
    <item>
      <title>Re: calling this OO code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118309#M1510753</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You missed the CREATE OBJECT statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 10:56:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118309#M1510753</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-06-29T10:56:03Z</dc:date>
    </item>
    <item>
      <title>Re: calling this OO code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118310#M1510754</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;correct&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 10:56:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118310#M1510754</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-29T10:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: calling this OO code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118311#M1510755</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well this is working well for me. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
types: begin of ty_lfa1,
       lifnr type lfa1-lifnr,
       name1 type lfa1-name1,
       name2 type lfa1-name2,
       end of ty_lfa1.

data: t_lfa1 type standard table of ty_lfa1,
      wa_lfa1 like LINE OF t_lfa1.

class fetchsap definition.
public section.
Methods:
picksalesbudget exporting tp_lfa1 like t_lfa1.
endclass.

class fetchsap implementation.

method picksalesbudget.
select lifnr name1 name2 from lfa1 up to 3 rows into table tp_lfa1.
endmethod.

endclass.

START-OF-SELECTION.

DATA: obc TYPE REF TO fetchsap.

create object obc TYPE fetchsap.

call method obc-&amp;gt;picksalesbudget( importing tp_lfa1 = t_lfa1 ).

loop at t_lfa1 into wa_lfa1.
  write:/ wa_lfa1.
endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 10:59:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118311#M1510755</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-29T10:59:00Z</dc:date>
    </item>
    <item>
      <title>Re: calling this OO code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118312#M1510756</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;I think Suhas Saha's reply is best because you are using your exporting parameter and passing the value in your method call. then only you will be able to get the values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD obc-&amp;gt;picksalesbudget( IMPORTING tp_lfa1 = t_lfa1 )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Lalit Gupta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jun 2010 12:16:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/calling-this-oo-code/m-p/7118312#M1510756</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-06-29T12:16:06Z</dc:date>
    </item>
  </channel>
</rss>

