<?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: work areas...? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/5678726#M1290977</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;Functionality of both the declaration is same, only difference is if it_final_tab is a local internal table then you would not be able to use type. and also if you mention like line of then it_final_tab should be an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it_final_tab is a globally defined structure or table then we go for type.&lt;/P&gt;&lt;P&gt;even if it_final_tab is declared using types declaration then also we go for type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 May 2009 05:33:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-25T05:33:52Z</dc:date>
    <item>
      <title>work areas...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/5678722#M1290973</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;I know like we can create work areas in both the ways. But when we go for no.1 ad when we go for no.2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the difference b/w both?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1). ls_final_tab TYPE it_final_tab,&lt;/P&gt;&lt;P&gt;2). ls_final_tab LIKE LINE OF it_final_tab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 05:19:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/5678722#M1290973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T05:19:07Z</dc:date>
    </item>
    <item>
      <title>Re: work areas...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/5678723#M1290974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Normally we declare work areas using TYPE statement when the table is of standard one.&lt;/P&gt;&lt;P&gt;"Like Line of " is used when we declare a work area similar to the line of an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Sowmya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 05:21:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/5678723#M1290974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T05:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: work areas...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/5678724#M1290975</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;   In First case it_final_tab is either types or standard table.&lt;/P&gt;&lt;P&gt;   But in second case it_final_tab is internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vishnu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 05:25:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/5678724#M1290975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T05:25:17Z</dc:date>
    </item>
    <item>
      <title>Re: work areas...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/5678725#M1290976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi puppy,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1). ls_final_tab TYPE it_final_tab,&lt;/P&gt;&lt;P&gt;2). ls_final_tab LIKE LINE OF it_final_tab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u r writing  " ls_final_tab TYPE it_final_tab," , it means it_final_tab to which u r referring is defined as&lt;/P&gt;&lt;P&gt;types and not as data i.e. it is acting as a work area &amp;amp; not as an internal table.&lt;/P&gt;&lt;P&gt;Ans if u r writing  "ls_final_tab LIKE LINE OF it_final_tab" that means you have dfeclared an internal table it_final_tab with "Data".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;ajit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 05:31:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/5678725#M1290976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T05:31:25Z</dc:date>
    </item>
    <item>
      <title>Re: work areas...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/5678726#M1290977</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;Functionality of both the declaration is same, only difference is if it_final_tab is a local internal table then you would not be able to use type. and also if you mention like line of then it_final_tab should be an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if it_final_tab is a globally defined structure or table then we go for type.&lt;/P&gt;&lt;P&gt;even if it_final_tab is declared using types declaration then also we go for type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Siddarth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 05:33:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/5678726#M1290977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T05:33:52Z</dc:date>
    </item>
    <item>
      <title>Re: work areas...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/5678727#M1290978</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;The first type is used to create work areas for normal tables or internal tables, the second one is used to create workareas for the table types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Manish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 May 2009 05:37:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/work-areas/m-p/5678727#M1290978</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-25T05:37:57Z</dc:date>
    </item>
  </channel>
</rss>

