<?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: internal table error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151446#M117568</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dev&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is REC_TYPE a flat structure?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Jan 2006 19:42:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-26T19:42:44Z</dc:date>
    <item>
      <title>internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151442#M117564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;I got a small problem with internal table....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have an internal table &amp;lt;b&amp;gt;i_data&amp;lt;/b&amp;gt;,&lt;/P&gt;&lt;P&gt;  it has been declared as :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;begin of i_data occurs 0,&lt;/P&gt;&lt;P&gt; delimiter,&lt;/P&gt;&lt;P&gt; rec like rec_type,&lt;/P&gt;&lt;P&gt; vendor like mara-mfrnr,&lt;/P&gt;&lt;P&gt; -&lt;/P&gt;&lt;HR originaltext="-----------------" /&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------" /&gt;&lt;P&gt; end of i_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;constants:&lt;/P&gt;&lt;P&gt;rec_type(2) value 'SD'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------" /&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then i'm searching for '"' mark in that internal table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;search i_data for '"'.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;replace '"' with ' ' into i_data.&lt;/P&gt;&lt;P&gt;endif.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it is giving a syntax error saying that &amp;lt;b&amp;gt;{"i_data" must be a character data object(data type C,N,D,T, or STRING). field string)}.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anybody plz tell me, wt does it means? and how can i correct this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnks much,&lt;/P&gt;&lt;P&gt;Dev&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 18:52:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151442#M117564</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T18:52:06Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151443#M117565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dev,&lt;/P&gt;&lt;P&gt;  You have to search that in the field of the internla table i_data rather than the internal table i_data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 18:57:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151443#M117565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T18:57:29Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151444#M117566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you really mean to search i_data-rec?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;search &amp;lt;b&amp;gt;i_data-rec&amp;lt;/b&amp;gt; for '"'.
if sy-subrc = 0.
replace '"' with ' ' into i_data.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 19:01:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151444#M117566</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-26T19:01:26Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151445#M117567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How is rec_type defined?  This is passing syntax check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0002.

data:
   begin of i_data occurs 0,
      delimiter,
  &amp;lt;b&amp;gt;    rec(1000) type c,&amp;lt;/b&amp;gt;
      vendor like mara-mfrnr,
   end of i_data.


search i_data for '"'.
if sy-subrc = 0.
  replace '"' with ' ' into i_data.
endif.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 19:03:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151445#M117567</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-26T19:03:26Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151446#M117568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dev&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is REC_TYPE a flat structure?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 19:42:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151446#M117568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T19:42:44Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151447#M117569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The rec  and rec_type is nothing to do with that ' " ' in fact.&lt;/P&gt;&lt;P&gt;The thing is there is another constant defined as&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;constants: delimiter_quote as ' " '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is this causing that syntax problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz let me know....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;begin of i_data,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:28:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151447#M117569</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T20:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151448#M117570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not getting a syntax error.  Please post the entire code of the program.  Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:29:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151448#M117570</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-26T20:29:21Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151449#M117571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The problem is that I_DATA probably has one or more currency or type p or i fields (IE - non-character). Since you are searching the entire record, it won't let you. Instead of searching the entire record, you have to change it so that you are only looking at character fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:33:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151449#M117571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T20:33:05Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151450#M117572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dev,&lt;/P&gt;&lt;P&gt;  There is no Syntax error for me.Give the code &amp;amp; let us know where are you facing the problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:34:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151450#M117572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T20:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151451#M117573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;let me give u the whole thing under one context.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the constants are defined as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;constants: rec_type(2) value 'SD',&lt;/P&gt;&lt;P&gt;           delimiter_quote value ' " '.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the internal table is something like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data: begin of i_data occurs 0,&lt;/P&gt;&lt;P&gt;      delimiter,&lt;/P&gt;&lt;P&gt;      rec like rec_type,&lt;/P&gt;&lt;P&gt;      vendor like mara-mfrnr,&lt;/P&gt;&lt;P&gt;      .....................&lt;/P&gt;&lt;P&gt;      end of i_data&amp;lt;/b&amp;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;&lt;P&gt;now here i'm searching for the double quotation mark....and want to replace it with a space&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code is like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt; search i_data for ' " '.&lt;/P&gt;&lt;P&gt; if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;  replace ' " ' with ' ' into i_data.&lt;/P&gt;&lt;P&gt;endif.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;i_Data-delimiter = delimiter_quote.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and when i check this program, is giving that error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think now the scenario is clear for u...&lt;/P&gt;&lt;P&gt;let me know, if anything is ambiguous.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:42:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151451#M117573</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T20:42:27Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151452#M117574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Again, I'm not getting any syntax error.  Post the code as it is in your editor from the REPORT statement to the end of the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich HEilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:45:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151452#M117574</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-26T20:45:31Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151453#M117575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even if I add a non-character field to the I_DATA internal table, still I get no syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0002.


constants: rec_type(2) value 'SD',
           delimiter_quote value ' " '.



data: begin of i_data occurs 0,
      delimiter,
      rec like rec_type,
      vendor like mara-mfrnr,
&amp;lt;b&amp;gt;      p(10) type p decimals 2,&amp;lt;/b&amp;gt;
      end of i_data.

search i_data for ' " '.
if sy-subrc = 0.
  replace ' " ' with ' ' into i_data.
endif.

i_data-delimiter = delimiter_quote.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:47:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151453#M117575</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-26T20:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151454#M117576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes rob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have one more field " &amp;lt;b&amp;gt;rate like konp-kbetr&amp;lt;/b&amp;gt;" in the &amp;lt;b&amp;gt;i_data&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so wt do u want me to???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:48:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151454#M117576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T20:48:29Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151455#M117577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dev,&lt;/P&gt;&lt;P&gt;  I am not getting any syntax error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:49:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151455#M117577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T20:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151456#M117578</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its coming as a warning message.  This will not stop you from running the program.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich HEilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:51:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151456#M117578</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-26T20:51:46Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151457#M117579</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i made it sure that the error is caused by the field, &lt;/P&gt;&lt;P&gt;" &amp;lt;b&amp;gt;rate like konp-kbetr&amp;lt;/b&amp;gt;" only. when i delete this from the &amp;lt;b&amp;gt;i_data&amp;lt;/b&amp;gt;, i'm not getting the syntax error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;plz tell me how to overcome this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i must have that field in the i_data as it is.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:53:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151457#M117579</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T20:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151458#M117580</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In order to get rid of the warning, you must change the types of the fields to character or just search a character field of i_data.  Where are you expecting to find the '"'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0002.


constants: rec_type(2) value 'SD',
           delimiter_quote value ' " '.



data: begin of i_data occurs 0,
      delimiter,
      rec like rec_type,
      vendor like mara-mfrnr,
&amp;lt;b&amp;gt;      rate(13) type c,&amp;lt;/b&amp;gt;
      end of i_data.

search i_data for ' " '.
if sy-subrc = 0.
  replace ' " ' with ' ' into i_data.
endif.

i_data-delimiter = delimiter_quote.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Again, in my system, it is a warning message.  It will allow you to continue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:54:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151458#M117580</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-26T20:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151459#M117581</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to do what I said earlier:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of searching the entire record, you have to change it so that you are only looking at character fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could examine each field (except rate). You could also examine i_data(n) and i_data+i(j), so that you are skipping rate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There may also be a solution using field-symbols.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:56:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151459#M117581</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T20:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151460#M117582</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You might be able to get away with something like this.  I am concerned about the packed field though.  Not sure that it will show correctly in the string.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


report zrich_0002.


constants: rec_type(2) value 'SD',
           delimiter_quote value ' " '.
&amp;lt;b&amp;gt;data: string type string.&amp;lt;/b&amp;gt;


data: begin of i_data occurs 0,
      delimiter,
      rec like rec_type,
      vendor like mara-mfrnr,
   &amp;lt;b&amp;gt;   rate like konp-kbetr,&amp;lt;/b&amp;gt;
      end of i_data.

&amp;lt;b&amp;gt;string = i_data.&amp;lt;/b&amp;gt;

&amp;lt;b&amp;gt;search string for ' " '.&amp;lt;/b&amp;gt;
if sy-subrc = 0.
  replace ' " ' with ' ' into &amp;lt;b&amp;gt;string.&amp;lt;/b&amp;gt;
endif.

&amp;lt;b&amp;gt;i_data = string.&amp;lt;/b&amp;gt;
i_data-delimiter = delimiter_quote.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:58:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151460#M117582</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-26T20:58:36Z</dc:date>
    </item>
    <item>
      <title>Re: internal table error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151461#M117583</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;but rich,&lt;/P&gt;&lt;P&gt;as it is a currency field, i cant do like that.&lt;/P&gt;&lt;P&gt;when i tried to declare it as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;rate type p decimals 2.&amp;lt;/b&amp;gt; , it is giving me the same warning message...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is ther any other way to overcome that?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Jan 2006 20:59:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-table-error/m-p/1151461#M117583</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-26T20:59:29Z</dc:date>
    </item>
  </channel>
</rss>

