<?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 submit_report error during submitted report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-error-during-submitted-report/m-p/7723345#M1580310</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;I want to ask if there is any option how to "catch" error messages which occurs when report is submitted via function module submit_report? &lt;/P&gt;&lt;P&gt;Result of the report is read from memory, but when the submitted report calls some message (which will originally be displayed on screen (bottom line in SAPGui)) I do not know how to catch it and handle it my way. In this case show to web dynpro message area.&lt;/P&gt;&lt;P&gt;Is it even possible or should I change the way report is submitted? Condition is that result will be put to memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Every little help will appreciated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 14 Mar 2011 12:37:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-03-14T12:37:40Z</dc:date>
    <item>
      <title>submit_report error during submitted report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-error-during-submitted-report/m-p/7723345#M1580310</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;I want to ask if there is any option how to "catch" error messages which occurs when report is submitted via function module submit_report? &lt;/P&gt;&lt;P&gt;Result of the report is read from memory, but when the submitted report calls some message (which will originally be displayed on screen (bottom line in SAPGui)) I do not know how to catch it and handle it my way. In this case show to web dynpro message area.&lt;/P&gt;&lt;P&gt;Is it even possible or should I change the way report is submitted? Condition is that result will be put to memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Every little help will appreciated. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Mar 2011 12:37:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-error-during-submitted-report/m-p/7723345#M1580310</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-14T12:37:40Z</dc:date>
    </item>
    <item>
      <title>Re: submit_report error during submitted report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-error-during-submitted-report/m-p/7723346#M1580311</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;try this way.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there are two options to catch the Errors or Ouput of the report..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

*   Submit report in background and creating spool
  SUBMIT (w_rname) USING SELECTION-SET p_var
      TO SAP-SPOOL WITHOUT SPOOL DYNPRO
      SPOOL PARAMETERS wa_pri_params AND RETURN.
  COMMIT WORK AND WAIT.
*   To fetch the spool number from TSP01 table
  IF sy-subrc EQ 0.
    SELECT rqident
           FROM tsp01
           INTO p_spool
*             UP TO 1 ROWS
           WHERE rq2name = wa_pri_params-plist.
    ENDSELECT.
  ENDIF.

* Fetching Spool data into internal table
  CALL FUNCTION 'RSPO_RETURN_ABAP_SPOOLJOB'
    EXPORTING
      rqident              = p_spool
    TABLES
      buffer               = t_data                    "This will hold the all errors or Ouput or all steps of the Report 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PrabhuD@s&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 14 Mar 2011 12:50:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-error-during-submitted-report/m-p/7723346#M1580311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-14T12:50:37Z</dc:date>
    </item>
    <item>
      <title>Re: submit_report error during submitted report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-error-during-submitted-report/m-p/7723347#M1580312</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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MESSAGE &amp;lt;message text&amp;gt; TYPE I DISPLAY LIKE E&lt;/P&gt;&lt;P&gt;STOP.&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;If your program is not dependent on the SUBMITTED program i.e..,Some thing like that standard program doesn't have any output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL JOB_OPEN&lt;/P&gt;&lt;P&gt;SUBMIT standard program&lt;/P&gt;&lt;P&gt;CALL JOB_CLOSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This creates a batch job for standard program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your program is dependent, then i don't see any possibility &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Mar 2011 18:06:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-error-during-submitted-report/m-p/7723347#M1580312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-21T18:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: submit_report error during submitted report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-error-during-submitted-report/m-p/7723348#M1580313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'JOB_OPEN'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      jobname          = v_name&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      jobcount         = v_number.&lt;/P&gt;&lt;P&gt;  IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT rm06ibi0 WITH ds_name = c_logfile&lt;/P&gt;&lt;P&gt;                    AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SUBMIT rsbdcsub VIA JOB v_name NUMBER v_number&lt;/P&gt;&lt;P&gt;                    WITH mappe = v_name&lt;/P&gt;&lt;P&gt;                    WITH z_verarb = c_x&lt;/P&gt;&lt;P&gt;                    WITH fehler = space&lt;/P&gt;&lt;P&gt;                    TO SAP-SPOOL&lt;/P&gt;&lt;P&gt;                    SPOOL PARAMETERS v_print_parameters&lt;/P&gt;&lt;P&gt;                    WITHOUT SPOOL DYNPRO&lt;/P&gt;&lt;P&gt;                    USER lc_p2p_batch&lt;/P&gt;&lt;P&gt;                    AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'JOB_CLOSE'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          jobcount             = v_number&lt;/P&gt;&lt;P&gt;          jobname              = v_name&lt;/P&gt;&lt;P&gt;          strtimmed            = c_x.&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 s000 WITH text-001.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*--To check the status of background job if completed or not&lt;/P&gt;&lt;P&gt;  DO 100 TIMES.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BDC_OBJECT_SELECT'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        name      = lv_name&lt;/P&gt;&lt;P&gt;        datatype  = 'BDC'&lt;/P&gt;&lt;P&gt;        client    = sy-mandt&lt;/P&gt;&lt;P&gt;        date_from = sy-datum&lt;/P&gt;&lt;P&gt;      TABLES&lt;/P&gt;&lt;P&gt;        apqitab   = lt_apqi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    SORT lt_apqi BY credate DESCENDING cretime DESCENDING.&lt;/P&gt;&lt;P&gt;    READ TABLE lt_apqi INTO lx_apqi INDEX 1.&lt;/P&gt;&lt;P&gt;    IF sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;      IF lx_apqi-qstate EQ c_qstate_f " processing completed&lt;/P&gt;&lt;P&gt;        OR lx_apqi-qstate EQ c_qstate_e." processing ended in error&lt;/P&gt;&lt;P&gt;        EXIT.&lt;/P&gt;&lt;P&gt;      ELSE. " still processing&lt;/P&gt;&lt;P&gt;        WAIT UP TO 5 SECONDS.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  COMMIT WORK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ty_apql,&lt;/P&gt;&lt;P&gt;            temseid	TYPE rstsoname,&lt;/P&gt;&lt;P&gt;            credate TYPE apq_crda,&lt;/P&gt;&lt;P&gt;            cretime TYPE apq_crti,&lt;/P&gt;&lt;P&gt;        END OF ty_apql.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONSTANTS: lc_asc TYPE char3  VALUE 'ASC',&lt;/P&gt;&lt;P&gt;             lc_mes TYPE char10 VALUE 'LV_MESSAGE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FIELD-SYMBOLS: &amp;lt;lfs_var&amp;gt; TYPE ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: lt_apql     TYPE STANDARD TABLE OF ty_apql,&lt;/P&gt;&lt;P&gt;        lx_apql     TYPE ty_apql,&lt;/P&gt;&lt;P&gt;        lx_logfile  TYPE btctle,&lt;/P&gt;&lt;P&gt;        lv_charco   TYPE cpcodepage VALUE '0000',&lt;/P&gt;&lt;P&gt;        lv_number   TYPE symsgno,&lt;/P&gt;&lt;P&gt;        lv_message1 TYPE symsgv,&lt;/P&gt;&lt;P&gt;        lv_message2 TYPE symsgv,&lt;/P&gt;&lt;P&gt;        lv_message3 TYPE symsgv,&lt;/P&gt;&lt;P&gt;        lv_message4 TYPE symsgv,&lt;/P&gt;&lt;P&gt;        lv_mlen     TYPE i,&lt;/P&gt;&lt;P&gt;        lv_var      TYPE char11,&lt;/P&gt;&lt;P&gt;        lv_index    TYPE n,&lt;/P&gt;&lt;P&gt;        lx_bdclm    TYPE bdclm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: lt_bdclm TYPE STANDARD TABLE OF bdclm.&lt;/P&gt;&lt;P&gt;  CLEAR  t_logfile.&lt;/P&gt;&lt;P&gt;  SELECT temseid&lt;/P&gt;&lt;P&gt;         credate&lt;/P&gt;&lt;P&gt;         cretime&lt;/P&gt;&lt;P&gt;    FROM apql&lt;/P&gt;&lt;P&gt;    INTO TABLE lt_apql&lt;/P&gt;&lt;P&gt;    WHERE mandant EQ sy-mandt&lt;/P&gt;&lt;P&gt;      AND credate EQ sy-datum&lt;/P&gt;&lt;P&gt;      AND groupid EQ v_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CHECK sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;  SORT lt_apql BY credate DESCENDING&lt;/P&gt;&lt;P&gt;                  cretime DESCENDING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE lt_apql INTO lx_apql INDEX c_one.&lt;/P&gt;&lt;P&gt;  CHECK sy-subrc EQ 0.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'RSTS_GET_ATTRIBUTES'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      authority = ' '&lt;/P&gt;&lt;P&gt;      client    = sy-mandt&lt;/P&gt;&lt;P&gt;      name      = lx_apql-temseid&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      charco    = lv_charco.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF cl_abap_char_utilities=&amp;gt;charsize &amp;gt; 1.&lt;/P&gt;&lt;P&gt;    lv_charco = '0000'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'RSTS_OPEN_RLC'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      name           = lx_apql-temseid&lt;/P&gt;&lt;P&gt;      client         = sy-mandt&lt;/P&gt;&lt;P&gt;      authority      = 'BATCH'&lt;/P&gt;&lt;P&gt;      prom           = 'I'&lt;/P&gt;&lt;P&gt;      rectyp         = 'VNL----'&lt;/P&gt;&lt;P&gt;      charco         = lv_charco&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      fb_call_handle = 4&lt;/P&gt;&lt;P&gt;      fb_error       = 8&lt;/P&gt;&lt;P&gt;      fb_rsts_noconv = 12&lt;/P&gt;&lt;P&gt;      fb_rsts_other  = 16&lt;/P&gt;&lt;P&gt;      no_object      = 20&lt;/P&gt;&lt;P&gt;      OTHERS         = 24.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&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;  CALL FUNCTION 'RSTS_READ'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      datatab        = t_logfile&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      fb_call_handle = 4&lt;/P&gt;&lt;P&gt;      fb_error       = 8&lt;/P&gt;&lt;P&gt;      fb_rsts_noconv = 12&lt;/P&gt;&lt;P&gt;      fb_rsts_other  = 16&lt;/P&gt;&lt;P&gt;      OTHERS         = 16.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&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;  CALL FUNCTION 'RSTS_CLOSE'&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      OTHERS = 4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&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;  LOOP AT t_logfile INTO lx_logfile.&lt;/P&gt;&lt;P&gt;    lx_bdclm = lx_logfile.&lt;/P&gt;&lt;P&gt;    APPEND lx_bdclm TO lt_bdclm.&lt;/P&gt;&lt;P&gt;    CLEAR lx_bdclm.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT lt_bdclm INTO lx_bdclm WHERE mart NE c_warning.&lt;/P&gt;&lt;P&gt;    CLEAR: lv_message1, lv_message2, lv_message3, lv_message4.&lt;/P&gt;&lt;P&gt;    IF lx_bdclm-mparcnt &amp;gt; 0.&lt;/P&gt;&lt;P&gt;      DO.&lt;/P&gt;&lt;P&gt;        lv_mlen = lx_bdclm-mpar+0(2).&lt;/P&gt;&lt;P&gt;        lx_bdclm-mpar = lx_bdclm-mpar+2.&lt;/P&gt;&lt;P&gt;        lv_index = sy-index.&lt;/P&gt;&lt;P&gt;        CONCATENATE lc_mes lv_index INTO lv_var.&lt;/P&gt;&lt;P&gt;        ASSIGN (lv_var) TO &amp;lt;lfs_var&amp;gt;.&lt;/P&gt;&lt;P&gt;        IF lv_mlen GT 0.&lt;/P&gt;&lt;P&gt;          &amp;lt;lfs_var&amp;gt; = lx_bdclm-mpar+0(lv_mlen).&lt;/P&gt;&lt;P&gt;        ELSE.&lt;/P&gt;&lt;P&gt;          &amp;lt;lfs_var&amp;gt; = lx_bdclm-mpar.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;        lx_bdclm-mpar = lx_bdclm-mpar+lv_mlen.&lt;/P&gt;&lt;P&gt;        IF sy-index &amp;gt;= lx_bdclm-mparcnt.&lt;/P&gt;&lt;P&gt;          EXIT.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDDO.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    IF lv_message2 = '000000000000'.&lt;/P&gt;&lt;P&gt;      lv_message2 = ' '.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    IF lv_message3 = '0000000000'.&lt;/P&gt;&lt;P&gt;      lv_message3  = ' '.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    IF lv_message4 = '0000000'.&lt;/P&gt;&lt;P&gt;      lv_message4  = ' '.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    lv_number = lx_bdclm-mnr.&lt;/P&gt;&lt;P&gt;    CALL FUNCTION 'BAPI_MESSAGE_GETDETAIL'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        id         = lx_bdclm-mid&lt;/P&gt;&lt;P&gt;        number     = lv_number&lt;/P&gt;&lt;P&gt;        language   = sy-langu&lt;/P&gt;&lt;P&gt;        textformat = lc_asc&lt;/P&gt;&lt;P&gt;        message_v1 = lv_message1&lt;/P&gt;&lt;P&gt;        message_v2 = lv_message2&lt;/P&gt;&lt;P&gt;        message_v3 = lv_message3&lt;/P&gt;&lt;P&gt;        message_v4 = lv_message4&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        message    = x_session-message.&lt;/P&gt;&lt;P&gt;    IF lx_bdclm-tcnt &amp;lt;&amp;gt; space .&lt;/P&gt;&lt;P&gt;      x_session-zlineno = lx_bdclm-tcnt + 2 .&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;P&gt;      x_session-zlineno = ' '.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;    APPEND x_session TO t_session.&lt;/P&gt;&lt;P&gt;    CLEAR x_session.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rahul Babukuttan on Mar 22, 2011 6:37 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Rahul Babukuttan on Mar 22, 2011 6:39 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Mar 2011 05:37:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/submit-report-error-during-submitted-report/m-p/7723348#M1580313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-22T05:37:08Z</dc:date>
    </item>
  </channel>
</rss>

