<?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: Regarding exception .. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345953#M802289</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;an exception is nothing else but a special class. The caller of an exception can deliver information to that class like "Hey, i cant go on further cause the database server isnt available".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this exception is not catched in your program, it will cause a sys abend delivering this inforation to the abend where you can read it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you wanna catch this exception because you want your own things to be taken place when certain erros occur you have to use the try / catch / endtry command setting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it does not make sense to catch an exception when the only thing to do is to throw the same exception again. You can skip that catch branch and the result will be the same: a sys abend.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is some code on how i am catching exceptions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA cxr type ref to cx_root.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  TRY.
//do normal stuff here

    CATCH cx_sy_file_access_error INTO cxr.
      serror = cxr-&amp;gt;get_text( ).
      MESSAGE serror TYPE 'E'.

    CATCH cx_sy_conversion_error INTO cxr.
      serror = cxr-&amp;gt;get_text( ).
      MESSAGE serror TYPE 'E'.

  ENDTRY.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is a file access error, i'll put the error mestage to the customer, E will end the program without giving an abend. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope its now a little bit clearer´&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 29 Jan 2008 09:10:47 GMT</pubDate>
    <dc:creator>rainer_hbenthal</dc:creator>
    <dc:date>2008-01-29T09:10:47Z</dc:date>
    <item>
      <title>Regarding exception ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345948#M802284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear friends,, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you kindly help me please to share your experience  .. ?? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to know how to raise exception in program (SE38). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I insert code for : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try &lt;/P&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;catch cx_root. &lt;/P&gt;&lt;P&gt;............... (1).&lt;/P&gt;&lt;P&gt;endtry. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That's "try-catch" working when there is error. The program will not exit directly. But the problem, i will not know if there is a problem, because the program run smoothly as if it were not error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My solution is: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I still wanna raise an error when error's happening, but i will catch what's transaction no that's getting error. &lt;/P&gt;&lt;P&gt;&amp;lt; i plan to insert code to raise that error in point (1) &amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i don't know how to raise the error in the program (SE38). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you help me what command that can raise the error (and the program will exit directly) ???? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Really need your help please .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Niel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 08:39:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345948#M802284</guid>
      <dc:creator>former_member187400</dc:creator>
      <dc:date>2008-01-29T08:39:29Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding exception ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345949#M802285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If i understand you correctly, you have to put the appropriate code in the catch-branch.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Either raise another exception&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;RAISE EXCEPTION TYPE ....&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or put a Message like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Message 'Error xyz found doing abc' type 'A'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Both will terminate you program with a roll back and a sys abend. You can put other code which is suitable for you, of course.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 08:45:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345949#M802285</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2008-01-29T08:45:19Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding exception ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345950#M802286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the  links.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/db98fc35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://en.wikipedia.org/wiki/ABAP" target="test_blank"&gt;http://en.wikipedia.org/wiki/ABAP&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.erpjobs.co.uk/forum/showthread.php?t=58" target="test_blank"&gt;http://www.erpjobs.co.uk/forum/showthread.php?t=58&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://abap4.tripod.com/Upload_and_Download_ABAP_Source_Code.html" target="test_blank"&gt;http://abap4.tripod.com/Upload_and_Download_ABAP_Source_Code.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/sample-abap-code-on-bapi-po-change.htm" target="test_blank"&gt;http://www.sap-img.com/abap/sample-abap-code-on-bapi-po-change.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;P&gt;Sowjanya.b&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 08:47:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345950#M802286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-29T08:47:31Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding exception ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345951#M802287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What the hell has the second link to do with try/catch/endtry and exceptions? Nothing. Avoid Posting of unsuitable links, read what is beeing answered and givbe suitable answers. Useless Links can be found in Google.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 08:51:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345951#M802287</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2008-01-29T08:51:14Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding exception ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345952#M802288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Rainer for your quick response. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  " i've put the raise command like you suggest but i get error. 
  " the error is : 
  " Old and new exceptions cannot be used the same time.

  try. 

  catch cx_root. 
     RAISE EXCEPTION TYPE CX_ROOT
  endtry. 

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps i miss something there, could you write the complete one please .. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; ?? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Niel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 08:58:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345952#M802288</guid>
      <dc:creator>former_member187400</dc:creator>
      <dc:date>2008-01-29T08:58:46Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding exception ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345953#M802289</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;an exception is nothing else but a special class. The caller of an exception can deliver information to that class like "Hey, i cant go on further cause the database server isnt available".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this exception is not catched in your program, it will cause a sys abend delivering this inforation to the abend where you can read it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you wanna catch this exception because you want your own things to be taken place when certain erros occur you have to use the try / catch / endtry command setting.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So it does not make sense to catch an exception when the only thing to do is to throw the same exception again. You can skip that catch branch and the result will be the same: a sys abend.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is some code on how i am catching exceptions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA cxr type ref to cx_root.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  TRY.
//do normal stuff here

    CATCH cx_sy_file_access_error INTO cxr.
      serror = cxr-&amp;gt;get_text( ).
      MESSAGE serror TYPE 'E'.

    CATCH cx_sy_conversion_error INTO cxr.
      serror = cxr-&amp;gt;get_text( ).
      MESSAGE serror TYPE 'E'.

  ENDTRY.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If there is a file access error, i'll put the error mestage to the customer, E will end the program without giving an abend. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope its now a little bit clearer´&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 09:10:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345953#M802289</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2008-01-29T09:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding exception ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345954#M802290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Rainer, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thaks a lot for your quick response .. &lt;/P&gt;&lt;P&gt;My appreciation has been delivered as my thanks to you .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried it, but it still come error .. It said : Message using ( XXX ).. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Honestly Rainer .. &lt;/P&gt;&lt;P&gt;This program is user-exit; it's not related to customer directly .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Usually, if we had error, we know the error from tcode : ST22. But in ST22 we don't have the trx no; so difficult to fix the data. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using this, &lt;/P&gt;&lt;P&gt;I expect, the error still goes to tcode st22 (user-exit is not completed). But i can catch the trx no (for trx no, i've already found how to make it, but i still don't know to go out from program and put the message in ST22). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could you help me again Rainer .. &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; ?? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still need the guidance. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Niel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 09:33:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345954#M802290</guid>
      <dc:creator>former_member187400</dc:creator>
      <dc:date>2008-01-29T09:33:27Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding exception ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345955#M802291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thats very easy: Skip the try/catch/endtry if you dont wanna handle the exception in your exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just write your code as usual, if any of these statements will throw an exception and it is not handled anywhere in the program you will end up in st22.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So instead of&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
try.
  stmt1.
  stmt2.
  stmt3.

  catch.
    ....

endtry.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just write&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  stmt1.
  stmt2.
  stmt3.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Programming your own handler for an exception is not mandantory. the try statemtent is only necessary if you want to handle the exceptiion by your own.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you want to throw an exception in your userexit you can do it that way&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
raise exception type &amp;lt;your exception choce here&amp;gt;.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 09:52:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345955#M802291</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2008-01-29T09:52:43Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding exception ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345956#M802292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Rainer, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tks a lot for your response.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Perhaps, right now you get confused .. #$%^&amp;amp;*   :p.. &lt;/P&gt;&lt;P&gt;But thanks for your concern up to now. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If we use the absolute way (with out try - catch), i won't get the transaction no in st22. It only mentions what the error is, but i don't know the error is coming in what transaction no is. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So the solution is, i insert the try - catch .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where in the catch area, i will write the transaction no in the table so that i can get the transaction no and fix the data there. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the other requirement.. &lt;/P&gt;&lt;P&gt;I still wanna make this user exit get error, so that we as an IT/user can aware that program is going error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopefully you're not getting bored .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still need your clues .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Niel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 10:11:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345956#M802292</guid>
      <dc:creator>former_member187400</dc:creator>
      <dc:date>2008-01-29T10:11:29Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding exception ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345957#M802293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One question to clarify this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With that try....endtry... are you trying to catch an internal or an homewritten exception? Who ist trowing this exception? (ok thats now two questions)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Jan 2008 14:12:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345957#M802293</guid>
      <dc:creator>rainer_hbenthal</dc:creator>
      <dc:date>2008-01-29T14:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding exception ..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345958#M802294</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rainer, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'd like to say thanks .. &lt;/P&gt;&lt;P&gt;My problem has solved completely .. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I still use try-catch method .. &lt;/P&gt;&lt;P&gt;But in the catch area, i use message using type 'X'. &lt;/P&gt;&lt;P&gt;With that type, it will get out to short-dump (st22). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Point has been awarded as my gratitude to you.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, &lt;/P&gt;&lt;P&gt;Niel.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jan 2008 01:14:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-exception/m-p/3345958#M802294</guid>
      <dc:creator>former_member187400</dc:creator>
      <dc:date>2008-01-30T01:14:36Z</dc:date>
    </item>
  </channel>
</rss>

