<?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: Doubt regarding the statement declaration within method and endmethod in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-the-statement-declaration-within-method-and-endmethod/m-p/7277640#M1531058</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;You can't you &lt;STRONG&gt;like&lt;/STRONG&gt; in OOPS. In case of local data declare and you can give the refrence of local data in current scope.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 30 Sep 2010 06:26:40 GMT</pubDate>
    <dc:creator>ravi_lanjewar</dc:creator>
    <dc:date>2010-09-30T06:26:40Z</dc:date>
    <item>
      <title>Doubt regarding the statement declaration within method and endmethod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-the-statement-declaration-within-method-and-endmethod/m-p/7277636#M1531054</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 have a method and i have coded the below inside the method, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types : begin of itab, &lt;/P&gt;&lt;P&gt;vbelv type /bic/oizopp_num,  " opportunity number &lt;/P&gt;&lt;P&gt;vbeln type /bic/oizquot_num, " quotation number &lt;/P&gt;&lt;P&gt;vbeln_a type /bic/oizord_num, " sales order number &lt;/P&gt;&lt;P&gt;vbtyp_n type /bic/oizvbtyp, " category either A or B or C &lt;/P&gt;&lt;P&gt;end of itab. &lt;/P&gt;&lt;P&gt;Data : it type standard table of itab. &lt;/P&gt;&lt;P&gt;Data : wa_it type line of itab. &lt;/P&gt;&lt;P&gt;Data : it_vbfa type standard table of vbfa. &lt;/P&gt;&lt;P&gt;Data : wa_vbfa type line of vbfa. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when i check the syntax of the program i get the error "Type VBFA  unknown.". &lt;/P&gt;&lt;P&gt;i am suprised why the standard table declaration is not recognized. &lt;/P&gt;&lt;P&gt;I know that we cannot use "Tables" statement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please guide me to resolve the issue. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Lakshminarasimhan.N&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Sep 2010 18:47:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-the-statement-declaration-within-method-and-endmethod/m-p/7277636#M1531054</guid>
      <dc:creator>lakshminarasimhan_n4</dc:creator>
      <dc:date>2010-09-22T18:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt regarding the statement declaration within method and endmethod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-the-statement-declaration-within-method-and-endmethod/m-p/7277637#M1531055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You are declaring work area incorrectly. Should be either like this&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Data : wa_vbfa like line of it_vbfa.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;or&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data wa_vbfa type vbfa.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 22 Sep 2010 19:03:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-the-statement-declaration-within-method-and-endmethod/m-p/7277637#M1531055</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-09-22T19:03:17Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt regarding the statement declaration within method and endmethod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-the-statement-declaration-within-method-and-endmethod/m-p/7277638#M1531056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 23 Sep 2010 15:11:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-the-statement-declaration-within-method-and-endmethod/m-p/7277638#M1531056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-23T15:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt regarding the statement declaration within method and endmethod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-the-statement-declaration-within-method-and-endmethod/m-p/7277639#M1531057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Sep 2010 09:43:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-the-statement-declaration-within-method-and-endmethod/m-p/7277639#M1531057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-27T09:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt regarding the statement declaration within method and endmethod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-the-statement-declaration-within-method-and-endmethod/m-p/7277640#M1531058</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;You can't you &lt;STRONG&gt;like&lt;/STRONG&gt; in OOPS. In case of local data declare and you can give the refrence of local data in current scope.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 30 Sep 2010 06:26:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-the-statement-declaration-within-method-and-endmethod/m-p/7277640#M1531058</guid>
      <dc:creator>ravi_lanjewar</dc:creator>
      <dc:date>2010-09-30T06:26:40Z</dc:date>
    </item>
    <item>
      <title>Re: Doubt regarding the statement declaration within method and endmethod</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-the-statement-declaration-within-method-and-endmethod/m-p/7277641#M1531059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually the code is typed in BI system and BI system does not have table VBFA. Its only available in R3 system. Hence the error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Jan 2011 11:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/doubt-regarding-the-statement-declaration-within-method-and-endmethod/m-p/7277641#M1531059</guid>
      <dc:creator>lakshminarasimhan_n4</dc:creator>
      <dc:date>2011-01-18T11:04:42Z</dc:date>
    </item>
  </channel>
</rss>

