<?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: Table is not getting displayed by using set_table_for_first_display in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-is-not-getting-displayed-by-using-set-table-for-first-display/m-p/674455#M29806</link>
    <description>&lt;P&gt;Thanks Nabheet ..Surely will check ..&lt;/P&gt;</description>
    <pubDate>Wed, 12 Dec 2018 10:21:03 GMT</pubDate>
    <dc:creator>former_member598310</dc:creator>
    <dc:date>2018-12-12T10:21:03Z</dc:date>
    <item>
      <title>Table is not getting displayed by using set_table_for_first_display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-is-not-getting-displayed-by-using-set-table-for-first-display/m-p/674451#M29802</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
  &lt;P&gt;I am creating one simple alv output using oops concept.But not getting the table as output.Please find the below code and help me in finding the solution.&lt;/P&gt;
  &lt;P&gt;SPAN { font-family: "Courier New"; font-size: 10pt; color: #000000; background: #FFFFFF; } .L0S31 { font-style: italic; color: #808080; } .L0S32 { color: #3399FF; } .L0S33 { color: #4DA619; } .L0S52 { color: #0000FF; } .L0S55 { color: #800080; } .L0S70 { color: #808080; }&lt;/P&gt;
  &lt;P&gt;REPORT ztest_local_class.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; TYPES:BEGIN OF ty_emp,&lt;BR /&gt; pernr TYPE persno,&lt;BR /&gt; endda TYPE endda,&lt;BR /&gt; begda TYPE begda,&lt;BR /&gt; nachn TYPE pad_nachn,&lt;BR /&gt; vorna TYPE pad_vorna,&lt;BR /&gt; END OF ty_emp.&lt;BR /&gt; &lt;BR /&gt; TYPES:BEGIN OF ty_child,&lt;BR /&gt; pernr TYPE persno,&lt;BR /&gt; subty TYPE subty,&lt;BR /&gt; objps TYPE objps,&lt;BR /&gt; favor TYPE pad_vorna,&lt;BR /&gt; fanam TYPE pad_nachn,&lt;BR /&gt; fgbld TYPE gblnd,&lt;BR /&gt; END OF ty_child.&lt;BR /&gt; &lt;BR /&gt; DATA:it_emp TYPE STANDARD TABLE OF ty_emp,&lt;BR /&gt; wa_emp TYPE ty_emp,&lt;BR /&gt; it_child TYPE STANDARD TABLE OF ty_child,&lt;BR /&gt; wa_child TYPE ty_child,&lt;BR /&gt; gt_grid TYPE REF TO cl_gui_alv_grid,&lt;BR /&gt; gt_container TYPE REF TO cl_gui_custom_container,&lt;BR /&gt; gt_fcat TYPE lvc_t_fcat,&lt;BR /&gt; gw_fcat TYPE lvc_s_fcat.&lt;BR /&gt; &lt;BR /&gt; PARAMETERS: p_pernr TYPE persno.&lt;BR /&gt; &lt;BR /&gt; *----------------------------------------------------------------------*&lt;BR /&gt; * CLASS emp_data DEFINITION&lt;BR /&gt; *----------------------------------------------------------------------*&lt;BR /&gt; *&lt;BR /&gt; *----------------------------------------------------------------------*&lt;BR /&gt; CLASS emp_data DEFINITION.&lt;BR /&gt; &lt;BR /&gt; PUBLIC SECTION.&lt;BR /&gt; * DATA:lw_text(30) VALUE 'ABAP LOCAL CLASS'.&lt;BR /&gt; METHODS: alv_display.&lt;BR /&gt; ENDCLASS. "emp_data DEFINITION&lt;BR /&gt; &lt;BR /&gt; *----------------------------------------------------------------------*&lt;BR /&gt; * CLASS emp_data IMPLEMENTATION&lt;BR /&gt; *----------------------------------------------------------------------*&lt;BR /&gt; *&lt;BR /&gt; *----------------------------------------------------------------------*&lt;BR /&gt; CLASS emp_data IMPLEMENTATION.&lt;BR /&gt; METHOD alv_display.&lt;BR /&gt; &lt;BR /&gt; SELECT pernr begda endda nachn vorna FROM pa0002&lt;BR /&gt; INTO TABLE it_emp WHERE pernr = p_pernr.&lt;BR /&gt; IF sy-subrc = 0.&lt;BR /&gt; SELECT pernr subty objps favor fanam fgbld FROM pa0021&lt;BR /&gt; INTO TABLE it_child FOR ALL ENTRIES IN it_emp&lt;BR /&gt; WHERE pernr = it_emp-pernr&lt;BR /&gt; AND subty = '2'.&lt;BR /&gt; &lt;BR /&gt; ENDIF.&lt;BR /&gt; &lt;BR /&gt; IF gt_grid IS INITIAL.&lt;BR /&gt; CREATE OBJECT gt_container&lt;BR /&gt; EXPORTING&lt;BR /&gt; * parent =&lt;BR /&gt; container_name ='CONTAINER'&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; cntl_error = 1&lt;BR /&gt; cntl_system_error = 2&lt;BR /&gt; create_error = 3&lt;BR /&gt; lifetime_error = 4&lt;BR /&gt; lifetime_dynpro_dynpro_link = 5&lt;BR /&gt; OTHERS = 6&lt;BR /&gt; .&lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;BR /&gt; * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;BR /&gt; ENDIF.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; CREATE OBJECT gt_grid&lt;BR /&gt; EXPORTING&lt;BR /&gt; i_parent = gt_container&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; error_cntl_create = 1&lt;BR /&gt; error_cntl_init = 2&lt;BR /&gt; error_cntl_link = 3&lt;BR /&gt; error_dp_create = 4&lt;BR /&gt; OTHERS = 5.&lt;BR /&gt; &lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;BR /&gt; * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;BR /&gt; ENDIF.&lt;BR /&gt; &lt;BR /&gt; PERFORM build_fieldcat.&lt;BR /&gt; &lt;BR /&gt; CALL METHOD gt_grid-&amp;gt;set_table_for_first_display&lt;BR /&gt; EXPORTING&lt;BR /&gt; * i_buffer_active =&lt;BR /&gt; * i_bypassing_buffer =&lt;BR /&gt; * i_consistency_check =&lt;BR /&gt; i_structure_name = 'TY_CHILD'&lt;BR /&gt; CHANGING&lt;BR /&gt; it_outtab = it_child[]&lt;BR /&gt; it_fieldcatalog = gt_fcat&lt;BR /&gt; * it_sort =&lt;BR /&gt; * it_filter =&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; invalid_parameter_combination = 1&lt;BR /&gt; program_error = 2&lt;BR /&gt; too_many_lines = 3&lt;BR /&gt; OTHERS = 4&lt;BR /&gt; .&lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;BR /&gt; * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;BR /&gt; ENDIF.&lt;BR /&gt; &lt;BR /&gt; ELSEIF gt_grid IS NOT INITIAL.&lt;BR /&gt; &lt;BR /&gt; CALL METHOD gt_grid-&amp;gt;refresh_table_display&lt;BR /&gt; * EXPORTING&lt;BR /&gt; * is_stable =&lt;BR /&gt; * i_soft_refresh =&lt;BR /&gt; EXCEPTIONS&lt;BR /&gt; finished = 1&lt;BR /&gt; others = 2&lt;BR /&gt; .&lt;BR /&gt; IF sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt; * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;BR /&gt; * WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;BR /&gt; ENDIF.&lt;BR /&gt; &lt;BR /&gt; ENDIF.&lt;BR /&gt; &lt;BR /&gt; ENDMETHOD. "display&lt;BR /&gt; ENDCLASS. "emp_data IMPLEMENTATION&lt;BR /&gt; &lt;BR /&gt; START-OF-SELECTION.&lt;BR /&gt; &lt;BR /&gt; DATA: emp_ref TYPE REF TO emp_data.&lt;BR /&gt; CREATE OBJECT: emp_ref.&lt;BR /&gt; CALL METHOD: emp_ref-&amp;gt;alv_display.&lt;BR /&gt; *&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt; *&amp;amp; Form BUILD_FIELDCAT&lt;BR /&gt; *&amp;amp;---------------------------------------------------------------------*&lt;BR /&gt; * text&lt;BR /&gt; *----------------------------------------------------------------------*&lt;BR /&gt; * --&amp;gt; p1 text&lt;BR /&gt; * &amp;lt;-- p2 text&lt;BR /&gt; *----------------------------------------------------------------------*&lt;BR /&gt; FORM build_fieldcat .&lt;BR /&gt; &lt;BR /&gt; CLEAR gw_fcat.&lt;BR /&gt; gw_fcat-row_pos = 1.&lt;BR /&gt; gw_fcat-col_pos = 1.&lt;BR /&gt; gw_fcat-fieldname = 'PERNR'.&lt;BR /&gt; gw_fcat-tabname = 'IT_CHILD'.&lt;BR /&gt; gw_fcat-coltext = 'PERNR'.&lt;BR /&gt; * gw_fcat-outputlen = 10.&lt;BR /&gt; APPEND gw_fcat TO gt_fcat.&lt;BR /&gt; &lt;BR /&gt; CLEAR gw_fcat.&lt;BR /&gt; gw_fcat-row_pos = 1.&lt;BR /&gt; gw_fcat-col_pos = 2.&lt;BR /&gt; gw_fcat-fieldname = 'SUBTY'.&lt;BR /&gt; gw_fcat-tabname = 'IT_CHILD'.&lt;BR /&gt; gw_fcat-coltext = 'SUBTY'.&lt;BR /&gt; * gw_fcat-outputlen = 10.&lt;BR /&gt; APPEND gw_fcat TO gt_fcat.&lt;BR /&gt; &lt;BR /&gt; CLEAR gw_fcat.&lt;BR /&gt; gw_fcat-row_pos = 1.&lt;BR /&gt; gw_fcat-col_pos = 3.&lt;BR /&gt; gw_fcat-fieldname = 'OBJPS'.&lt;BR /&gt; gw_fcat-tabname = 'IT_CHILD'.&lt;BR /&gt; gw_fcat-coltext = 'OBJPS'.&lt;BR /&gt; * gw_fcat-outputlen = 10.&lt;BR /&gt; APPEND gw_fcat TO gt_fcat.&lt;BR /&gt; &lt;BR /&gt; CLEAR gw_fcat.&lt;BR /&gt; gw_fcat-row_pos = 1.&lt;BR /&gt; gw_fcat-col_pos = 4.&lt;BR /&gt; gw_fcat-fieldname = 'FAVOR'.&lt;BR /&gt; gw_fcat-tabname = 'IT_CHILD'.&lt;BR /&gt; gw_fcat-coltext = 'FAVOR'.&lt;BR /&gt; * gw_fcat-outputlen = 10.&lt;BR /&gt; APPEND gw_fcat TO gt_fcat.&lt;BR /&gt; &lt;BR /&gt; CLEAR gw_fcat.&lt;BR /&gt; gw_fcat-row_pos = 1.&lt;BR /&gt; gw_fcat-col_pos = 5.&lt;BR /&gt; gw_fcat-fieldname = 'FANAM'.&lt;BR /&gt; gw_fcat-tabname = 'IT_CHILD'.&lt;BR /&gt; gw_fcat-coltext = 'FANAM'.&lt;BR /&gt; * gw_fcat-outputlen = 10.&lt;BR /&gt; APPEND gw_fcat TO gt_fcat.&lt;BR /&gt; &lt;BR /&gt; CLEAR gw_fcat.&lt;BR /&gt; gw_fcat-row_pos = 1.&lt;BR /&gt; gw_fcat-col_pos = 6.&lt;BR /&gt; gw_fcat-fieldname = 'FGBLD'.&lt;BR /&gt; gw_fcat-tabname = 'IT_CHILD'.&lt;BR /&gt; gw_fcat-coltext = 'FGBLD'.&lt;BR /&gt; * gw_fcat-outputlen = 10.&lt;BR /&gt; APPEND gw_fcat TO gt_fcat.&lt;BR /&gt; &lt;BR /&gt; &lt;BR /&gt; ENDFORM. " BUILD_FIELDCAT&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 12:42:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-is-not-getting-displayed-by-using-set-table-for-first-display/m-p/674451#M29802</guid>
      <dc:creator>former_member598310</dc:creator>
      <dc:date>2018-12-11T12:42:23Z</dc:date>
    </item>
    <item>
      <title>Re: Table is not getting displayed by using set_table_for_first_display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-is-not-getting-displayed-by-using-set-table-for-first-display/m-p/674452#M29803</link>
      <description>&lt;P&gt;Hi Rajashree,&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;You need a screen (100 for example) with a container named "Container". In PBO of the screen you need call the method alv_display of your local class.&lt;/LI&gt;&lt;LI&gt;If you use local class you should have a method to create fieldcatalog instead of using subroutine.&lt;/LI&gt;&lt;LI&gt;You should work on the naming of your variables&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;Here is a working sample of your code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES:BEGIN OF ty_emp,
        pernr TYPE persno,
        endda TYPE endda,
        begda TYPE begda,
        nachn TYPE pad_nachn,
        vorna TYPE pad_vorna,
      END OF ty_emp.
TYPES:BEGIN OF ty_child,
        pernr TYPE persno,
        subty TYPE subty,
        objps TYPE objps,
        favor TYPE pad_vorna,
        fanam TYPE pad_nachn,
        fgbld TYPE gblnd,
      END OF ty_child.

DATA:it_emp       TYPE STANDARD TABLE OF ty_emp,
     wa_emp       TYPE ty_emp,
     it_child     TYPE STANDARD TABLE OF ty_child,
     wa_child     TYPE ty_child,
     gt_grid      TYPE REF TO cl_gui_alv_grid,
     gt_container TYPE REF TO cl_gui_custom_container,
     gt_fcat      TYPE lvc_t_fcat,
     gw_fcat      TYPE lvc_s_fcat.

PARAMETERS: p_pernr TYPE persno.

*----------------------------------------------------------------------*
* CLASS emp_data DEFINITION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
CLASS emp_data DEFINITION.
  PUBLIC SECTION.
* DATA:lw_text(30) VALUE 'ABAP LOCAL CLASS'.
    METHODS: alv_display.
ENDCLASS. "emp_data DEFINITION

*----------------------------------------------------------------------*
* CLASS emp_data IMPLEMENTATION
*----------------------------------------------------------------------*
*
*----------------------------------------------------------------------*
CLASS emp_data IMPLEMENTATION.
  METHOD alv_display.
    SELECT pernr begda endda nachn vorna FROM pa0002
    INTO TABLE it_emp WHERE pernr = p_pernr.
    IF sy-subrc = 0.
      SELECT pernr subty objps favor fanam fgbld FROM pa0021
      INTO TABLE it_child FOR ALL ENTRIES IN it_emp
      WHERE pernr = it_emp-pernr
      AND subty = '2'.
    ENDIF.

    IF gt_grid IS INITIAL.
      CREATE OBJECT gt_container
        EXPORTING
*         parent                      =
          container_name              = 'CONTAINER'
        EXCEPTIONS
          cntl_error                  = 1
          cntl_system_error           = 2
          create_error                = 3
          lifetime_error              = 4
          lifetime_dynpro_dynpro_link = 5
          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 OBJECT gt_grid
        EXPORTING
          i_parent          = gt_container
        EXCEPTIONS
          error_cntl_create = 1
          error_cntl_init   = 2
          error_cntl_link   = 3
          error_dp_create   = 4
          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.

      PERFORM build_fieldcat.
      CALL METHOD gt_grid-&amp;gt;set_table_for_first_display
        EXPORTING
*         i_buffer_active               =
*         i_bypassing_buffer            =
*         i_consistency_check           =
          i_structure_name              = 'TY_CHILD'
        CHANGING
          it_outtab                     = it_child[]
          it_fieldcatalog               = gt_fcat
*         it_sort                       =
*         it_filter                     =
        EXCEPTIONS
          invalid_parameter_combination = 1
          program_error                 = 2
          too_many_lines                = 3
          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.
    ELSEIF gt_grid IS NOT INITIAL.
      CALL METHOD gt_grid-&amp;gt;refresh_table_display
* EXPORTING
* is_stable =
* i_soft_refresh =
        EXCEPTIONS
          finished = 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.
    ENDIF.
  ENDMETHOD. "display
ENDCLASS. "emp_data IMPLEMENTATION

START-OF-SELECTION.
  DATA: emp_ref TYPE REF TO emp_data.
  CREATE OBJECT: emp_ref.

END-OF-SELECTION.
  CALL SCREEN 100.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Form BUILD_FIELDCAT
*&amp;amp;---------------------------------------------------------------------*
* text
*----------------------------------------------------------------------*
* --&amp;gt; p1 text
* &amp;lt;-- p2 text
*----------------------------------------------------------------------*
FORM build_fieldcat .
  CLEAR gw_fcat.
  gw_fcat-row_pos = 1.
  gw_fcat-col_pos = 1.
  gw_fcat-fieldname = 'PERNR'.
  gw_fcat-tabname = 'IT_CHILD'.
  gw_fcat-coltext = 'PERNR'.
* gw_fcat-outputlen = 10.
  APPEND gw_fcat TO gt_fcat.
  CLEAR gw_fcat.
  gw_fcat-row_pos = 1.
  gw_fcat-col_pos = 2.
  gw_fcat-fieldname = 'SUBTY'.
  gw_fcat-tabname = 'IT_CHILD'.
  gw_fcat-coltext = 'SUBTY'.
* gw_fcat-outputlen = 10.
  APPEND gw_fcat TO gt_fcat.
  CLEAR gw_fcat.
  gw_fcat-row_pos = 1.
  gw_fcat-col_pos = 3.
  gw_fcat-fieldname = 'OBJPS'.
  gw_fcat-tabname = 'IT_CHILD'.
  gw_fcat-coltext = 'OBJPS'.
* gw_fcat-outputlen = 10.
  APPEND gw_fcat TO gt_fcat.
  CLEAR gw_fcat.
  gw_fcat-row_pos = 1.
  gw_fcat-col_pos = 4.
  gw_fcat-fieldname = 'FAVOR'.
  gw_fcat-tabname = 'IT_CHILD'.
  gw_fcat-coltext = 'FAVOR'.
* gw_fcat-outputlen = 10.
  APPEND gw_fcat TO gt_fcat.
  CLEAR gw_fcat.
  gw_fcat-row_pos = 1.
  gw_fcat-col_pos = 5.
  gw_fcat-fieldname = 'FANAM'.
  gw_fcat-tabname = 'IT_CHILD'.
  gw_fcat-coltext = 'FANAM'.
* gw_fcat-outputlen = 10.
  APPEND gw_fcat TO gt_fcat.
  CLEAR gw_fcat.
  gw_fcat-row_pos = 1.
  gw_fcat-col_pos = 6.
  gw_fcat-fieldname = 'FGBLD'.
  gw_fcat-tabname = 'IT_CHILD'.
  gw_fcat-coltext = 'FGBLD'.
* gw_fcat-outputlen = 10.
  APPEND gw_fcat TO gt_fcat.
ENDFORM. " BUILD_FIELDCAT

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  STATUS_0100  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE status_0100 OUTPUT.
  SET PF-STATUS '0100'.
  SET TITLEBAR '0100'.
ENDMODULE.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  USER_COMMAND_0100  INPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE user_command_0100 INPUT.
  CASE sy-ucomm.
    WHEN 'BACK' OR 'CANC' OR 'EXIT'.
      LEAVE TO SCREEN 0.
  ENDCASE.
ENDMODULE.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  ALV_DISPLAY  OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE alv_display OUTPUT.
  CALL METHOD: emp_ref-&amp;gt;alv_display.
ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Here is flow logic of screen 100:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PROCESS BEFORE OUTPUT.
  MODULE alv_display.
  MODULE status_0100.
*
PROCESS AFTER INPUT.
  MODULE user_command_0100.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;You need also the following status:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/248412-2018-12-11-150007.jpg" /&gt;&lt;/P&gt;&lt;P&gt;Greetings&lt;BR /&gt;Stephan&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 14:01:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-is-not-getting-displayed-by-using-set-table-for-first-display/m-p/674452#M29803</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2018-12-11T14:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Table is not getting displayed by using set_table_for_first_display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-is-not-getting-displayed-by-using-set-table-for-first-display/m-p/674453#M29804</link>
      <description>&lt;P&gt;Perhaps you can use CL_SALV_TABLE to display a report.&lt;/P&gt;</description>
      <pubDate>Tue, 11 Dec 2018 19:34:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-is-not-getting-displayed-by-using-set-table-for-first-display/m-p/674453#M29804</guid>
      <dc:creator>srikanthnalluri</dc:creator>
      <dc:date>2018-12-11T19:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: Table is not getting displayed by using set_table_for_first_display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-is-not-getting-displayed-by-using-set-table-for-first-display/m-p/674454#M29805</link>
      <description>&lt;P&gt;Check BCALV_GRID_DEMO for reference or search BC*ALV* in SE38 for the examples and valdiate it with what you have coded.&lt;/P&gt;&lt;P&gt;Nabheet&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 07:15:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-is-not-getting-displayed-by-using-set-table-for-first-display/m-p/674454#M29805</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2018-12-12T07:15:18Z</dc:date>
    </item>
    <item>
      <title>Re: Table is not getting displayed by using set_table_for_first_display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-is-not-getting-displayed-by-using-set-table-for-first-display/m-p/674455#M29806</link>
      <description>&lt;P&gt;Thanks Nabheet ..Surely will check ..&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 10:21:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-is-not-getting-displayed-by-using-set-table-for-first-display/m-p/674455#M29806</guid>
      <dc:creator>former_member598310</dc:creator>
      <dc:date>2018-12-12T10:21:03Z</dc:date>
    </item>
    <item>
      <title>Re: Table is not getting displayed by using set_table_for_first_display</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-is-not-getting-displayed-by-using-set-table-for-first-display/m-p/674456#M29807</link>
      <description>&lt;P&gt;Problem solved..Everything was right ..I had not place the custom control in the layout screen.Now its working .. Thanks all of you ..&lt;/P&gt;</description>
      <pubDate>Wed, 12 Dec 2018 11:15:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-is-not-getting-displayed-by-using-set-table-for-first-display/m-p/674456#M29807</guid>
      <dc:creator>former_member598310</dc:creator>
      <dc:date>2018-12-12T11:15:45Z</dc:date>
    </item>
  </channel>
</rss>

