<?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: Message_type_x ERROR in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889885#M1326243</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;Generally this error comes due to difference in field names field catalog fields name with internal table.&lt;/P&gt;&lt;P&gt;Compare your field catalog fields name with internal table field names.&lt;/P&gt;&lt;P&gt;comment all the field catalog fields and re-paste one by one and try executing report.&lt;/P&gt;&lt;P&gt;you have to check same for all the fields in field catalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if possible copy paste the names froom internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is not a major mistake but minor one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Jul 2009 04:45:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-24T04:45:59Z</dc:date>
    <item>
      <title>Message_type_x ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889883#M1326241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting short dump error when trying to sort and get the sum of the total  by pressing (sigma ) in ALV grid report, it is displaying wiht Key work MESSAGE (type X). I try commenting on Message in ALV fuction but still the same &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any help will be appriciable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHORT TEXT ERROR MESSAGE AS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;techinical information about messe&lt;/P&gt;&lt;P&gt;Message class................." ok"&lt;/P&gt;&lt;P&gt;Number .............................000 &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;&lt;/P&gt;&lt;P&gt;if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;    message x000(ok).&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Eg &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA:BEGIN OF WA,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FKONT	LIKE	BSAS-FKONT,&lt;/P&gt;&lt;P&gt;DMBTR	type	BSAS-DMBTR,&lt;/P&gt;&lt;P&gt;WRBTR	type	BSAS-WRBTR,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END OF WA.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   fieldcatalog-fieldname     = 'DMBTR'.&lt;/P&gt;&lt;P&gt;   fieldcatalog-ref_tabname   = 'BSAS'.&lt;/P&gt;&lt;P&gt;   fieldcatalog-ref_fieldname = 'DMBTR'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  fieldcatalog-row_pos       = '1'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   fieldcatalog-col_pos       = '19'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    fieldcatalog-outputlen = '18'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   fieldcatalog-seltext_l     = 'Total'.&lt;/P&gt;&lt;P&gt;   fieldcatalog-seltext_m     = 'Total'.&lt;/P&gt;&lt;P&gt;   fieldcatalog-seltext_s     = 'Total'.&lt;/P&gt;&lt;P&gt;   fieldcatalog-ddictxt       = 'L'.&lt;/P&gt;&lt;P&gt;  append  fieldcatalog to  fieldcatalog.&lt;/P&gt;&lt;P&gt;  clear fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;......&lt;/P&gt;&lt;P&gt;form display_alv_report.&lt;/P&gt;&lt;P&gt;  gd_repid = sy-repid.&lt;/P&gt;&lt;P&gt;  call function 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            i_callback_program      = gd_repid&lt;/P&gt;&lt;P&gt;            i_callback_top_of_page   = 'TOP-OF-PAGE'  "see FORM&lt;/P&gt;&lt;P&gt;            i_callback_user_command = 'USER_COMMAND'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           i_grid_title           = outtext&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            is_layout               = gd_layout&lt;/P&gt;&lt;P&gt;            it_fieldcat             = fieldcatalog[]&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           it_special_groups       = gd_tabgroup&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            it_events               = gt_events&lt;/P&gt;&lt;P&gt;            is_print                = gd_prntparams&lt;/P&gt;&lt;P&gt;            i_save                  = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           is_variant              = z_template&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            t_outtab                = iTAB&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            program_error           = 1&lt;/P&gt;&lt;P&gt;            others                  = 2.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; if sy-subrc NE 0.&lt;/P&gt;&lt;/LI&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt; &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   message a000(0k) with 'IN: LVC_TABLE_FOR_DISPLAY'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                         'ERROR: FIELDCAT_NOT_COMPLETE'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                    raising fieldcat_not_complete.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    " DISPLAY_ALV_REPORT&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;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2009 04:11:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889883#M1326241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-24T04:11:53Z</dc:date>
    </item>
    <item>
      <title>Re: Message_type_x ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889884#M1326242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check the field catalog if every thing is fine...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use i_save = 'X' and i_default = 'X'. in the FM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2009 04:32:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889884#M1326242</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-07-24T04:32:46Z</dc:date>
    </item>
    <item>
      <title>Re: Message_type_x ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889885#M1326243</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;Generally this error comes due to difference in field names field catalog fields name with internal table.&lt;/P&gt;&lt;P&gt;Compare your field catalog fields name with internal table field names.&lt;/P&gt;&lt;P&gt;comment all the field catalog fields and re-paste one by one and try executing report.&lt;/P&gt;&lt;P&gt;you have to check same for all the fields in field catalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if possible copy paste the names froom internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is not a major mistake but minor one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2009 04:45:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889885#M1326243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-24T04:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Message_type_x ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889886#M1326244</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;Generally this error comes due to difference in field names field catalog fields name with internal table.&lt;/P&gt;&lt;P&gt;Compare your field catalog fields name with internal table field names.&lt;/P&gt;&lt;P&gt;comment all the field catalog fields and re-paste one by one and try executing report.&lt;/P&gt;&lt;P&gt;you have to check same for all the fields in field catalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if possible copy paste the names froom internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it is not a major mistake but minor one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Anil&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2009 04:46:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889886#M1326244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-24T04:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Message_type_x ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889887#M1326245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;Did you write the FORM of the dynamic subroutine like &lt;STRONG&gt;'USER_COMMAND'&lt;/STRONG&gt; ?&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;i_callback_top_of_page = 'TOP-OF-PAGE' "see FORM
i_callback_user_command = 'USER_COMMAND'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have not written the form of the subroutine write like that - -&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;.
  .
 i_callback_user_command           = 'UCOMM'

  .
 .
FORM ucomm USING command TYPE sy-ucomm
                 selfld TYPE slis_selfield.
  CASE sy-ucomm.
    WHEN 'PROCEED'.
      WRITE 123.
  ENDCASE.
ENDFORM.                    "UCOMM&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or else Paste the entire code .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pinaki&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2009 04:47:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889887#M1326245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-24T04:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: Message_type_x ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889888#M1326246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your contribution, actually there was a problem with my GUI patch, I fixed it now &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thread closed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2009 06:53:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889888#M1326246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-03T06:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: Message_type_x ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889889#M1326247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Piroz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ta...I told you earlier that this might be problem of your patch now you got it &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2009 07:01:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889889#M1326247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-03T07:01:25Z</dc:date>
    </item>
    <item>
      <title>Re: Message_type_x ERROR</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889890#M1326248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Identity crisis?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pk&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 03 Aug 2009 07:03:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-type-x-error/m-p/5889890#M1326248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-03T07:03:43Z</dc:date>
    </item>
  </channel>
</rss>

