<?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: Issue with Message &amp; Matchcode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262377#M779489</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vivek&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. The first error "MESSAGE-ID xx" is missing in the "REPORT" is due to the fact that you must not have declared the message class to which this message number should refer to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can solve this issue by specifying the message class. Lets say it is X. so you can write the code as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF P_OPTN1 NE SPACE AND P_OPTN2 NE SPACE.&lt;/P&gt;&lt;P&gt;MESSAGE E000(X)th 'Select only one option' TYPE 'S'.&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. I dont think attaching a matchcode object to this will help   you get the desired functionality. you will have to debug and see how SAP has done it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;shivika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Jan 2008 09:28:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-14T09:28:10Z</dc:date>
    <item>
      <title>Issue with Message &amp; Matchcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262374#M779486</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;I need help on 2 issues.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I have 2 checkboxes on the selection screen of a query &amp;amp; if user selects both, i want an error message to be displayed. I have entered the below code in 'Start of Selection' section of my infoset, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Code&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;IF P_OPTN1 NE SPACE AND P_OPTN2 NE SPACE.&lt;/P&gt;&lt;P&gt;  MESSAGE E000 with 'Select only one option' TYPE 'S'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But system prompts this message - &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;"MESSAGE-ID xx" is missing in the "REPORT" statement.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. In my selections tab, i have defined one input as 'Parameter' &amp;amp; want to have the feature, where when the user double clicks, the 'Select by initial value' pop up box appears where he can select relational operators (i.e. =, &amp;lt;, &amp;gt; etc). &lt;/P&gt;&lt;P&gt;I find this feature when i run transaction SE16 for MBEW table, for the field LBKUM when i double click i find this feature. So i entered &lt;STRONG&gt;MATCHCODE OBJECT VAL 'MBEW-LBKUM'&lt;/STRONG&gt; for the parameter, but system prompts &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'Unable to interpret "'MBEW-LBKUM'". Possible causes of error: Incorrect spelling or comma error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Await inputs to resolve my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 09:07:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262374#M779486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T09:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Message &amp; Matchcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262375#M779487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; in the report statement u have define ur message class.&lt;/P&gt;&lt;P&gt;REPORT  zcl_timesheet_approval MESSAGE-ID zcl_msg.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Plzz reward points if it helps.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 09:14:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262375#M779487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T09:14:22Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Message &amp; Matchcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262376#M779488</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 : Create a message class ... and in the with report heading &lt;/P&gt;&lt;P&gt; ie report "program" message-id 'ZMSG'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or u can rectify the error &lt;/P&gt;&lt;P&gt;message e000(8i) with 'Select only one option'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Create a search help and &lt;/P&gt;&lt;P&gt;   assign the search  help to the parameter.&lt;/P&gt;&lt;P&gt;   for eg: parameters: s_lbkum for mbew-lbkum matchcode id '&amp;lt;search help name&amp;gt;'.&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;Santosh Thorat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 09:15:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262376#M779488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T09:15:08Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Message &amp; Matchcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262377#M779489</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vivek&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. The first error "MESSAGE-ID xx" is missing in the "REPORT" is due to the fact that you must not have declared the message class to which this message number should refer to.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can solve this issue by specifying the message class. Lets say it is X. so you can write the code as:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF P_OPTN1 NE SPACE AND P_OPTN2 NE SPACE.&lt;/P&gt;&lt;P&gt;MESSAGE E000(X)th 'Select only one option' TYPE 'S'.&lt;/P&gt;&lt;P&gt;ENDIF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. I dont think attaching a matchcode object to this will help   you get the desired functionality. you will have to debug and see how SAP has done it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;shivika&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 09:28:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262377#M779489</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T09:28:10Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Message &amp; Matchcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262378#M779490</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;Thanks for the inputs. The issue is i am trying to build a infoset-query in SQ02, so i do not have a report name as such. So how can i implement it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried with &lt;STRONG&gt;message e000(8i)&lt;/STRONG&gt; , the problem with this is, the system issues this message &amp;amp; takes me back to the query instead of remaining on the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So how can i display this message &amp;amp; still remain on the selection screen for the user to make a fresh selection &amp;amp; execute the query.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 10:06:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262378#M779490</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T10:06:01Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Message &amp; Matchcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262379#M779491</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;DATA: mid  TYPE sy-msgid VALUE 'SABAPDOCU', &lt;/P&gt;&lt;P&gt;      mtype TYPE sy-msgty VALUE 'I', &lt;/P&gt;&lt;P&gt;      num  TYPE sy-msgno VALUE '888'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE ID mid TYPE mtype NUMBER num with 'ur text'.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Plzz reward points if it helps&lt;/STRONG&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Jan 2008 10:10:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262379#M779491</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-14T10:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with Message &amp; Matchcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262380#M779492</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manjari,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you very much for your help, it solved my problem. Keep the good work going...!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note for others: Thanks for your inputs as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vivek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 15 Jan 2008 02:55:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-message-matchcode/m-p/3262380#M779492</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-15T02:55:35Z</dc:date>
    </item>
  </channel>
</rss>

