<?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: RAISE_EXCEPTION Error. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/raise-exception-error/m-p/5638611#M1283402</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;This exception problem arieses due to the Authorisation problem. Once you uncomment the exception part, then it will show you the proper messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sachin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 May 2009 05:09:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-05-18T05:09:42Z</dc:date>
    <item>
      <title>RAISE_EXCEPTION Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/raise-exception-error/m-p/5638608#M1283399</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Gurus.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have made a program and used a picture container in that program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using this following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call method cl_ssf_xsf_utilities=&amp;gt;get_bds_graphic_as_bmp
    exporting
      p_object       = 'GRAPHICS'
      p_name         = 'Snak TpF Logo'
      p_id           = 'BMAP'
      p_btype        = 'BCOL'
    receiving
      p_bmp          = l_graphic_xstr
*  EXCEPTIONS
*    NOT_FOUND      = 1
*    INTERNAL_ERROR = 2
*    others         = 3
          .
  if sy-subrc &amp;lt;&amp;gt; 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;After transporting my program to Production Server.&lt;/P&gt;&lt;P&gt;My Program is Running Fine on my ID in Development ID having full access to every module.&lt;/P&gt;&lt;P&gt;But when the client runs this program&lt;/P&gt;&lt;P&gt;it throws a message of RAISE_EXCEPTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"RAISE_EXCEPTION" " "&lt;/P&gt;&lt;P&gt;"CL_SSF_XSF_UTILITIES==========CP" or "CL_SSF_XSF_UTILITIES======&lt;/P&gt;&lt;P&gt;"GET_BDS_GRAPHIC_AS_BMP"&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;"CL_SSF_XSF_UTILITIES==========CP" "INTERNAL_ERROR"&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;"ZAPPRAISAL_SNAK2 " "INTERNAL_ERROR"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLease help me  regarding this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saad Nisar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2009 04:36:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/raise-exception-error/m-p/5638608#M1283399</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-18T04:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: RAISE_EXCEPTION Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/raise-exception-error/m-p/5638609#M1283400</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;You &lt;STRONG&gt;uncomment the the EXCEPTIONS&lt;/STRONG&gt; and check the same code .&lt;/P&gt;&lt;P&gt;Would you please check the bellow code --&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;call method cl_ssf_xsf_utilities=&amp;gt;get_bds_graphic_as_bmp
    exporting
      p_object       = 'GRAPHICS'
      p_name         = 'Snak TpF Logo'
      p_id           = 'BMAP'
      p_btype        = 'BCOL'
    receiving
      p_bmp          = l_graphic_xstr
  EXCEPTIONS     " uncommented
    NOT_FOUND      = 1   " uncommented
    INTERNAL_ERROR = 2    " uncommented
   others         = 3     " uncommented
          .
  if sy-subrc  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;Note : It is for sure that the user lacking some otherization.&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>Mon, 18 May 2009 04:46:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/raise-exception-error/m-p/5638609#M1283400</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-18T04:46:23Z</dc:date>
    </item>
    <item>
      <title>Re: RAISE_EXCEPTION Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/raise-exception-error/m-p/5638610#M1283401</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2009 05:03:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/raise-exception-error/m-p/5638610#M1283401</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-18T05:03:49Z</dc:date>
    </item>
    <item>
      <title>Re: RAISE_EXCEPTION Error.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/raise-exception-error/m-p/5638611#M1283402</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;This exception problem arieses due to the Authorisation problem. Once you uncomment the exception part, then it will show you the proper messages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sachin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 May 2009 05:09:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/raise-exception-error/m-p/5638611#M1283402</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-05-18T05:09:42Z</dc:date>
    </item>
  </channel>
</rss>

