<?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: How to do without TABLES statement allowed..?? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-without-tables-statement-allowed/m-p/3159506#M751631</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>Tue, 01 Apr 2014 04:55:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-04-01T04:55:34Z</dc:date>
    <item>
      <title>How to do without TABLES statement allowed..??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-without-tables-statement-allowed/m-p/3159501#M751626</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;In OO programming many things are not allowed eg the keyword TABLES is not allowed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The statement "SELECT-OPTIONS: kunnr FOR  vbak-kunnr." requires statement "TABLES vbak." but in OO we can't use "tables.." so how do we declare variables which are based on/similar to elements in database tables? How would we modify the select-options statement then?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Charles.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Dec 2007 21:14:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-without-tables-statement-allowed/m-p/3159501#M751626</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-20T21:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: How to do without TABLES statement allowed..??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-without-tables-statement-allowed/m-p/3159502#M751627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;there is some concept called constructors&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and parameters are the place where we declare the variables for a method.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Dec 2007 21:16:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-without-tables-statement-allowed/m-p/3159502#M751627</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2007-12-20T21:16:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to do without TABLES statement allowed..??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-without-tables-statement-allowed/m-p/3159503#M751628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;
report  zars no standard page heading
        line-size 170
        line-count 65(4).

data : xvbeln    type line of tt_vbeln.

select-options : vbeln for xvbeln.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Dec 2007 21:28:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-without-tables-statement-allowed/m-p/3159503#M751628</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2007-12-20T21:28:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to do without TABLES statement allowed..??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-without-tables-statement-allowed/m-p/3159504#M751629</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should do something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: v_kunnr TYPE kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS s_kunnr FOR v_kunnr.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Dec 2007 21:31:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-without-tables-statement-allowed/m-p/3159504#M751629</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-20T21:31:38Z</dc:date>
    </item>
    <item>
      <title>Re: How to do without TABLES statement allowed..??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-without-tables-statement-allowed/m-p/3159505#M751630</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Worked like a charm. Note that if you use internal tables and don't have variables for some of the select-options fields you can also refer to the fields defined in the itab. However, you can't refer to the itab directly since it lacks the (deprecated) header line so you'll have to use a work area for it instead.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;TYPES:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; BEGIN OF ty_vbak,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; vbeln LIKE vbak-vbeln,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; kunnr LIKE vbak-kunnr,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp; END OF ty_vbak.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;DATA:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; lt_vbak TYPE STANDARD TABLE OF ty_vbak,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; lwa_vbak LIKE LINE OF lt_vbak.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-family: courier new,courier;"&gt;SELECT-OPTIONS : s_kunnr FOR lwa_vbak-kunnr.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Dec 2013 08:51:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-without-tables-statement-allowed/m-p/3159505#M751630</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-12-19T08:51:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to do without TABLES statement allowed..??</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-without-tables-statement-allowed/m-p/3159506#M751631</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>Tue, 01 Apr 2014 04:55:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-without-tables-statement-allowed/m-p/3159506#M751631</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-04-01T04:55:34Z</dc:date>
    </item>
  </channel>
</rss>

