<?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: Change message types in Code Inspector in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-message-types-in-code-inspector/m-p/5823465#M1315374</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinod,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can change the priority of the rules:&lt;/P&gt;&lt;P&gt;    SCI&lt;/P&gt;&lt;P&gt;     Goto/Management of/Message Priorities&lt;/P&gt;&lt;P&gt;     Browse the rule you want to change &lt;/P&gt;&lt;P&gt;     Click on the icon, and select the new value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attila&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jul 2011 14:41:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-07-05T14:41:45Z</dc:date>
    <item>
      <title>Change message types in Code Inspector</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-message-types-in-code-inspector/m-p/5823462#M1315371</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;Can anyone let me know how to change the message type in the code inspector results ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to change the message type from warning to error or vice-versa. I looked for the classes but could not figure out the exact class and the process to do so. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any help is much appriciated.&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>Wed, 24 Jun 2009 18:25:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-message-types-in-code-inspector/m-p/5823462#M1315371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-24T18:25:53Z</dc:date>
    </item>
    <item>
      <title>Re: Change message types in Code Inspector</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-message-types-in-code-inspector/m-p/5823463#M1315372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Code Inspector Messages properties are stored in the table SLIN_DESC. There is also a type pool SLIN which contains this data. I don't know any transaction which will allow you to change the message types.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 19:57:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-message-types-in-code-inspector/m-p/5823463#M1315372</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2009-06-24T19:57:23Z</dc:date>
    </item>
    <item>
      <title>Re: Change message types in Code Inspector</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-message-types-in-code-inspector/m-p/5823464#M1315373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There are certain options to supress error messages. You can find more information by clicking the 'i' button type being displayed in the code inspector results page. Here are some of the options,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. ("#EC *) exculdes error messages regarding the current ABAP command&lt;/P&gt;&lt;P&gt;2. ("#EC NOTEXT) indicates that a string does not have to be stored as a text element&lt;/P&gt;&lt;P&gt;3. ("#EC CALLED) indicates that a FORM has a PERFORM call&lt;/P&gt;&lt;P&gt;4. ("#EC NEEDED) - no messages are output about a field that is only read&lt;/P&gt;&lt;P&gt;5. ("#EC PORTABLE) turns off the ASCII/EBCDIC test&lt;/P&gt;&lt;P&gt;6. ("#EC NOBREAK) - no messages are sent at BREAK-POINTs&lt;/P&gt;&lt;P&gt;7. ("#EC TRANSLANG) specifies that the use of TOUPPER or TOLOWER is also safe in multilingual systems.&lt;/P&gt;&lt;P&gt;8. ("#EC SYNTCHAR) specifies that the data TOUPPER or TOLOWER is used on contains only characters from the syntactical character set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One example given there..&lt;/P&gt;&lt;P&gt;DATA: I TYPE I. "#EC NEEDED&lt;/P&gt;&lt;P&gt;I = 4.&lt;/P&gt;&lt;P&gt;BREAK-POINT.    "#EC NOBREAK&lt;/P&gt;&lt;P&gt;WRITE 'Hugo'.   "#EC NOTEXT&lt;/P&gt;&lt;P&gt;IF 'a' &amp;lt; 'c'.   "#EC PORTABLE&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;FORM AB.        "#EC CALLED&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Susanta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Jun 2009 20:19:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-message-types-in-code-inspector/m-p/5823464#M1315373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-24T20:19:11Z</dc:date>
    </item>
    <item>
      <title>Re: Change message types in Code Inspector</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-message-types-in-code-inspector/m-p/5823465#M1315374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vinod,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can change the priority of the rules:&lt;/P&gt;&lt;P&gt;    SCI&lt;/P&gt;&lt;P&gt;     Goto/Management of/Message Priorities&lt;/P&gt;&lt;P&gt;     Browse the rule you want to change &lt;/P&gt;&lt;P&gt;     Click on the icon, and select the new value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attila&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jul 2011 14:41:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-message-types-in-code-inspector/m-p/5823465#M1315374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-05T14:41:45Z</dc:date>
    </item>
  </channel>
</rss>

