<?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 Generic Type Error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/generic-type-error/m-p/6562907#M1431621</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,  Used generic type is clike&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abap code :  data lv_clike TYPE CLIKE . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax Error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"CLIKE" is a generic type. A type reference is possible only for field&lt;/P&gt;&lt;P&gt;symbols and formal parameters . . . . . . . . . .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Burhan KARADERE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 02 Feb 2010 11:54:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-02T11:54:20Z</dc:date>
    <item>
      <title>Generic Type Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generic-type-error/m-p/6562907#M1431621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,  Used generic type is clike&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Abap code :  data lv_clike TYPE CLIKE . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax Error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"CLIKE" is a generic type. A type reference is possible only for field&lt;/P&gt;&lt;P&gt;symbols and formal parameters . . . . . . . . . .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Burhan KARADERE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Feb 2010 11:54:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generic-type-error/m-p/6562907#M1431621</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-02T11:54:20Z</dc:date>
    </item>
    <item>
      <title>Re: Generic Type Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generic-type-error/m-p/6562908#M1431622</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;CLIKE can be used only with field symbols. For example.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
field-SYMBOLS &amp;lt;fs&amp;gt; type clike.
data tab(10).

assign tab to &amp;lt;fs&amp;gt;.
&amp;lt;fs&amp;gt; = 'TABLE'.
write &amp;lt;fs&amp;gt;.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sachin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Feb 2010 12:03:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generic-type-error/m-p/6562908#M1431622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-02T12:03:20Z</dc:date>
    </item>
    <item>
      <title>Re: Generic Type Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generic-type-error/m-p/6562909#M1431623</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In addition, CLIKE is allowed n the signature of methods.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Feb 2010 12:08:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generic-type-error/m-p/6562909#M1431623</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2010-02-02T12:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: Generic Type Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generic-type-error/m-p/6562910#M1431624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PARAMETERS  with    can  I use  ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Feb 2010 12:14:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generic-type-error/m-p/6562910#M1431624</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-02T12:14:17Z</dc:date>
    </item>
    <item>
      <title>Re: Generic Type Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generic-type-error/m-p/6562911#M1431625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you do not know the length for the c var you need to store use strings instead.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Feb 2010 12:34:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generic-type-error/m-p/6562911#M1431625</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2010-02-02T12:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: Generic Type Error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/generic-type-error/m-p/6562912#M1431626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE level="1"&gt;&lt;/BLOCKQUOTE&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; If you do not know the length for the c var you need to store use strings instead.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-SYMBOLS " is unknown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Feb 2010 12:46:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/generic-type-error/m-p/6562912#M1431626</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-02T12:46:37Z</dc:date>
    </item>
  </channel>
</rss>

