<?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: ERROR HANDLING  in function module of  program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-in-function-module-of-program/m-p/4225705#M1009501</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;ERROR HANDLING in function module of program&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I have a include program :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;in which subroutine a function module CALL FUNCTION 'ZAZI_M_FIND' is getting called .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;when ever it's sy-subrc not equal to 0&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;it is assigning  gv_raise_exception = 6.( gv_raise_exception is of sy-subrc type )&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;and later it is filling error table and sending to TIBCO&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;the code is like :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FORM zadi_m_cr785_stkcat_find TABLES lt_stockcat_tab&lt;/P&gt;&lt;P&gt;STRUCTURE zadi_m_cr785_str&lt;/P&gt;&lt;P&gt;USING p_spart&lt;/P&gt;&lt;P&gt;p_sign.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZAZI_M_FIND'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;matnr = gt_goodsmvt-material&lt;/P&gt;&lt;P&gt;spart = p_spart&lt;/P&gt;&lt;P&gt;j_3asize = gt_goodsmvt-grid_value&lt;/P&gt;&lt;P&gt;werks = gt_goodsmvt-plant&lt;/P&gt;&lt;P&gt;adj_type = p_sign&lt;/P&gt;&lt;P&gt;clabs = gt_goodsmvt-entry_qnt&lt;/P&gt;&lt;P&gt;bwart = gt_goodsmvt-move_type&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;stockcat_tab = lt_stockcat_tab&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;invalid_input_data = 1&lt;/P&gt;&lt;P&gt;invalid_adjustment = 2&lt;/P&gt;&lt;P&gt;material_not_found = 3&lt;/P&gt;&lt;P&gt;material_not_in_division = 4&lt;/P&gt;&lt;P&gt;material_not_in_plant = 5&lt;/P&gt;&lt;P&gt;no_data_match = 6&lt;/P&gt;&lt;P&gt;empty_output_table = 7&lt;/P&gt;&lt;P&gt;OTHERS = 8.&lt;/P&gt;&lt;P&gt;IF sy-subrc not equal to 0.&lt;/P&gt;&lt;P&gt;gv_raise_exception = 6.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;MY PROBLEM IS this CALL FUNCTION 'ZAZI_M_FIND'  inside it is calling one std. which makes my program terminated with error message&lt;/STRONG&gt;.*  FM 'MARC_SINGLE_READ'....&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'MARC_SINGLE_READ'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;matnr = matnr&lt;/P&gt;&lt;P&gt;werks = werks&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;wmarc = lv_marc&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;invalid_input_data = 1&lt;/P&gt;&lt;P&gt;invalid_adjustment = 2&lt;/P&gt;&lt;P&gt;material_not_found = 3&lt;/P&gt;&lt;P&gt;material_not_in_divison = 4&lt;/P&gt;&lt;P&gt;material_not_in_plant = 5.&lt;/P&gt;&lt;P&gt;IF sy-subrc not equal to 0.&lt;/P&gt;&lt;P&gt;RAISE material_not_in_plant.     &lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If material is not maintained in the plant, FM 'MARC_SINGLE_READ' is raising the exception due to which program is getting terminated and system message is coming ( however if CALL FUNCTION 'ZAZI_M_FIND' raises exception... gv_raise_exception is assigned with 6.) and then later on logic follows like&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;PERFORM RAISE_EXCEPTION TABLES E_RETURN.&lt;/P&gt;&lt;P&gt;which has code as &lt;/P&gt;&lt;P&gt;IF gv_raise_exception = 6.&lt;/P&gt;&lt;P&gt;PERFORM return_message TABLES t_return&lt;/P&gt;&lt;P&gt;USING '001' text-e19 '038'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What I need to do is i must stop program termination/dump. I need to pass error mesase incase of exceptions in CALL FUNCTION 'MARC_SINGLE_READ'  how can I do it ?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;i used code like&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;FM 'MARC_SINGLE_READ'....&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'MARC_SINGLE_READ'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;matnr = matnr&lt;/P&gt;&lt;P&gt;werks = werks&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;wmarc = lv_marc&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;invalid_input_data = 1&lt;/P&gt;&lt;P&gt;invalid_adjustment = 2&lt;/P&gt;&lt;P&gt;material_not_found = 3&lt;/P&gt;&lt;P&gt;material_not_in_divison = 4&lt;/P&gt;&lt;P&gt;material_not_in_plant = 5.&lt;/P&gt;&lt;P&gt;IF sy-subrc not equal to 0.&lt;/P&gt;&lt;P&gt;lv_subrc = 13.     &lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;please ask me again if you not understand ?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MUCH THANKS IN ADVANCE....&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jul 2008 13:49:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-31T13:49:22Z</dc:date>
    <item>
      <title>ERROR HANDLING  in function module of  program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-in-function-module-of-program/m-p/4225703#M1009499</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;ERROR HANDLING in function module of  program&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I have a include program :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;in which subroutine a function module CALL FUNCTION 'ZAZI_M_FIND' is getting called .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;when ever sy-subrc &amp;lt;&amp;gt; 0&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;filling  gv_raise_exception = 6.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;and later it is filling error table  and sending to TIBCO&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM zadi_m_cr785_stkcat_find TABLES    lt_stockcat_tab&lt;/P&gt;&lt;P&gt;                              STRUCTURE zadi_m_cr785_str&lt;/P&gt;&lt;P&gt;                              USING     p_spart&lt;/P&gt;&lt;P&gt;                                        p_sign.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'ZAZI_M_FIND'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            matnr                    = gt_goodsmvt-material&lt;/P&gt;&lt;P&gt;            spart                    = p_spart&lt;/P&gt;&lt;P&gt;            j_3asize                 = gt_goodsmvt-grid_value&lt;/P&gt;&lt;P&gt;            werks                    = gt_goodsmvt-plant&lt;/P&gt;&lt;P&gt;            adj_type                 = p_sign&lt;/P&gt;&lt;P&gt;            clabs                    = gt_goodsmvt-entry_qnt&lt;/P&gt;&lt;P&gt;            bwart                    = gt_goodsmvt-move_type&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            stockcat_tab             = lt_stockcat_tab&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            invalid_input_data       = 1&lt;/P&gt;&lt;P&gt;            invalid_adjustment       = 2&lt;/P&gt;&lt;P&gt;            material_not_found       = 3&lt;/P&gt;&lt;P&gt;            material_not_in_division = 4&lt;/P&gt;&lt;P&gt;            material_not_in_plant    = 5&lt;/P&gt;&lt;P&gt;            no_data_match            = 6&lt;/P&gt;&lt;P&gt;            empty_output_table       = 7&lt;/P&gt;&lt;P&gt;            OTHERS                   = 8.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    gv_raise_exception = 6.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Again   CALL FUNCTION 'ZAZI_M_FIND' contains  FM 'MARC_SINGLE_READ'....&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'MARC_SINGLE_READ'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            matnr = matnr&lt;/P&gt;&lt;P&gt;            werks = werks&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            wmarc = lv_marc&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            invalid_input_data      = 1&lt;/P&gt;&lt;P&gt;            invalid_adjustment      = 2&lt;/P&gt;&lt;P&gt;            material_not_found      = 3&lt;/P&gt;&lt;P&gt;            material_not_in_divison = 4&lt;/P&gt;&lt;P&gt;            material_not_in_plant   = 5.&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    RAISE material_not_in_plant.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;If material is not maintained in the plant, FM 'MARC_SINGLE_READ' is raising the exception due to which program is getting terminated and system message is coming ( however if CALL FUNCTION 'ZAZI_M_FIND' raises exception... gv_raise_exception ius filled with  6.) and then logic is writing &lt;/P&gt;&lt;P&gt;  PERFORM RAISE_EXCEPTION TABLES E_RETURN.&lt;/P&gt;&lt;P&gt; which has code like &lt;/P&gt;&lt;P&gt;IF gv_raise_exception = 6.&lt;/P&gt;&lt;P&gt;    PERFORM return_message   TABLES t_return&lt;/P&gt;&lt;P&gt;                              USING '001' text-e19 '038'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What I need to do is I need to pass error mesase incase of exceptions in CALL FUNCTION 'MARC_SINGLE_READ' ...without program termination...&lt;/P&gt;&lt;P&gt;how can I do it ?&lt;/P&gt;&lt;P&gt;please ask me again if you not understand ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MUCH THANKS IN ADVANCE....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2008 22:39:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-in-function-module-of-program/m-p/4225703#M1009499</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-30T22:39:40Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR HANDLING  in function module of  program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-in-function-module-of-program/m-p/4225704#M1009500</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what I understood is that you want to do the error handling if there is any exception raise in the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case you need to chech for the condition &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subcr NE 0.&lt;/P&gt;&lt;P&gt;Error handling.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of Sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sy-subrc = 0 means the function module is working fine and there are no exception which got raised.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;( I am confused why you are checking sy-subrc eq 0, and doing error processing).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Navneet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Jul 2008 23:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-in-function-module-of-program/m-p/4225704#M1009500</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-30T23:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR HANDLING  in function module of  program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-in-function-module-of-program/m-p/4225705#M1009501</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;ERROR HANDLING in function module of program&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I have a include program :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;in which subroutine a function module CALL FUNCTION 'ZAZI_M_FIND' is getting called .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;when ever it's sy-subrc not equal to 0&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;it is assigning  gv_raise_exception = 6.( gv_raise_exception is of sy-subrc type )&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;and later it is filling error table and sending to TIBCO&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;the code is like :&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;FORM zadi_m_cr785_stkcat_find TABLES lt_stockcat_tab&lt;/P&gt;&lt;P&gt;STRUCTURE zadi_m_cr785_str&lt;/P&gt;&lt;P&gt;USING p_spart&lt;/P&gt;&lt;P&gt;p_sign.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'ZAZI_M_FIND'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;matnr = gt_goodsmvt-material&lt;/P&gt;&lt;P&gt;spart = p_spart&lt;/P&gt;&lt;P&gt;j_3asize = gt_goodsmvt-grid_value&lt;/P&gt;&lt;P&gt;werks = gt_goodsmvt-plant&lt;/P&gt;&lt;P&gt;adj_type = p_sign&lt;/P&gt;&lt;P&gt;clabs = gt_goodsmvt-entry_qnt&lt;/P&gt;&lt;P&gt;bwart = gt_goodsmvt-move_type&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;stockcat_tab = lt_stockcat_tab&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;invalid_input_data = 1&lt;/P&gt;&lt;P&gt;invalid_adjustment = 2&lt;/P&gt;&lt;P&gt;material_not_found = 3&lt;/P&gt;&lt;P&gt;material_not_in_division = 4&lt;/P&gt;&lt;P&gt;material_not_in_plant = 5&lt;/P&gt;&lt;P&gt;no_data_match = 6&lt;/P&gt;&lt;P&gt;empty_output_table = 7&lt;/P&gt;&lt;P&gt;OTHERS = 8.&lt;/P&gt;&lt;P&gt;IF sy-subrc not equal to 0.&lt;/P&gt;&lt;P&gt;gv_raise_exception = 6.&lt;/P&gt;&lt;P&gt;EXIT.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&lt;STRONG&gt;MY PROBLEM IS this CALL FUNCTION 'ZAZI_M_FIND'  inside it is calling one std. which makes my program terminated with error message&lt;/STRONG&gt;.*  FM 'MARC_SINGLE_READ'....&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'MARC_SINGLE_READ'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;matnr = matnr&lt;/P&gt;&lt;P&gt;werks = werks&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;wmarc = lv_marc&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;invalid_input_data = 1&lt;/P&gt;&lt;P&gt;invalid_adjustment = 2&lt;/P&gt;&lt;P&gt;material_not_found = 3&lt;/P&gt;&lt;P&gt;material_not_in_divison = 4&lt;/P&gt;&lt;P&gt;material_not_in_plant = 5.&lt;/P&gt;&lt;P&gt;IF sy-subrc not equal to 0.&lt;/P&gt;&lt;P&gt;RAISE material_not_in_plant.     &lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;If material is not maintained in the plant, FM 'MARC_SINGLE_READ' is raising the exception due to which program is getting terminated and system message is coming ( however if CALL FUNCTION 'ZAZI_M_FIND' raises exception... gv_raise_exception is assigned with 6.) and then later on logic follows like&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;PERFORM RAISE_EXCEPTION TABLES E_RETURN.&lt;/P&gt;&lt;P&gt;which has code as &lt;/P&gt;&lt;P&gt;IF gv_raise_exception = 6.&lt;/P&gt;&lt;P&gt;PERFORM return_message TABLES t_return&lt;/P&gt;&lt;P&gt;USING '001' text-e19 '038'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;What I need to do is i must stop program termination/dump. I need to pass error mesase incase of exceptions in CALL FUNCTION 'MARC_SINGLE_READ'  how can I do it ?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;i used code like&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;FM 'MARC_SINGLE_READ'....&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'MARC_SINGLE_READ'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;matnr = matnr&lt;/P&gt;&lt;P&gt;werks = werks&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;wmarc = lv_marc&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;invalid_input_data = 1&lt;/P&gt;&lt;P&gt;invalid_adjustment = 2&lt;/P&gt;&lt;P&gt;material_not_found = 3&lt;/P&gt;&lt;P&gt;material_not_in_divison = 4&lt;/P&gt;&lt;P&gt;material_not_in_plant = 5.&lt;/P&gt;&lt;P&gt;IF sy-subrc not equal to 0.&lt;/P&gt;&lt;P&gt;lv_subrc = 13.     &lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;please ask me again if you not understand ?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;MUCH THANKS IN ADVANCE....&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 13:49:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-in-function-module-of-program/m-p/4225705#M1009501</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T13:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR HANDLING  in function module of  program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-in-function-module-of-program/m-p/4225706#M1009502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry.&lt;/P&gt;&lt;P&gt;Solved by my own.&lt;/P&gt;&lt;P&gt;Thanks all.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 15:43:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-in-function-module-of-program/m-p/4225706#M1009502</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T15:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: ERROR HANDLING  in function module of  program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-in-function-module-of-program/m-p/4225707#M1009503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 07 Sep 2008 05:36:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-handling-in-function-module-of-program/m-p/4225707#M1009503</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-07T05:36:33Z</dc:date>
    </item>
  </channel>
</rss>

