<?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 Reading 'table type' in program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-table-type-in-program/m-p/3072162#M728303</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts, I have defined the table type in the DDIC and populating it in a method of class.In my main program of se38, I created one internal table 'type standard table of'  table-type and then I created workarea of table-type but when I do like&lt;/P&gt;&lt;P&gt; wafloc_type_tab = objzcl_tbd_model-&amp;gt;iflot_tyr( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It gives the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result type of the function method cannot be converted into the type of wafloc_type_tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Dec 2007 07:29:26 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-05T07:29:26Z</dc:date>
    <item>
      <title>Reading 'table type' in program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-table-type-in-program/m-p/3072162#M728303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts, I have defined the table type in the DDIC and populating it in a method of class.In my main program of se38, I created one internal table 'type standard table of'  table-type and then I created workarea of table-type but when I do like&lt;/P&gt;&lt;P&gt; wafloc_type_tab = objzcl_tbd_model-&amp;gt;iflot_tyr( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It gives the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result type of the function method cannot be converted into the type of wafloc_type_tab.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 07:29:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-table-type-in-program/m-p/3072162#M728303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-05T07:29:26Z</dc:date>
    </item>
    <item>
      <title>Re: Reading 'table type' in program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-table-type-in-program/m-p/3072163#M728304</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;&lt;/P&gt;&lt;P&gt;  Do like thais&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;                      TYPES                                          *&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;TYPES : BEGIN OF t_vbrk,&lt;/P&gt;&lt;P&gt;        vbeln TYPE vbeln_vf,&lt;/P&gt;&lt;P&gt;        rplnr TYPE rplnr,&lt;/P&gt;&lt;P&gt;        bukrs TYPE bukrs,&lt;/P&gt;&lt;P&gt;        END OF t_vbrk,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        BEGIN OF t_fpltc,&lt;/P&gt;&lt;P&gt;        fplnr TYPE fplnr,&lt;/P&gt;&lt;P&gt;        fpltr TYPE fpltr,&lt;/P&gt;&lt;P&gt;        ccnum TYPE ccnum,&lt;/P&gt;&lt;P&gt;        END OF t_fpltc,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        BEGIN OF t_final,&lt;/P&gt;&lt;P&gt;        bukrs TYPE bukrs,&lt;/P&gt;&lt;P&gt;        vbeln TYPE vbeln_vf,&lt;/P&gt;&lt;P&gt;        rfzei TYPE rfzei_cc,&lt;/P&gt;&lt;P&gt;        ccnum TYPE ccnum,&lt;/P&gt;&lt;P&gt;        END OF t_final.&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;                      WORK AREAS                                     *&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;DATA : wa_vbrk  TYPE t_vbrk,&lt;/P&gt;&lt;P&gt;       wa_fpltc TYPE t_fpltc,&lt;/P&gt;&lt;P&gt;       wa_final TYPE t_final,&lt;/P&gt;&lt;P&gt;       wa_bseg  TYPE bseg.&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;                      INTERNAL TABLES                                *&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;DATA : it_vbrk  TYPE STANDARD TABLE OF t_vbrk,&lt;/P&gt;&lt;P&gt;       it_fpltc TYPE STANDARD TABLE OF t_fpltc,&lt;/P&gt;&lt;P&gt;       it_final TYPE STANDARD TABLE OF t_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 07:32:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-table-type-in-program/m-p/3072163#M728304</guid>
      <dc:creator>former_member386202</dc:creator>
      <dc:date>2007-12-05T07:32:04Z</dc:date>
    </item>
    <item>
      <title>Re: Reading 'table type' in program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-table-type-in-program/m-p/3072164#M728305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neeraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a tyble type is a TYPE not a data object. You can only populate data objects of that type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And an internal table 'type standard table of table-type is a table of tables. The declaration should be TYPE table-type .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 08:16:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-table-type-in-program/m-p/3072164#M728305</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-12-05T08:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Reading 'table type' in program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-table-type-in-program/m-p/3072165#M728306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;standard table of table type is a table holding a table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make your declarations like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it type table-type.&lt;/P&gt;&lt;P&gt;wa like line of table-type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As like is an ugly keyword, dont specify table typed, instead declare structures.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it type standard table of structure.&lt;/P&gt;&lt;P&gt;wa type structure.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 08:30:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-table-type-in-program/m-p/3072165#M728306</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2007-12-05T08:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Reading 'table type' in program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-table-type-in-program/m-p/3072166#M728307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rainer,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what about &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it type table-type.&lt;/P&gt;&lt;P&gt;wa &amp;lt;b&amp;gt;type&amp;lt;/b&amp;gt; line of table-type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 08:33:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-table-type-in-program/m-p/3072166#M728307</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2007-12-05T08:33:17Z</dc:date>
    </item>
    <item>
      <title>Re: Reading 'table type' in program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-table-type-in-program/m-p/3072167#M728308</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;Plz make the Internal table as TYPE of Table Type &lt;/P&gt;&lt;P&gt;and Work area as Like Line of Table type.&lt;/P&gt;&lt;P&gt;it will solve ur problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Preeti&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Dec 2007 09:42:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-table-type-in-program/m-p/3072167#M728308</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-05T09:42:23Z</dc:date>
    </item>
  </channel>
</rss>

