<?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 ABAP COMPILATION ERROR in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-compilation-error/m-p/3477059#M835845</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 am running the following code in abap editor &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:	LEN TYPE I VALUE 10,&lt;/P&gt;&lt;P&gt;	POS TYPE I VALUE 11,&lt;/P&gt;&lt;P&gt;	TEXT(10) VALUE &amp;#145;1234567890&amp;#146;&lt;/P&gt;&lt;P&gt;WRITE AT POS (LEN) TEXT .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following error i am getting when i compile &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field "1234567890" is unknown. It is neithere in on of the specified tables nor defined by a DATA statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please let me know the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;RamuV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 13 Mar 2008 12:26:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-13T12:26:07Z</dc:date>
    <item>
      <title>ABAP COMPILATION ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-compilation-error/m-p/3477059#M835845</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 am running the following code in abap editor &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:	LEN TYPE I VALUE 10,&lt;/P&gt;&lt;P&gt;	POS TYPE I VALUE 11,&lt;/P&gt;&lt;P&gt;	TEXT(10) VALUE &amp;#145;1234567890&amp;#146;&lt;/P&gt;&lt;P&gt;WRITE AT POS (LEN) TEXT .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Following error i am getting when i compile &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field "1234567890" is unknown. It is neithere in on of the specified tables nor defined by a DATA statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you please let me know the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;RamuV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2008 12:26:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-compilation-error/m-p/3477059#M835845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-13T12:26:07Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP COMPILATION ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-compilation-error/m-p/3477060#M835846</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; You missed '.' at the end of  &amp;#145;1234567890&amp;#146;. Place this to avoid the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: LEN TYPE I VALUE 10,&lt;/P&gt;&lt;P&gt;POS TYPE I VALUE 11,&lt;/P&gt;&lt;P&gt;TEXT(10) VALUE &amp;#145;1234567890&amp;#146;&lt;STRONG&gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;WRITE AT POS (LEN) TEXT .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2008 12:27:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-compilation-error/m-p/3477060#M835846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-13T12:27:46Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP COMPILATION ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-compilation-error/m-p/3477061#M835847</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;declaration is not having full point  and '.' is missing &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: LEN TYPE I VALUE 10,&lt;/P&gt;&lt;P&gt;POS TYPE I VALUE 11,&lt;/P&gt;&lt;P&gt;TEXT(10) VALUE &amp;#145;1234567890&amp;#146;.&lt;/P&gt;&lt;P&gt;WRITE AT POS (LEN) TEXT .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2008 12:33:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-compilation-error/m-p/3477061#M835847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-13T12:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP COMPILATION ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-compilation-error/m-p/3477062#M835848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There appear to be some garbage characters in this line and your WRITE is incorrect. Cut and paste this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: len TYPE i VALUE 10,
      pos TYPE i VALUE 11,
      text(10) VALUE '1234567890'.

WRITE AT pos(len) text .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2008 14:00:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-compilation-error/m-p/3477062#M835848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-13T14:00:45Z</dc:date>
    </item>
  </channel>
</rss>

