<?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 Background  processing in alv reports in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305162#M1026540</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am writing an alv report not using oops concepts.&lt;/P&gt;&lt;P&gt;I want to execute this report in background also.&lt;/P&gt;&lt;P&gt;So can you help me out in this.Is there any method to follow.&lt;/P&gt;&lt;P&gt;Please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Aug 2008 13:07:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-05T13:07:52Z</dc:date>
    <item>
      <title>Background  processing in alv reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305162#M1026540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi  all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am writing an alv report not using oops concepts.&lt;/P&gt;&lt;P&gt;I want to execute this report in background also.&lt;/P&gt;&lt;P&gt;So can you help me out in this.Is there any method to follow.&lt;/P&gt;&lt;P&gt;Please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Priya.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 13:07:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305162#M1026540</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T13:07:52Z</dc:date>
    </item>
    <item>
      <title>Re: Background  processing in alv reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305163#M1026541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Priya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALV report cannot work in Background. I mean you cant use the ALV functionality in the background. If you use the ALV program you will get the data in the background program in columns&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHeers&lt;/P&gt;&lt;P&gt;VJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 13:09:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305163#M1026541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T13:09:51Z</dc:date>
    </item>
    <item>
      <title>Re: Background  processing in alv reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305164#M1026542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Create a Empty screen 100. and don't place any custom Control on that. &lt;/P&gt;&lt;P&gt;and follow the same approach using DOCKING_CONTAINER. and Run it in the Background, It will not give any Dump or error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  ztest_oo_a.
 
DATA: it_vbak TYPE vbak_t.
DATA: dock TYPE REF TO cl_gui_docking_container,
      it_fcat TYPE lvc_t_fcat,
      wa_fcat TYPE lvc_s_fcat,
 
      grid TYPE REF TO cl_gui_alv_grid.
 
*----------------------------------------------------------------------*
*       CLASS lcl_handler DEFINITION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
CLASS lcl_handler DEFINITION.
  PUBLIC SECTION.
    METHODS:  hotspot_click FOR EVENT hotspot_click OF cl_gui_alv_grid
    IMPORTING e_row_id e_column_id es_row_no.
 
ENDCLASS.                    "lcl_handler DEFINITION
 
 
*----------------------------------------------------------------------*
*       CLASS lcl_handler IMPLEMENTATION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
CLASS lcl_handler IMPLEMENTATION.
 
  METHOD hotspot_click.
    DATA:    row TYPE lvc_s_roid,
        wa_vbak TYPE vbak.
    row = es_row_no.
    READ TABLE it_vbak INTO wa_vbak INDEX row-row_id.
 
    SET PARAMETER ID 'AUN' FIELD wa_vbak-vbeln.
    CALL TRANSACTION 'VA03' AND SKIP FIRST SCREEN.
 
  ENDMETHOD.                    "HOTSPOT_CLICK
 
ENDCLASS.                    "lcl_handler IMPLEMENTATION
 
 
START-OF-SELECTION.
 
  DATA: obj TYPE REF TO  lcl_handler.
  CREATE OBJECT obj.
  SELECT *
    FROM vbak
    INTO TABLE it_vbak
    UP TO 20 ROWS.
 
  CALL SCREEN 100.
 
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE status_0100 OUTPUT.
  SET PF-STATUS 'SATR'.
 
 
  CREATE OBJECT dock
    EXPORTING
      repid     = sy-repid
      dynnr     = '100'
      extension = '1500'
    EXCEPTIONS
      cntl_error                  = 1
      cntl_system_error           = 2
      create_error                = 3
      lifetime_error              = 4
      lifetime_dynpro_dynpro_link = 5
      OTHERS                      = 6
      .
  IF sy-subrc ne  0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
  CREATE OBJECT grid EXPORTING i_parent = dock.
 
  CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
      i_structure_name       = 'VBAK'
    CHANGING
      ct_fieldcat            = it_fcat
    EXCEPTIONS
      inconsistent_interface = 1
      program_error          = 2
      OTHERS                 = 3.
  IF sy-subrc  ne 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
 
  wa_fcat-hotspot = 'X'.
  MODIFY it_fcat FROM wa_fcat INDEX 2 TRANSPORTING hotspot .
 
  SET HANDLER obj-&amp;gt;hotspot_click FOR grid.
 
  CALL METHOD grid-&amp;gt;set_table_for_first_display
*    EXPORTING
*      i_structure_name              = 'VBAK'
    CHANGING
      it_outtab                     = it_vbak
      it_fieldcatalog               = it_fcat
    EXCEPTIONS
      invalid_parameter_combination = 1
      program_error                 = 2
      too_many_lines                = 3
      OTHERS                        = 4.
  IF sy-subrc ne  0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
               WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
  ENDIF.
 
ENDMODULE.                 " STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  USER_COMMAND_0100  INPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE user_command_0100 INPUT.
 
  CASE sy-ucomm.
 
    WHEN 'BACK'.
      LEAVE TO SCREEN 0.
  ENDCASE.
 
ENDMODULE.                 " USER_COMMAND_0100  INPUT&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Flow logic&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS BEFORE OUTPUT.
 MODULE STATUS_0100.
*
PROCESS AFTER INPUT.
 MODULE USER_COMMAND_0100.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vijay babu Dudla&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 13:10:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305164#M1026542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T13:10:15Z</dc:date>
    </item>
    <item>
      <title>Re: Background  processing in alv reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305165#M1026543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Supriya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think ALV Grid cannot be displayed in Background, but the list output of ALV is possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can code some around this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;at seletion-screen.
if sy-batch = ' ' ."check for background
message " Report cannot be run in forground pls press F9 to execute in background.
Endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 13:16:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305165#M1026543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T13:16:51Z</dc:date>
    </item>
    <item>
      <title>Re: Background  processing in alv reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305166#M1026544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ALV Grid can not be processed in background. you can process only ALV List in background.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To run the ALV in background you need to take care of following things&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.) check   IF cl_gui_alv_grid=&amp;gt;offline( ) IS INITIAL. &lt;/P&gt;&lt;P&gt;2.) if cl_gui_alv_grid=&amp;gt;offline( ) IS INITIAL it means it is not in background&lt;/P&gt;&lt;P&gt;     and then only you create the objectfor docking container , object for container.&lt;/P&gt;&lt;P&gt;    and object for grid.&lt;/P&gt;&lt;P&gt;3.) cl_gui_alv_grid=&amp;gt;offline( ) is not initial.. it means it is in background.&lt;/P&gt;&lt;P&gt;        &lt;STRONG&gt;Then don't create the object for container, splitter. just create the&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;         &lt;STRONG&gt;object  for grid&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF cl_gui_alv_grid=&amp;gt;offline( ) IS INITIAL
             create object for container
             create object for splitter,
            create object for grid.
else.
           create object for grid.
            
 ENDIF.
  CALL METHOD obj_grid-&amp;gt;set_table_for_first_display&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kamesh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kamesh Bathla on Aug 5, 2008 4:11 PM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kamesh Bathla on Aug 5, 2008 4:17 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 14:11:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305166#M1026544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T14:11:18Z</dc:date>
    </item>
    <item>
      <title>Re: Background  processing in alv reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305167#M1026545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is possible to Run an OOALV program in Background.&lt;/P&gt;&lt;P&gt;It will generate the spool also. No need to use any checks , Directly we can schedule the Background job. Did you check the sample code which i mentioned..&lt;/P&gt;&lt;P&gt;if not check it once..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 14:14:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305167#M1026545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T14:14:20Z</dc:date>
    </item>
    <item>
      <title>Re: Background  processing in alv reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305168#M1026546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have tried to execute a program with ALV grid in background (ECC 5.0). And it is working fine without any error. Pl. check.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report  ztest_10.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools: abap, slis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: tab type ref to cl_abap_structdescr,&lt;/P&gt;&lt;P&gt;      wa_tab type ref to cl_abap_structdescr,&lt;/P&gt;&lt;P&gt;      comp_tab   type cl_abap_structdescr=&amp;gt;component_table,&lt;/P&gt;&lt;P&gt;      comp like line of comp_tab,&lt;/P&gt;&lt;P&gt;      i_tab type ref to cl_abap_tabledescr,&lt;/P&gt;&lt;P&gt;      i_table type ref to data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;l_program_name   type syrepid value sy-repid,&lt;/P&gt;&lt;P&gt;l_structure_name type tabname,&lt;/P&gt;&lt;P&gt;l_i_ct_fieldcat  type slis_t_fieldcat_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols:&lt;/P&gt;&lt;P&gt;&amp;lt;f_tab1&amp;gt; type standard table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters:&lt;/P&gt;&lt;P&gt;p_tname type tabname16 obligatory, " DEFAULT 'MARA' ,&lt;/P&gt;&lt;P&gt;p_rows(5) type c default '200'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tab ?= cl_abap_typedescr=&amp;gt;describe_by_name( p_tname ).&lt;/P&gt;&lt;P&gt;comp_tab = tab-&amp;gt;get_components( ).&lt;/P&gt;&lt;P&gt;wa_tab  = cl_abap_structdescr=&amp;gt;create( comp_tab ).&lt;/P&gt;&lt;P&gt;i_tab   = cl_abap_tabledescr=&amp;gt;create( wa_tab ).&lt;/P&gt;&lt;P&gt;create data i_table type handle i_tab.&lt;/P&gt;&lt;P&gt;*create data wa_table type handle wa_tab.&lt;/P&gt;&lt;P&gt;assign i_table-&amp;gt;* to &amp;lt;f_tab1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;assign wa_table-&amp;gt;&lt;/STRONG&gt; to &amp;lt;f1&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if p_rows is initial.&lt;/P&gt;&lt;P&gt;  p_rows = '50000'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select count( * )&lt;/P&gt;&lt;P&gt;    from dd02l&lt;/P&gt;&lt;P&gt;    where tabname  = p_tname&lt;/P&gt;&lt;P&gt;    and   as4local = 'A'&lt;/P&gt;&lt;P&gt;    and   tabclass = 'TRANSP'.&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    message e000(z_zzz_ca_messages) with&lt;/P&gt;&lt;P&gt;    p_tname 'is not a Transparant Table'.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;*Get data&lt;/P&gt;&lt;P&gt;  select * from (p_tname)&lt;/P&gt;&lt;P&gt;  into table &amp;lt;f_tab1&amp;gt;&lt;/P&gt;&lt;P&gt;  up to p_rows rows.&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 i000(z_zzz_ca_messages) with 'No data found'.&lt;/P&gt;&lt;P&gt;    leave list-processing.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  set titlebar sy-title&lt;/P&gt;&lt;P&gt;  of program sy-cprog&lt;/P&gt;&lt;P&gt;  with 'Display table:'   p_tname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  l_structure_name = p_tname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'REUSE_ALV_FIELDCATALOG_MERGE'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      i_program_name               = l_program_name&lt;/P&gt;&lt;P&gt;      i_internal_tabname           = 'I_TABLE'&lt;/P&gt;&lt;P&gt;      i_structure_name             = l_structure_name&lt;/P&gt;&lt;P&gt;      i_client_never_display       = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_INCLNAME                   =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_BYPASSING_BUFFER           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_BUFFER_ACTIVE              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    changing&lt;/P&gt;&lt;P&gt;      ct_fieldcat                  = l_i_ct_fieldcat&lt;/P&gt;&lt;P&gt;   exceptions&lt;/P&gt;&lt;P&gt;     inconsistent_interface       = 1&lt;/P&gt;&lt;P&gt;     program_error                = 2&lt;/P&gt;&lt;P&gt;     others                       = 3&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 id sy-msgid type sy-msgty number sy-msgno&lt;/P&gt;&lt;P&gt;            with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    call function 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;      exporting&lt;/P&gt;&lt;P&gt;        i_callback_program = l_program_name&lt;/P&gt;&lt;P&gt;        it_fieldcat        = l_i_ct_fieldcat&lt;/P&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;        t_outtab           = &amp;lt;f_tab1&amp;gt;&lt;/P&gt;&lt;P&gt;      exceptions&lt;/P&gt;&lt;P&gt;        program_error      = 1&lt;/P&gt;&lt;P&gt;        others             = 2.&lt;/P&gt;&lt;P&gt;    if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      message id sy-msgid type sy-msgty number sy-msgno&lt;/P&gt;&lt;P&gt;              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 14:28:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/background-processing-in-alv-reports/m-p/4305168#M1026546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T14:28:54Z</dc:date>
    </item>
  </channel>
</rss>

