<?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 Write statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289442#M499288</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;My apologies :-&lt;/P&gt;&lt;P&gt;I missed the comma previously.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Errored Code :-&lt;/P&gt;&lt;P&gt;WRITE : / 'Insert Failure in Ztable for' ,&lt;/P&gt;&lt;P&gt;IT_Ztable_TEMP .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anoop&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 May 2007 12:58:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-18T12:58:52Z</dc:date>
    <item>
      <title>Syntax error in Write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289434#M499280</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 have a piece of code migrated from 4.5b to ecc 6.0 giving me an error in Write statement :-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE : / 'Insert Failure in Ztable for'&lt;/P&gt;&lt;P&gt;                  IT_Ztable_TEMP .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Syntax check throws an error like :-&lt;/P&gt;&lt;P&gt;"IT_Ztable_TEMP" cannot be converted to a character-type field.	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What could be the possible solution to this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anoop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 12:38:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289434#M499280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T12:38:20Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error in Write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289435#M499281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;IT_Ztable_TEMP is an internal table, u have to specify the fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;WRITE : / 'Insert Failure in Ztable for'  , IT_Ztable_TEMP-field .&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but not sure if this is ur requirement&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 12:42:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289435#M499281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T12:42:19Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error in Write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289436#M499282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you missed the comma, follow syntax below:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WRITE : / 'Insert Failure in Ztable for',
                        IT_Ztable_TEMP .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 12:42:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289436#M499282</guid>
      <dc:creator>Sougata</dc:creator>
      <dc:date>2007-05-18T12:42:54Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error in Write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289437#M499283</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;WRITE : / 'Insert Failure in Ztable for' , IT_Ztable_TEMP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did you put comma after the text in write statement,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rewards if correct &lt;/P&gt;&lt;P&gt;else give your past your code we can help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;nazeer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 12:43:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289437#M499283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T12:43:16Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error in Write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289438#M499284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anoop Mukundan,&lt;/P&gt;&lt;P&gt;      Try specifying each and every field instead of the entire work area. Also I can't find out ','  between "Insert Failure in Ztable for" and "IT_Ztable_TEMP".&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 12:43:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289438#M499284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T12:43:39Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error in Write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289439#M499285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi anoop,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE : / 'Insert Failure in Ztable for'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for this above write st u didnt gave any position . write like this &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE : /10  'Insert Failure in Ztable for'. [or]&lt;/P&gt;&lt;P&gt;WRITE  'Insert Failure in Ztable for'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful reward some points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;with regards,&lt;/P&gt;&lt;P&gt;suresh babu aluri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 12:43:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289439#M499285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T12:43:52Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error in Write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289440#M499286</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;1) Put a comma after each field even the hardcoded one.&lt;/P&gt;&lt;P&gt;2) Check for the Currency, integer fields in a structure.&lt;/P&gt;&lt;P&gt;3) Check if ur using itab to print directly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Sandeep&lt;/P&gt;&lt;P&gt;Reward if helpful &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 12:48:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289440#M499286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T12:48:03Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error in Write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289441#M499287</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;u can't print all the fields in an itab directly if they have any currency,quantity,pack type of fields.in that u should print the table contents like &lt;/P&gt;&lt;P&gt;write:/ itab-fld1,itab-fld2,itab-fld3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 12:53:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289441#M499287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T12:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: Syntax error in Write statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289442#M499288</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;My apologies :-&lt;/P&gt;&lt;P&gt;I missed the comma previously.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Errored Code :-&lt;/P&gt;&lt;P&gt;WRITE : / 'Insert Failure in Ztable for' ,&lt;/P&gt;&lt;P&gt;IT_Ztable_TEMP .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anoop&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 May 2007 12:58:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/syntax-error-in-write-statement/m-p/2289442#M499288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-18T12:58:52Z</dc:date>
    </item>
  </channel>
</rss>

