<?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: Read data from table  type in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-table-type/m-p/3913957#M938288</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Plz try the following..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FIELD_SYMBOLS: &amp;lt;fs_vlist_tab&amp;gt; type VLIST.  " plz give the table type of VLIST

DATA: WA_VLIST TYPE LINE OF VLIST

READ TABLE ET_ATTR INDEX 1. " as you saying it has only one line, read only index 1. o.w. you can read the other lines too as per you requirement.

ASSIGN ET_ATTR-VLIST TO &amp;lt;FS_VLIST_TAB&amp;gt;.
READ TABLE &amp;lt;FS_VLIST_TAB&amp;gt; into WA_VLIST index 1.

* and process your WA_VLIST as requried..

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prax&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 05 Jun 2008 02:44:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-05T02:44:04Z</dc:date>
    <item>
      <title>Read data from table  type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-table-type/m-p/3913955#M938286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;I am calling a FM BBP_READ_ATTRIBUTES, it exports a line ET_ATTR(Table type) , now in this there is a field  VLIST which is an Internal table . and It has entry in it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I require to get this internal table.&lt;/P&gt;&lt;P&gt;I declare in data statement var type tabletype.&lt;/P&gt;&lt;P&gt;How exactly can i retreive this 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;when i double clicl on ET_ATTR , it a tabl type but i calls a line type BBPS_ATTR which is like a structure and there is a feild like VLIST which is an internal table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me to retrieve the data in this internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 17:43:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-table-type/m-p/3913955#M938286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T17:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Read data from table  type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-table-type/m-p/3913956#M938287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
read table ET_ATTR into WA_BBPS_ATTR index 1.
if sy-subrc  = 0.
read table WA_BBPS_ATTR-VLIST into wa_vlist
index 1.

***do the necessary coding
 
endif.
endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 18:33:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-table-type/m-p/3913956#M938287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T18:33:16Z</dc:date>
    </item>
    <item>
      <title>Re: Read data from table  type</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-table-type/m-p/3913957#M938288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Plz try the following..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
FIELD_SYMBOLS: &amp;lt;fs_vlist_tab&amp;gt; type VLIST.  " plz give the table type of VLIST

DATA: WA_VLIST TYPE LINE OF VLIST

READ TABLE ET_ATTR INDEX 1. " as you saying it has only one line, read only index 1. o.w. you can read the other lines too as per you requirement.

ASSIGN ET_ATTR-VLIST TO &amp;lt;FS_VLIST_TAB&amp;gt;.
READ TABLE &amp;lt;FS_VLIST_TAB&amp;gt; into WA_VLIST index 1.

* and process your WA_VLIST as requried..

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prax&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Jun 2008 02:44:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-data-from-table-type/m-p/3913957#M938288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-05T02:44:04Z</dc:date>
    </item>
  </channel>
</rss>

