<?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: ALV data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data/m-p/3558037#M856168</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Annie&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on your description I see two problems:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(1) You create the docking container a second time when you choose the other radiobutton&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see from my coding all the control instantiation is done prior to displaying the screen. In the screen logic I simply do the display of the ALV list output (method SET_TABLE_FOR_FIRST_DISPLAY).&lt;/P&gt;&lt;P&gt;You could use the same logic with a custom container on the screen. Just take care that there is no duplicated instantiation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(2) You append the fieldcatalog for the second table to the fieldcatalog for the first table.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking at my example then the line structure of the output itab would look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: BEGIN OF ty_s_outtab.
INCLUDE TYPE knb1  AS knb1.
INCLUDE TYPE knvv   AS knvv.   " not possible -&amp;gt; syntax error (explanation see below)
INCLUDE TYPE knvv   AS knvv RENAMING WITH SUFFIX _knvv.
TYPES: END OF ty_s_outtab.
TYPES: ty_t_outtab  TYPE STANDARD TABLE OF ty_s_outtab
                               WITH DEFAULT KEY.
DATA:  gt_outtab  TYPE ty_t_outtab.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, this coding will not work because the second structure (KNVV) contains same field names like KNB1. Thus, it would be necessary to rename the fieldnames.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to display two completely different tables then you need to independent and separate fieldcatalogs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Mar 2008 06:31:15 GMT</pubDate>
    <dc:creator>uwe_schieferstein</dc:creator>
    <dc:date>2008-03-17T06:31:15Z</dc:date>
    <item>
      <title>ALV data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data/m-p/3558033#M856164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;When user chooses say X then  the first data table with its fieldcatalog should be output and when he chooses Y then second data table with its fieldcatalog should be output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I m transfering my output data table and fieldcatalog to global parameters: &amp;lt;DATA&amp;gt; and it_fieldcatalog, where &amp;lt;DATA&amp;gt; is the fieldsymbol of type table and it_fieldcatalog is of type lvc_t_fcat and then calling the following:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CREATE OBJECT g_container&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      container_name    = 'C_CONTAINER'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CREATE OBJECT g_grid&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      i_parent          = g_container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL METHOD g_grid-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;    CHANGING&lt;/P&gt;&lt;P&gt;      it_outtab                     = &amp;lt;DATA&amp;gt;      it_fieldcatalog               = it_fieldcatalog&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      invalid_parameter_combination = 1&lt;/P&gt;&lt;P&gt;      program_error                 = 2&lt;/P&gt;&lt;P&gt;      too_many_lines                = 3&lt;/P&gt;&lt;P&gt;      OTHERS                        = 4.&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  WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&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;The problem i m facing is that when i user chooses X then the first output table's data is displayed in the ALV but when he chooses Y the same data is shown instead of second  table's data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why the current data is not displayed though respective table and fieldcatalog tables match.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLZ HELP!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Mar 2008 10:51:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data/m-p/3558033#M856164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-15T10:51:10Z</dc:date>
    </item>
    <item>
      <title>Re: ALV data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data/m-p/3558034#M856165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Annie &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There must be something wrong with the refreshing of the ALV list output. The error is in the coding not shown.&lt;/P&gt;&lt;P&gt;Below you see sample report &lt;STRONG&gt;ZUS_SDN_ALV_SINGLE_SWITCH_DISP&lt;/STRONG&gt; which shows a possible solution to your problem:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report  ZUS_SDN_ALV_SINGLE_SWITCH_DISP
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Thread: ALV data
*&amp;amp; &amp;lt;a class="jive_macro jive_macro_thread" href="" __jive_macro_name="thread" modifiedtitle="true" __default_attr="783560"&amp;gt;&amp;lt;/a&amp;gt;
*&amp;amp;---------------------------------------------------------------------*

REPORT  zus_sdn_alv_single_switch_disp.



DATA:
  gd_okcode        TYPE ui_func,
*
  gt_fcat          TYPE lvc_t_fcat,
  go_docking       TYPE REF TO cl_gui_docking_container,
  go_grid          TYPE REF TO cl_gui_alv_grid.



DATA:
  gd_tabname       TYPE tabname,
  gdo_data         TYPE REF TO data,
  gt_knb1          TYPE STANDARD TABLE OF knb1,
  gt_knvv          TYPE STANDARD TABLE OF knvv.

FIELD-SYMBOLS:
  &amp;lt;gt_outtab&amp;gt;      TYPE table.

PARAMETERS:
  p_xknb1 RADIOBUTTON GROUP radi  DEFAULT 'X',
  p_xknvv RADIOBUTTON GROUP radi.



START-OF-SELECTION.

  SELECT * FROM  knb1 INTO TABLE gt_knb1 UP TO 100 ROWS
         WHERE  bukrs  = '1000'.
  SELECT * FROM  knvv INTO TABLE gt_knvv UP TO 100 ROWS
      FOR ALL ENTRIES IN gt_knb1
         WHERE  kunnr  = gt_knb1-kunnr.




  PERFORM init_controls.


  PERFORM set_output_data.


* Build fieldcatalog
  PERFORM build_fieldcatalog.








* Link the docking container to the target dynpro
  CALL METHOD go_docking-&amp;gt;link
    EXPORTING
      repid                       = syst-repid
      dynnr                       = '0100'
*      CONTAINER                   =
    EXCEPTIONS
      OTHERS                      = 4.
  IF sy-subrc &amp;lt;&amp;gt; 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.


* ok-code field = GD_OKCODE
  CALL SCREEN '0100'.


END-OF-SELECTION.

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE status_0100 OUTPUT.
  SET PF-STATUS 'STATUS_0100'.
*  SET TITLEBAR 'xxx'.

* Display data
  CALL METHOD go_grid-&amp;gt;set_table_for_first_display
    CHANGING
      it_outtab       = &amp;lt;gt_outtab&amp;gt;
      it_fieldcatalog = gt_fcat
    EXCEPTIONS
      OTHERS          = 4.
  IF sy-subrc &amp;lt;&amp;gt; 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.

  TRANSLATE gd_okcode TO UPPER CASE.

  CASE gd_okcode.
    WHEN 'BACK' OR
         'EXIT'  OR
         'CANC'.
      SET SCREEN 0. LEAVE SCREEN.

    WHEN 'TOGGLE'.
      IF ( p_xknb1 = 'X' ).
        p_xknb1 = ' '.
        p_xknvv = 'X'.
      ELSE.
        p_xknb1 = 'X'.
        p_xknvv = ' '.
      ENDIF.
      PERFORM set_output_data.
      PERFORM build_fieldcatalog.



    WHEN OTHERS.
  ENDCASE.

  CLEAR: gd_okcode.

ENDMODULE.                 " USER_COMMAND_0100  INPUT


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  BUILD_FIELDCATALOG
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  --&amp;gt;  p1        text
*  &amp;lt;--  p2        text
*----------------------------------------------------------------------*
FORM build_fieldcatalog.
* define local data
  DATA:
    ls_fcat        TYPE lvc_s_fcat.

  REFRESH: gt_fcat.  " !!! otherwise columns are appended
  CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
*     I_BUFFER_ACTIVE              =
      i_structure_name             = gd_tabname
*     I_CLIENT_NEVER_DISPLAY       = 'X'
*     I_BYPASSING_BUFFER           =
*     I_INTERNAL_TABNAME           =
    CHANGING
      ct_fieldcat                  = gt_fcat
    EXCEPTIONS
      inconsistent_interface       = 1
      program_error                = 2
      OTHERS                       = 3.
  IF sy-subrc &amp;lt;&amp;gt; 0.
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.

ENDFORM.                    " BUILD_FIELDCATALOG


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  INIT_CONTROLS
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  --&amp;gt;  p1        text
*  &amp;lt;--  p2        text
*----------------------------------------------------------------------*
FORM init_controls .

* Create docking container
  CREATE OBJECT go_docking
    EXPORTING
      parent = cl_gui_container=&amp;gt;screen0
      ratio  = 90
    EXCEPTIONS
      OTHERS = 6.
  IF sy-subrc &amp;lt;&amp;gt; 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.


* Create ALV grid
  CREATE OBJECT go_grid
    EXPORTING
      i_parent = go_docking
    EXCEPTIONS
      OTHERS   = 5.
  IF sy-subrc &amp;lt;&amp;gt; 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.

ENDFORM.                    " INIT_CONTROLS


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  SET_OUTPUT_DATA
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*  --&amp;gt;  p1        text
*  &amp;lt;--  p2        text
*----------------------------------------------------------------------*
FORM set_output_data .
* define local data
  DATA: lo_typedescr  TYPE REF TO cl_abap_typedescr,
        lo_tabledescr TYPE REF TO cl_abap_tabledescr,
        lo_strucdescr TYPE REF TO cl_abap_structdescr,
        ld_relname    TYPE string.

  CLEAR: gdo_data,
         gd_tabname.
  UNASSIGN &amp;lt;gt_outtab&amp;gt;.

  IF ( p_xknb1 = 'X' ).
    GET REFERENCE OF gt_knb1 INTO gdo_data.
  ELSE.
    GET REFERENCE OF gt_knvv INTO gdo_data.
  ENDIF.
  ASSIGN gdo_data-&amp;gt;* TO &amp;lt;gt_outtab&amp;gt;.


  " Determine structure of output list dynamically
  CALL METHOD cl_abap_typedescr=&amp;gt;describe_by_data_ref
    EXPORTING
      p_data_ref           = gdo_data
    RECEIVING
      p_descr_ref          = lo_typedescr
    EXCEPTIONS
      reference_is_initial = 1
      OTHERS               = 2.
  IF sy-subrc &amp;lt;&amp;gt; 0.
*   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
*              WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
  ENDIF.

  lo_tabledescr ?= lo_typedescr.
  lo_strucdescr ?= lo_tabledescr-&amp;gt;get_table_line_type( ).

  ld_relname = lo_strucdescr-&amp;gt;get_relative_name( ).
  gd_tabname = ld_relname.

ENDFORM.                    " SET_OUTPUT_DATA
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 15 Mar 2008 21:34:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data/m-p/3558034#M856165</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-03-15T21:34:57Z</dc:date>
    </item>
    <item>
      <title>Re: ALV data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data/m-p/3558035#M856166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Annie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Little addition in your code as below would help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy_ucomm EQ 'BACK'.&lt;/P&gt;&lt;P&gt;    CALL METHOD lr_grid_file-&amp;gt;refresh_table_display. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Refreshing the grid display for further selections.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    CALL METHOD lr_grid_file-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        is_layout        = lv_layout&lt;/P&gt;&lt;P&gt;      CHANGING&lt;/P&gt;&lt;P&gt;        it_outtab        = lt_file_list&lt;/P&gt;&lt;P&gt;        it_fieldcatalog  = lt_fieldcat.&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;Hope this works ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds,&lt;/P&gt;&lt;P&gt;Gaurav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2008 05:18:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data/m-p/3558035#M856166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-17T05:18:52Z</dc:date>
    </item>
    <item>
      <title>Re: ALV data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data/m-p/3558036#M856167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Uwe,&lt;/P&gt;&lt;P&gt;Thanks a lot for the help.&lt;/P&gt;&lt;P&gt;Ur code is really helpful.&lt;/P&gt;&lt;P&gt;Now, after creating docking container and sisplaying data on it, what i can see is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.) Radiobutton X -- Data displayed on screen 100&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2.)Radiobutton Y --  Screen 100 divided by two. On one screen above (step 1) data and on the other part step 2 data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also for step 1 i've created fieldcatalog by FM LVC_FIELDCATALOG_MERGE and transfering the fieldcatalog to global variable.&lt;/P&gt;&lt;P&gt;For step 2 i've created fieldcatalog by passing individual parameter and appending it to the internal table and then transfering this fieldcatalog to global variable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also in screen 100 is blank, and i 've not created any custom container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My query is though i can see data for step 2 but why the previous data is also displayed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLZ HELP!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2008 06:15:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data/m-p/3558036#M856167</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-17T06:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: ALV data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data/m-p/3558037#M856168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Annie&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on your description I see two problems:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(1) You create the docking container a second time when you choose the other radiobutton&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you can see from my coding all the control instantiation is done prior to displaying the screen. In the screen logic I simply do the display of the ALV list output (method SET_TABLE_FOR_FIRST_DISPLAY).&lt;/P&gt;&lt;P&gt;You could use the same logic with a custom container on the screen. Just take care that there is no duplicated instantiation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;(2) You append the fieldcatalog for the second table to the fieldcatalog for the first table.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking at my example then the line structure of the output itab would look like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: BEGIN OF ty_s_outtab.
INCLUDE TYPE knb1  AS knb1.
INCLUDE TYPE knvv   AS knvv.   " not possible -&amp;gt; syntax error (explanation see below)
INCLUDE TYPE knvv   AS knvv RENAMING WITH SUFFIX _knvv.
TYPES: END OF ty_s_outtab.
TYPES: ty_t_outtab  TYPE STANDARD TABLE OF ty_s_outtab
                               WITH DEFAULT KEY.
DATA:  gt_outtab  TYPE ty_t_outtab.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually, this coding will not work because the second structure (KNVV) contains same field names like KNB1. Thus, it would be necessary to rename the fieldnames.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to display two completely different tables then you need to independent and separate fieldcatalogs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2008 06:31:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data/m-p/3558037#M856168</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2008-03-17T06:31:15Z</dc:date>
    </item>
    <item>
      <title>Re: ALV data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data/m-p/3558038#M856169</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;If flag = 'Y'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform for_1_report usinf fcat, events and al&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform for_1_report usinf fcat, events and al&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Mar 2008 07:01:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-data/m-p/3558038#M856169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-17T07:01:46Z</dc:date>
    </item>
  </channel>
</rss>

