<?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: Unicode Error MESSAGEGY/ in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-messagegy/m-p/4539366#M1072429</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the fields in t510 must be different from fields in the workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you havent pasted the code for the work area. system has no clue to pass which fields of t510, to which fields of the workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyway, 'into corresponding fields of' shud help..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Oct 2008 15:22:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-10-01T15:22:04Z</dc:date>
    <item>
      <title>Unicode Error MESSAGEGY/</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-messagegy/m-p/4539364#M1072427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys/Dolls&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We'te in the process of upgrading our system to make it uncode compliant.&lt;/P&gt;&lt;P&gt;On one of the programs when I run the "uccheck" program it's coming up with the following error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The type of the database table and work area( or internal table )&lt;/P&gt;&lt;P&gt;u201CWA_P0008u201D are not Unicode convertible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The section of code its complaining about is as follows:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;* Look for indicator I when the payscale group is controlled
* from T510.

DATA: wa_P0008 type P0008.

  select * from T510 into wa_P0008 where
*         mandt = sy-mandt and
         molga = '08' and
         trfar = p0008-trfar and
         trfgb = P0008-trfgb and
*         trfkz = p0008-trfkz and
         trfgr = p0008-trfgr and
         trfst = p0008-trfst and
*         lgart = p0008-lgart and
         endda = p0008-endda.
    if sy-subrc = 0.
* First check that it is not an AH level
      if p0008-trfst &amp;lt;&amp;gt; 'AH'.
        if p0008-ind01 &amp;lt;&amp;gt; 'I'.
          RT_OUTTAB-zzmesstype = '5'.
          RT_OUTTAB-zzmesssort = 'II'.
          RT_OUTTAB-zzmessage_95 =
           'MISSING INDIRECT INDICATOR'.
          APPEND RT_OUTTAB.
        endif.
      endif.
    endif.
  endselect.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any of you guru's assist - preferably with alternative code to the above.&lt;/P&gt;&lt;P&gt;Many thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 15:04:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-messagegy/m-p/4539364#M1072427</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T15:04:35Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Error MESSAGEGY/</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-messagegy/m-p/4539365#M1072428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Select...Endselect statement is absolate in modern ABAP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to avoid this loop. Better you fetch the data into 1 internal table and then loop the fetched data, based on your conditions you move the data into RT_OUTTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: wa_P0008 type P0008,&lt;/P&gt;&lt;P&gt;t_P0008 type standard table of P0008.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from T510 into corresponding fields of  table t_P0008 where&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        mandt = sy-mandt and&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         molga = '08' and&lt;/P&gt;&lt;P&gt;         trfar = p0008-trfar and&lt;/P&gt;&lt;P&gt;         trfgb = P0008-trfgb and&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        trfkz = p0008-trfkz and&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         trfgr = p0008-trfgr and&lt;/P&gt;&lt;P&gt;         trfst = p0008-trfst and&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        lgart = p0008-lgart and&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;         endda = p0008-endda.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 15:18:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-messagegy/m-p/4539365#M1072428</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T15:18:51Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Error MESSAGEGY/</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-messagegy/m-p/4539366#M1072429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the fields in t510 must be different from fields in the workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you havent pasted the code for the work area. system has no clue to pass which fields of t510, to which fields of the workarea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyway, 'into corresponding fields of' shud help..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 15:22:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-messagegy/m-p/4539366#M1072429</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T15:22:04Z</dc:date>
    </item>
    <item>
      <title>Re: Unicode Error MESSAGEGY/</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-messagegy/m-p/4539367#M1072430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;P0008 and T510 have entirely different structures. You may be able to get away with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select * from T510 into CORRESPONDING FIELDS OF wa_P0008 where&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I'd look at your logic too.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Oct 2008 15:23:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/unicode-error-messagegy/m-p/4539367#M1072430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-10-01T15:23:14Z</dc:date>
    </item>
  </channel>
</rss>

