<?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: syntax error: in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3779757#M909455</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;2 problems with your code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) The single quote marks  '   in your code is not the correct quote mark... try re-entering them...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) /0 is not a valid column position... use /1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: /1 'number of entries in marc:', 60 sy-tfill.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dave...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 May 2008 15:49:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-02T15:49:07Z</dc:date>
    <item>
      <title>syntax error:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3779754#M909452</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;for the following code i am getting the synatx error:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE lt_marc LINES sy-tfill.&lt;/P&gt;&lt;P&gt;WRITE: /0 &amp;#145;number of entries in marc:&amp;#146; ,  60 sy-tfill.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------------------------------" /&gt;&lt;P&gt;Field "&amp;#145;NUMBER" is unknown. It is neither in one of the specified.&lt;/P&gt;&lt;P&gt;tables nor defined by a "DATA" statement.	&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried various options but error remains the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any ideas?&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 15:37:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3779754#M909452</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T15:37:44Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3779755#M909453</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;it seems that you have copied this code from some flat file or some where else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so remone comman from statement &amp;#145;number of entries in marc:&amp;#146;  and put back from keybord.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and instead of using 0 (zero) in write:/0  use some number .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 15:44:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3779755#M909453</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T15:44:48Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3779756#M909454</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 this code..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data: Var like sy-tfill.&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE lt_marc LINES var.&lt;/P&gt;&lt;P&gt;WRITE: /1 &amp;#145;number of entries in marc:&amp;#146; , 60 var.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chithra&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Chithra Saravanan on May 2, 2008 9:28 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 15:45:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3779756#M909454</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T15:45:08Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3779757#M909455</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;2 problems with your code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) The single quote marks  '   in your code is not the correct quote mark... try re-entering them...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) /0 is not a valid column position... use /1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE: /1 'number of entries in marc:', 60 sy-tfill.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dave...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 May 2008 15:49:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3779757#M909455</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-02T15:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: syntax error:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3779758#M909456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raj,&lt;/P&gt;&lt;P&gt;Check this statement.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DESCRIBE TABLE lt_marc LINES sy-tfill.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U are trying to fill system variable in describe table. This is not required.&lt;/P&gt;&lt;P&gt;When u execute describe table it will automatically fills the system variables. Second thing is WRITE:/0 even though it is syntactically correct generally we will start at position1. &lt;/P&gt;&lt;P&gt;So Do like below.&lt;/P&gt;&lt;P&gt;DESCRIBE TABLE lt_marc.&lt;/P&gt;&lt;P&gt;WRITE: /1 &amp;#145;number of entries in marc:&amp;#146; , 60 sy-tfill.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will solve ur problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 May 2008 10:52:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error/m-p/3779758#M909456</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-05-03T10:52:01Z</dc:date>
    </item>
  </channel>
</rss>

