<?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 Internal table with WDA in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268582#M1216365</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How i can create an internal table in a WDA?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try this but not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs,&lt;/P&gt;&lt;P&gt;low type c&lt;/P&gt;&lt;P&gt;high type c&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it gives me error and said that occurs not supported!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 28 Feb 2009 13:22:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-28T13:22:10Z</dc:date>
    <item>
      <title>Internal table with WDA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268582#M1216365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How i can create an internal table in a WDA?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I try this but not work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of itab occurs,&lt;/P&gt;&lt;P&gt;low type c&lt;/P&gt;&lt;P&gt;high type c&lt;/P&gt;&lt;P&gt;end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it gives me error and said that occurs not supported!!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;P&gt;Ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 13:22:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268582#M1216365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T13:22:10Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table with WDA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268583#M1216366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ali,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can create internal table as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: lt_data type table of sflight, "sflight is an existing DataBase table&lt;/P&gt;&lt;P&gt;         ls_data like line of  lt_data. " lt_data is your new internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Greetings&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Feb 2009 15:00:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268583#M1216366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-28T15:00:53Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table with WDA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268584#M1216367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I knwo this way,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to build my own internal table, not from dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Ali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Mar 2009 06:26:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268584#M1216367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-01T06:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table with WDA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268585#M1216368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;create a type like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_type,&lt;/P&gt;&lt;P&gt;                 field_a    type c,&lt;/P&gt;&lt;P&gt;                 field_b    type n.&lt;/P&gt;&lt;P&gt;TYPES: END OF ty_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: itab TYPE TABLE OF ty_type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check F1 help for keyword DATA.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Mar 2009 06:51:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268585#M1216368</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2009-03-01T06:51:57Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table with WDA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268586#M1216369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Micky Oestreich  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you answer very helpfull.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My code is like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES: BEGIN OF ty_type,
nomtk TYPE oijne-nomtk.
TYPES: END OF ty_type.
DATA: int_fnomtk  TYPE TABLE OF ty_type.
data int_fnomtk_wa type ty_type.

LOOP AT ra_nomtk into int_fnomtk_wa.
      READ TABLE int_fnomtk WITH KEY nomtk = int_fnomtk_wa-nomtk.
      IF sy-subrc = 0.
        DELETE ra_nomtk.
      ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i face another problem is that in looping it give me :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;In OO context either an INTO or an ASSIGNING specification or the addition
"TRANSPORTING TO FIELDS" must be used.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Mar 2009 08:18:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268586#M1216369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-01T08:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table with WDA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268587#M1216370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please refer this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In ABAP Objects, the following statement causes an error message:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE itab WITH KEY = key INTO wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Correct syntax:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE itab WITH KEY table_line = key INTO wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cause:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This variant is a special solution that lets you access the table with unstructured line types using a key. The introduction of the pseudo-component table_line, which can always be used instead of a key field, renders this variant superfluous. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will solve your problem&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Mar 2009 17:04:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268587#M1216370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-01T17:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table with WDA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268588#M1216371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you take the time to read the ABAP help on these keywords, you could have answered your question yourself.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 01 Mar 2009 18:15:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268588#M1216371</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2009-03-01T18:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: Internal table with WDA</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268589#M1216372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Mar 2009 08:58:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-with-wda/m-p/5268589#M1216372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-09T08:58:06Z</dc:date>
    </item>
  </channel>
</rss>

