<?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 types declaration in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/3108579#M738031</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 need the equalent declaration syntax in types declaration :&lt;/P&gt;&lt;P&gt;Question : 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF t_in_lien OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE zwgps_br_co_eefile.&lt;/P&gt;&lt;P&gt;DATA : zli_type LIKE zdimbpar-zlien_type,&lt;/P&gt;&lt;P&gt;       END OF t_in_lien.&lt;/P&gt;&lt;P&gt;*The above internal table declaration is with header line. How can I declare the same using 'Types' statement and also how to declare work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question : 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : itab like mara occurs 0 with header line.&lt;/P&gt;&lt;P&gt;The above internal table declaration I can also declare like :&lt;/P&gt;&lt;P&gt;data  : itab  TYPE STANDARD TABLE OF mara.&lt;/P&gt;&lt;P&gt;How to declare work area in the above case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;AAkash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 01 Dec 2007 17:03:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-01T17:03:31Z</dc:date>
    <item>
      <title>types declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/3108579#M738031</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 need the equalent declaration syntax in types declaration :&lt;/P&gt;&lt;P&gt;Question : 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF t_in_lien OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE zwgps_br_co_eefile.&lt;/P&gt;&lt;P&gt;DATA : zli_type LIKE zdimbpar-zlien_type,&lt;/P&gt;&lt;P&gt;       END OF t_in_lien.&lt;/P&gt;&lt;P&gt;*The above internal table declaration is with header line. How can I declare the same using 'Types' statement and also how to declare work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Question : 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : itab like mara occurs 0 with header line.&lt;/P&gt;&lt;P&gt;The above internal table declaration I can also declare like :&lt;/P&gt;&lt;P&gt;data  : itab  TYPE STANDARD TABLE OF mara.&lt;/P&gt;&lt;P&gt;How to declare work area in the above case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;AAkash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Dec 2007 17:03:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/3108579#M738031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-01T17:03:31Z</dc:date>
    </item>
    <item>
      <title>Re: types declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/3108580#M738032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chandra,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. data : itab TYPE STANDARD TABLE OF mara,&lt;/P&gt;&lt;P&gt;             fs_itab like itab.&lt;/P&gt;&lt;P&gt;Here fs_itab is work area &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                  ( OR )&lt;/P&gt;&lt;P&gt;data : itab TYPE STANDARD TABLE OF mara with header line.&lt;/P&gt;&lt;P&gt;   hear itab itself is header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if help full,&lt;/P&gt;&lt;P&gt;Mahi.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Dec 2007 18:19:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/3108580#M738032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-01T18:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: types declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/3108581#M738033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mahi:  I'm sorry, but your answer is entirely incorrect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE has limitations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPE: begin of my_in_lien_type,
        eefile like zwgps_br_co_eefile,
        zli_type like zdimbpar-zlien_type,
      end of my_in_line_type.

DATA: t_in_lien TYPE STANDARD TABLE OF my_in_lien_type WITH NON-UNIQUE KEY HEADER_LINE,
      ws_in_lien TYPE my_in_lien_type.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ws_in_lien is your work area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;2) data: itab TYPE STANDARD TABLE OF mara,
      wa TYPE mara.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa is your workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;matt&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Dec 2007 20:16:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/3108581#M738033</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2007-12-01T20:16:12Z</dc:date>
    </item>
    <item>
      <title>Re: types declaration</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/3108582#M738034</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;YES INCLUDE STRUCTURE HAD SOME RESTRICTIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE: BEGIN OF ITAB1,&lt;/P&gt;&lt;P&gt;        FILE LIKE ZWGPS_BR_CO_FILE,&lt;/P&gt;&lt;P&gt;        ZLITYPE LIKE ZDIMBPARTYPE,&lt;/P&gt;&lt;P&gt;      END OF ITAB1.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DATA: IT_ITAB1 TYPE STANDARD TABLE OF ITAB1 WITH NON-UNIQUE KEY HEADER_LINE,&lt;/P&gt;&lt;P&gt;      WA_ITAB1 TYPE ITAB1..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARD IF USEFULL&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 02 Dec 2007 06:36:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/types-declaration/m-p/3108582#M738034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-02T06:36:20Z</dc:date>
    </item>
  </channel>
</rss>

