<?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: SLIN error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207046#M472283</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sachin,&lt;/P&gt;&lt;P&gt;              U can use the statement as given below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES dtype { {TYPE tabkind OF [REF TO] type} &lt;/P&gt;&lt;P&gt;            | {LIKE tabkind OF dobj} } &lt;/P&gt;&lt;P&gt;            [WITH key] [INITIAL SIZE n]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If Helpful reward with some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pulokesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 May 2007 05:55:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-11T05:55:50Z</dc:date>
    <item>
      <title>SLIN error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207043#M472280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using ECC6.0. I am craeting a type like: -&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF gt_t08.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE zsdmmp02. (Ztable)&lt;/P&gt;&lt;P&gt;TYPES : rc(1)           TYPE c,&lt;/P&gt;&lt;P&gt;        END OF gt_t08.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In SLIN, it is causing a error message :-&lt;/P&gt;&lt;P&gt;The current ABAP command is obsolete&lt;/P&gt;&lt;P&gt; Within classes and interfaces, you can only use "TYPE" to refer to ABAP Dictionary&lt;/P&gt;&lt;P&gt; types (not "LIKE" or "STRUCTURE").&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to remove the error. There is one way in place of include structure i can explicitly write all the fields of zsdmmp02. But later on if the structure of zsdmmp02 gets enhanced, then again i will have to add one field. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there any other way to do it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanx in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 05:40:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207043#M472280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T05:40:36Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207044#M472281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;  try to code as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF gt_t08.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE zsdmmp02. (Ztable)&lt;/P&gt;&lt;P&gt;Data : rc(1) TYPE c,&lt;/P&gt;&lt;P&gt;END OF gt_t08.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sreeram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 05:45:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207044#M472281</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2007-05-11T05:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207045#M472282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi sreeram,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF gt_t08.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE zsdmmp02. (Ztable)&lt;/P&gt;&lt;P&gt;Data : rc(1) TYPE c,&lt;/P&gt;&lt;P&gt;END OF gt_t08.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's not working friend. Syntax error - Between "TYPES BEGIN OF name" and "TYPES END OF name" only TYPES statements are allowed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 05:52:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207045#M472282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T05:52:20Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207046#M472283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sachin,&lt;/P&gt;&lt;P&gt;              U can use the statement as given below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES dtype { {TYPE tabkind OF [REF TO] type} &lt;/P&gt;&lt;P&gt;            | {LIKE tabkind OF dobj} } &lt;/P&gt;&lt;P&gt;            [WITH key] [INITIAL SIZE n]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If Helpful reward with some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pulokesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 05:55:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207046#M472283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T05:55:50Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207047#M472284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Pulokesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to add one field into internal table(which includes a Z table) like: -&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF gt_t08.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE zsdmmpp02.&lt;/P&gt;&lt;P&gt;TYPES :   rc(1)         TYPE c,&lt;/P&gt;&lt;P&gt;        END OF gt_t08.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using the below code how can i use?&lt;/P&gt;&lt;P&gt; TYPES dtype { {TYPE tabkind OF [REF TO] type} &lt;/P&gt;&lt;P&gt;| {LIKE tabkind OF dobj} } &lt;/P&gt;&lt;P&gt;[WITH key] [INITIAL SIZE n]. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 06:33:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207047#M472284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T06:33:39Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207048#M472285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sachin,&lt;/P&gt;&lt;P&gt;                  Currently I am workin on both BW and SRM modules which are on SAP NetWeaver BI 7.0 platform. I tried ur code, but its working fine. Since I donnt have access to ECC6.0, I am uanble to visualize the error. Below i am enclosing a sample code. Please try it out, and do tell me whether it works or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF GT_T08,&lt;/P&gt;&lt;P&gt;              RC(1) TYPE C.&lt;/P&gt;&lt;P&gt;              INCLUDE STRUCTURE zsdmmpp02.&lt;/P&gt;&lt;P&gt;TYPES: END OF GT_T08.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF GT_T08,&lt;/P&gt;&lt;P&gt;              RC TYPE CHAR1.&lt;/P&gt;&lt;P&gt;              INCLUDE STRUCTURE zsdmmpp02.&lt;/P&gt;&lt;P&gt;TYPES: END OF GT_T08.&lt;/P&gt;&lt;P&gt;OR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: T_ZTEST TYPE zsdmmpp02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF GT_T08,&lt;/P&gt;&lt;P&gt;        RC(1) TYPE C.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE T_ZTEST.&lt;/P&gt;&lt;P&gt;TYPES: END OF GT_T08.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think the last sample code will surely work properly since it is not showing any SLIN error in my system. Eagerly waiting for your reply. If Helpful then reward points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pulokesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Pulokesh Karmakar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 07:07:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207048#M472285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T07:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207049#M472286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sachin,&lt;/P&gt;&lt;P&gt;                 Have u tried the sample codes that i have provided to u. The last one should surely work in ECC6.0. If helpful please reward with some points. Eagerly waiting for your reply.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pulokesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 07:31:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207049#M472286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T07:31:58Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207050#M472287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear pulokesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot!!!&lt;/P&gt;&lt;P&gt;Below code is working fine: -&lt;/P&gt;&lt;P&gt;DATA: T_ZTEST TYPE zsdmmpp02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF GT_T08,&lt;/P&gt;&lt;P&gt;RC(1) TYPE C.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE T_ZTEST.&lt;/P&gt;&lt;P&gt;TYPES: END OF GT_T08.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Full marks to you!!!&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 07:42:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207050#M472287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T07:42:47Z</dc:date>
    </item>
    <item>
      <title>Re: SLIN error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207051#M472288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sachin,&lt;/P&gt;&lt;P&gt;                 Lot of thanks to you for providing points. Hope to share more experience.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pulokesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 07:50:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/slin-error/m-p/2207051#M472288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T07:50:47Z</dc:date>
    </item>
  </channel>
</rss>

