<?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: Blank msgtyp return in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-msgtyp-return/m-p/4362265#M1038264</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Everyone, Rewarded the points &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;DNP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 29 Aug 2008 14:48:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-29T14:48:10Z</dc:date>
    <item>
      <title>Blank msgtyp return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-msgtyp-return/m-p/4362262#M1038261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   I have a situation where a function module is returing a " " msgtyp which throws the dump with exception &lt;/P&gt;&lt;P&gt;MESSAGE_TYPE_UNKNOWN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function module is MS_EXCEL_OLE_STANDARD_DAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What is the best way to handle this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;DNP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Aug 2008 14:21:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-msgtyp-return/m-p/4362262#M1038261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-29T14:21:33Z</dc:date>
    </item>
    <item>
      <title>Re: Blank msgtyp return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-msgtyp-return/m-p/4362263#M1038262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Welcome to SDN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After calling the FM through pattern by default u might be getting some thing line below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt; MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If u uncommented above message then just comment itout&lt;/STRONG&gt; &lt;STRONG&gt;and issue your own message.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;*MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;*WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MESSAGE 'Unknown error' TYPE i.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U can give appropriate message text and type.&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>Fri, 29 Aug 2008 14:35:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-msgtyp-return/m-p/4362263#M1038262</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-08-29T14:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Blank msgtyp return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-msgtyp-return/m-p/4362264#M1038263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Include " LKKBLF90"&lt;/P&gt;&lt;P&gt;FYI &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; 
  call function 'MS_EXCEL_OLE_STANDARD_DAT'
       exporting
            file_name                 = 'C:\SAPPCADM\ALV_TEST'
            create_pivot              = 0
*           DATA_SHEET_NAME           = ' '
*           PIVOT_SHEET_NAME          = ' '
*           PASSWORD                  = ' '
*           PASSWORD_OPTION           = 0
       tables
*           PIVOT_FIELD_TAB           =
            data_tab                  = lt_data
            fieldnames                = lt_fnames
       exceptions
            file_not_exist            = 1
            filename_expected         = 2
            communication_error       = 3
            ole_object_method_error   = 4
            ole_object_property_error = 5
*            invalid_filename          = 6
            invalid_pivot_fields      = 6
            download_problem          = 7
            others                    = 8.
  *if sy-subrc ne 0.*
    *message id sy-msgid type sy-msgty number sy-msgno*
            *with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.*
  *endif.*
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;^Saquib&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Aug 2008 14:36:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-msgtyp-return/m-p/4362264#M1038263</guid>
      <dc:creator>former_member181966</dc:creator>
      <dc:date>2008-08-29T14:36:59Z</dc:date>
    </item>
    <item>
      <title>Re: Blank msgtyp return</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-msgtyp-return/m-p/4362265#M1038264</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Everyone, Rewarded the points &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;DNP&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Aug 2008 14:48:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-msgtyp-return/m-p/4362265#M1038264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-29T14:48:10Z</dc:date>
    </item>
  </channel>
</rss>

