<?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: Catching Information message in Program called using SUBMIT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239260#M1629946</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;DATA: text       TYPE c LENGTH 10,&lt;/P&gt;&lt;P&gt;     lt_selscreen  TYPE TABLE OF rsparams WITH HEADER LINE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; lt_selscreen-sign = 'I'.&lt;/P&gt;&lt;P&gt;      lt_selscreen-option = 'EQ'.&lt;/P&gt;&lt;P&gt;      lt_selscreen-low = '7100'.&lt;/P&gt;&lt;P&gt;      append lt_selscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;lt_pay_data&amp;gt;   TYPE ANY TABLE.&lt;/P&gt;&lt;P&gt;DATA lr_pay_data              TYPE REF TO data.&lt;/P&gt;&lt;P&gt;  cl_salv_bs_runtime_info=&amp;gt;set(    EXPORTING display  = abap_false&lt;/P&gt;&lt;P&gt;                                             metadata = abap_false&lt;/P&gt;&lt;P&gt;                                             data     = abap_true ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Submit Wage Type Reporter&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   SUBMIT ZMR113_NON_MOVING_AGING    WITH SELECTION-TABLE lt_selscreen  with so_werks ='7100'  AND RETURN.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;  TRY.  &lt;/P&gt;&lt;P&gt;  cl_salv_bs_runtime_info=&amp;gt;get_data_ref(        IMPORTING r_data = lr_pay_data ).&lt;/P&gt;&lt;P&gt;  ASSIGN lr_pay_data-&amp;gt;* TO &amp;lt;lt_pay_data&amp;gt;.&lt;/P&gt;&lt;P&gt;  CATCH cx_salv_bs_sc_runtime_info.&lt;/P&gt;&lt;P&gt;  MESSAGE `Unable to retrieve ALV data` TYPE 'E'.&lt;/P&gt;&lt;P&gt;  ENDTRY.&lt;/P&gt;&lt;P&gt;  cl_salv_bs_runtime_info=&amp;gt;clear_all( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;THis Code i used  in my report   it was  Created  by Glen Simpson   Expert Blogger  : it was nice piece  of code  to Gain Access  from Other ALV Report  of SAPGUI&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Deepak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Deepak Dhamat on Oct 5, 2011 8:18 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Deepak Dhamat on Oct 5, 2011 8:21 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 05 Oct 2011 06:11:35 GMT</pubDate>
    <dc:creator>deepak_dhamat</dc:creator>
    <dc:date>2011-10-05T06:11:35Z</dc:date>
    <item>
      <title>Catching Information message in Program called using SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239257#M1629943</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am calling a report program using below &lt;/P&gt;&lt;P&gt;SUBMIT program EXPORTING LIST TO MEMORY &lt;/P&gt;&lt;P&gt;AND RETURN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the program called is having one inforamtion message and is coming out after this message appears on screen. I want to capute this information message and need to display in my main program.&lt;/P&gt;&lt;P&gt;Please let me know how  capture this type of messages in SUBMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ganesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 05:46:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239257#M1629943</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T05:46:26Z</dc:date>
    </item>
    <item>
      <title>Re: Catching Information message in Program called using SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239258#M1629944</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ganesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think it is not possible, don't display messages in called program. pass back to the calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Surya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 05:51:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239258#M1629944</guid>
      <dc:creator>former_member186055</dc:creator>
      <dc:date>2011-10-05T05:51:05Z</dc:date>
    </item>
    <item>
      <title>Re: Catching Information message in Program called using SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239259#M1629945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Surya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I can not change the called program as changing it will have huge impact on many objects in our project. But how about if we SUBMIT program to the spool.&lt;/P&gt;&lt;P&gt;can i retrive that message from there..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ganesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 05:59:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239259#M1629945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T05:59:36Z</dc:date>
    </item>
    <item>
      <title>Re: Catching Information message in Program called using SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239260#M1629946</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;DATA: text       TYPE c LENGTH 10,&lt;/P&gt;&lt;P&gt;     lt_selscreen  TYPE TABLE OF rsparams WITH HEADER LINE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; lt_selscreen-sign = 'I'.&lt;/P&gt;&lt;P&gt;      lt_selscreen-option = 'EQ'.&lt;/P&gt;&lt;P&gt;      lt_selscreen-low = '7100'.&lt;/P&gt;&lt;P&gt;      append lt_selscreen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD-SYMBOLS &amp;lt;lt_pay_data&amp;gt;   TYPE ANY TABLE.&lt;/P&gt;&lt;P&gt;DATA lr_pay_data              TYPE REF TO data.&lt;/P&gt;&lt;P&gt;  cl_salv_bs_runtime_info=&amp;gt;set(    EXPORTING display  = abap_false&lt;/P&gt;&lt;P&gt;                                             metadata = abap_false&lt;/P&gt;&lt;P&gt;                                             data     = abap_true ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Submit Wage Type Reporter&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   SUBMIT ZMR113_NON_MOVING_AGING    WITH SELECTION-TABLE lt_selscreen  with so_werks ='7100'  AND RETURN.&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;  TRY.  &lt;/P&gt;&lt;P&gt;  cl_salv_bs_runtime_info=&amp;gt;get_data_ref(        IMPORTING r_data = lr_pay_data ).&lt;/P&gt;&lt;P&gt;  ASSIGN lr_pay_data-&amp;gt;* TO &amp;lt;lt_pay_data&amp;gt;.&lt;/P&gt;&lt;P&gt;  CATCH cx_salv_bs_sc_runtime_info.&lt;/P&gt;&lt;P&gt;  MESSAGE `Unable to retrieve ALV data` TYPE 'E'.&lt;/P&gt;&lt;P&gt;  ENDTRY.&lt;/P&gt;&lt;P&gt;  cl_salv_bs_runtime_info=&amp;gt;clear_all( ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;THis Code i used  in my report   it was  Created  by Glen Simpson   Expert Blogger  : it was nice piece  of code  to Gain Access  from Other ALV Report  of SAPGUI&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Deepak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Deepak Dhamat on Oct 5, 2011 8:18 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Deepak Dhamat on Oct 5, 2011 8:21 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 06:11:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239260#M1629946</guid>
      <dc:creator>deepak_dhamat</dc:creator>
      <dc:date>2011-10-05T06:11:35Z</dc:date>
    </item>
    <item>
      <title>Re: Catching Information message in Program called using SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239261#M1629947</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 don't think it is possible to transfer messages from called program back to the calling program using SUBMIT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But yes, same can be done using CALL TRANSACTION. You need to use a BDC method of calling transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

  CALL TRANSACTION 'VA03' USING BDCDATA
                          OPTIONS FROM GT_OPTIONS
                          MESSAGES INTO GT_MESSAGE[].

  LOOP AT GT_MESSAGE[].
    CALL FUNCTION 'MESSAGE_TEXT_BUILD'
      EXPORTING
        MSGID               = GT_MESSAGE-MSGID
        MSGNR               = GT_MESSAGE-MSGNR
        MSGV1               = GT_MESSAGE-MSGV1
        MSGV2               = GT_MESSAGE-MSGV2
        MSGV3               = GT_MESSAGE-MSGV3
        MSGV4               = GT_MESSAGE-MSGV4
      IMPORTING
        MESSAGE_TEXT_OUTPUT = MESSAGE
      EXCEPTIONS                                            "#EC *
        OTHERS              = 4.
  ENDLOOP.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here, the internal table GT_MESSAGE[] will contain all messages related to your called program which you can display in your calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Danish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 06:25:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239261#M1629947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T06:25:43Z</dc:date>
    </item>
    <item>
      <title>Re: Catching Information message in Program called using SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239262#M1629948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we are working on SAP 4.7c and I am not able to find the class 'cl_salv_bs_runtime_info' in system .&lt;/P&gt;&lt;P&gt;I want to capture that information message as well as i want to get the output of called program in calling program to process it further in calling program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ganesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 06:40:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239262#M1629948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T06:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: Catching Information message in Program called using SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239263#M1629949</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;Can you tell me program name  which you are using  for submit  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Deepak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 06:44:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239263#M1629949</guid>
      <dc:creator>deepak_dhamat</dc:creator>
      <dc:date>2011-10-05T06:44:49Z</dc:date>
    </item>
    <item>
      <title>Re: Catching Information message in Program called using SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239264#M1629950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepak,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its a custome program to upload a file and than validate that file is correct if used for posting data by FB01. Same progarm is also used for posting so we can't make any changes as it is being used in lots of program.&lt;/P&gt;&lt;P&gt;Information message is " Total debit and total credit do not match in file'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ganesh.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Ganesh Lathi on Oct 5, 2011 9:06 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 07:05:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239264#M1629950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T07:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Catching Information message in Program called using SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239265#M1629951</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ganesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your called program triggers an information message, it will be displayed when you submit that program... I don't really understand your issue... If you want to store that message without displaying it on your main program, without changing the called program, and without using call transaction, If afraid you're going to be stuck...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kr,&lt;/P&gt;&lt;P&gt;m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 07:07:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239265#M1629951</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T07:07:38Z</dc:date>
    </item>
    <item>
      <title>Re: Catching Information message in Program called using SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239266#M1629952</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A simple workaround could be like this. You can create a small text file of that message on the app server by submitting the program and then access that text file in your other program.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 07:11:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239266#M1629952</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T07:11:21Z</dc:date>
    </item>
    <item>
      <title>Re: Catching Information message in Program called using SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239267#M1629953</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Ganesh ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are Calling Custom Program in submit or FB01 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we stiil did'nt get  what exactly you are achieving  .&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Deepak.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 07:15:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239267#M1629953</guid>
      <dc:creator>deepak_dhamat</dc:creator>
      <dc:date>2011-10-05T07:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Catching Information message in Program called using SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239268#M1629954</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ganesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont know whether this will help you or not.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If instead of submitting the program if you create a background job for the submitted program.&lt;/P&gt;&lt;P&gt;Here you can catch the messages also using function module BP_JOBLOG_READ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try and let me know if it helped you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anmol.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 07:19:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239268#M1629954</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T07:19:10Z</dc:date>
    </item>
    <item>
      <title>Re: Catching Information message in Program called using SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239269#M1629955</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The tip given by Anmol is probably the only work-around for this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have to use a submit to sap-spool:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SUBMIT zcalled-prog TO SAP-SPOOL
                       SPOOL PARAMETERS print_parameters
                       WITHOUT SPOOL DYNPRO
                       VIA JOB name NUMBER number
                       AND RETURN.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use FM BP_JOB_READ to get you spool-id from job step, BP_JOBLOG_READ to get your triggered messages and RSPO_RETURN_ABAP_SPOOLJOB to get your output list...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kr,&lt;/P&gt;&lt;P&gt;m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 05 Oct 2011 08:42:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239269#M1629955</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-10-05T08:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: Catching Information message in Program called using SUBMIT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239270#M1629956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Dec 2011 07:27:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/catching-information-message-in-program-called-using-submit/m-p/8239270#M1629956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-12-09T07:27:53Z</dc:date>
    </item>
  </channel>
</rss>

