<?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: Display internal table on screen. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328333#M1227909</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi look at this beautiful code.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ztest line-size 1023.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data itab type standard table of mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_matnr type matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF BLOCK blk3 WITH FRAME TITLE blk3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select * from mara into table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SRTT_TABLE_DISPLAY'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      table = 'MARA'&lt;/P&gt;&lt;P&gt;    IV_TITLE = 'User List'&lt;/P&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;      table_content = itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF BLOCK blk3.&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;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 14 Mar 2009 09:09:09 GMT</pubDate>
    <dc:creator>former_member203501</dc:creator>
    <dc:date>2009-03-14T09:09:09Z</dc:date>
    <item>
      <title>Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328322#M1227898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi expert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        I want to display an internal table on screen. I had  developed  the program and got all the values in internal table. now i want to display this internal table on screen. &lt;/P&gt;&lt;P&gt;    how can i do this? &lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Abhishek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 06:44:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328322#M1227898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-14T06:44:07Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328323#M1227899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use the loop statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab into fs_itab.&lt;/P&gt;&lt;P&gt;write: / fs_itab-carrid,fs_itab-connid.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;jaya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 06:46:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328323#M1227899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-14T06:46:50Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328324#M1227900</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;Test the Sample Code Bellow.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES: BEGIN OF ty_it,
  mm(10),
  amount TYPE i,
  END OF ty_it.

DATA: it_mm1 TYPE STANDARD TABLE OF ty_it WITH HEADER LINE.

it_mm1-mm = 'AAA'.
it_mm1-amount = 10.
APPEND it_mm1 TO it_mm1.

it_mm1-mm = 'BBB'.
it_mm1-amount = 10.
APPEND it_mm1 TO it_mm1.

it_mm1-mm = 'AAA'.
it_mm1-amount = 10.
APPEND it_mm1 TO it_mm1.

SORT it_mm1 BY mm DESCENDING.
  WRITE: 'Heading1', 20 'Heading2'.
LOOP AT it_mm1.
  WRITE: / it_mm1-mm, it_mm1-amount.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 06:52:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328324#M1227900</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-03-14T06:52:45Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328325#M1227901</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;Use this loop statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT &amp;lt;tablename&amp;gt; INTO &amp;lt;workarea&amp;gt;.&lt;/P&gt;&lt;P&gt;     WRITE &amp;lt;workarea-fieldname&amp;gt;.&lt;/P&gt;&lt;P&gt;ENDLOOP&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 07:05:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328325#M1227901</guid>
      <dc:creator>jyothi_anagani</dc:creator>
      <dc:date>2009-03-14T07:05:11Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328326#M1227902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for reply.&lt;/P&gt;&lt;P&gt;but i want to display the internal table on customize screen which i developed by using screen painter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 07:09:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328326#M1227902</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-14T07:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328327#M1227903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for reply.&lt;/P&gt;&lt;P&gt;but i want to display the internal table on customize screen which i developed by using screen painter.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 07:09:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328327#M1227903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-14T07:09:40Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328328#M1227904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think you can make use of ALV which will be developed by using OO ALV&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 07:10:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328328#M1227904</guid>
      <dc:creator>bpawanchand</dc:creator>
      <dc:date>2009-03-14T07:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328329#M1227905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hmm,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Than you have to use &lt;STRONG&gt;Table Control&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 07:11:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328329#M1227905</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-03-14T07:11:16Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328330#M1227906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Faisal Altaf ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       I tried it by using table control but not able to call selection screen. do you have any code for reference.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 07:18:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328330#M1227906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-14T07:18:03Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328331#M1227907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try with this.&lt;/P&gt;&lt;P&gt;First create the container on your screen.&lt;/P&gt;&lt;P&gt;In your program,&lt;/P&gt;&lt;P&gt;data:  w_container TYPE REF TO cl_gui_custom_container,&lt;/P&gt;&lt;P&gt;         it_fieldcat TYPE TABLE OF lvc_s_fcat,&lt;/P&gt;&lt;P&gt;      wa_fieldcat TYPE lvc_s_fcat,&lt;/P&gt;&lt;P&gt;      is_layout   TYPE lvc_s_layo,&lt;/P&gt;&lt;P&gt;     w_grid  TYPE REF TO cl_gui_alv_grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR wa_fieldcat.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-col_pos = 1.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-fieldname = 'F!'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-coltext = 'F!.'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-outputlen = 10.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcat TO it_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR wa_fieldcat.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-col_pos = 1.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-fieldname = 'F2'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-coltext = 'F2.'.&lt;/P&gt;&lt;P&gt;  wa_fieldcat-outputlen = 10.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcat TO it_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE OBJECT w_container&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     parent                      =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      container_name               = 'CONTAINER'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     style                       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     lifetime                    = lifetime_default&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     repid                       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     dynnr                       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     no_autodef_progid_dynnr     =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      cntl_error                  = 1&lt;/P&gt;&lt;P&gt;      cntl_system_error           = 2&lt;/P&gt;&lt;P&gt;      create_error                = 3&lt;/P&gt;&lt;P&gt;      lifetime_error              = 4&lt;/P&gt;&lt;P&gt;      lifetime_dynpro_dynpro_link = 5&lt;/P&gt;&lt;P&gt;      OTHERS                      = 6&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;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CREATE OBJECT w_grid&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      i_shellstyle      = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      i_lifetime        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       i_parent          = w_container&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      i_appl_events     = space&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      i_parentdbg       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      i_applogparent    =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      i_graphicsparent  =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      i_name            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      i_fcat_complete   = space&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      error_cntl_create = 1&lt;/P&gt;&lt;P&gt;      error_cntl_init   = 2&lt;/P&gt;&lt;P&gt;      error_cntl_link   = 3&lt;/P&gt;&lt;P&gt;      error_dp_create   = 4&lt;/P&gt;&lt;P&gt;      OTHERS            = 5&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;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  w_grid-&amp;gt;set_table_for_first_display(&lt;/P&gt;&lt;P&gt; EXPORTING&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   i_buffer_active               =&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_consistency_check           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    i_structure_name              =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     is_variant                    = w_variant&lt;/P&gt;&lt;P&gt;     i_save                        = 'A'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   i_default                     = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     is_layout                     = is_layout&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   is_print                      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   it_special_groups             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   it_toolbar_excluding          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   it_hyperlink                  =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   it_alv_graphics               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   it_except_qinfo               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   ir_salv_adapter               =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CHANGING&lt;/P&gt;&lt;P&gt;    it_outtab                     =  it_output&lt;/P&gt;&lt;P&gt;    it_fieldcatalog               =  it_fieldcat&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   it_sort                       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   it_filter                     =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;       ).&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;&lt;/P&gt;&lt;P&gt;CALL SCREEN 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will resolve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Anagha Deshmukh&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Anagha Deshmukh on Mar 14, 2009 8:36 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 07:33:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328331#M1227907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-14T07:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328332#M1227908</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;PRE&gt;&lt;CODE&gt;PROCESS BEFORE OUTPUT.
  MODULE set_cursor_field.
  MODULE zfsl_stinfo_tc_init.
  MODULE zfsl_stinfo_disable_key.

  LOOP AT it_zfsl_stinfo INTO it_zfsl_stinfo "Use This Loop 
       WITH CONTROL tc_for_zfsl_stinfo " here tc_for_zfsl_stinfo is table Control name.
       CURSOR tc_for_zfsl_stinfo-current_line.
  ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your table Control Fields name must be &lt;STRONG&gt;IT_ZFSL_STINFO-F1, IT_ZFSL_STINFO-f2&lt;/STRONG&gt; so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in your driver program also write the following.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CONTROLS: tc_for_zfsl_stinfo TYPE TABLEVIEW USING SCREEN 1. " here tc_for_zfsl_stinfo is Table Control name and 1 is Screen number of screen painter&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please Reply if any Issue,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Faisal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Faisal Altaf on Mar 14, 2009 1:22 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 07:35:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328332#M1227908</guid>
      <dc:creator>faisalatsap</dc:creator>
      <dc:date>2009-03-14T07:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328333#M1227909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi look at this beautiful code.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT ztest line-size 1023.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data itab type standard table of mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_matnr type matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: BEGIN OF BLOCK blk3 WITH FRAME TITLE blk3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select * from mara into table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SRTT_TABLE_DISPLAY'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      table = 'MARA'&lt;/P&gt;&lt;P&gt;    IV_TITLE = 'User List'&lt;/P&gt;&lt;P&gt;      tables&lt;/P&gt;&lt;P&gt;      table_content = itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN: END OF BLOCK blk3.&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;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 09:09:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328333#M1227909</guid>
      <dc:creator>former_member203501</dc:creator>
      <dc:date>2009-03-14T09:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328334#M1227910</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;To Display an internal Table in the Screen use Write Statement &lt;/P&gt;&lt;P&gt;For more than one record in the internal table use Loop At Internal Name .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Sample Code&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : ekko.&lt;/P&gt;&lt;P&gt;data : begin of struc,&lt;/P&gt;&lt;P&gt;      EBELN like ekko-ebeln,  	&lt;/P&gt;&lt;P&gt;      lifnr like ekko-lifnr,  	        &lt;/P&gt;&lt;P&gt;      end of struc.&lt;/P&gt;&lt;P&gt;data : itab like struc occurs 0 with header line.&lt;/P&gt;&lt;P&gt;select ebeln lifnr from ekko &lt;/P&gt;&lt;P&gt;into corresponding fields  of itab  up to 80 rows.&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;endselect.&lt;/P&gt;&lt;P&gt;write :/5 'purchase document',&lt;/P&gt;&lt;P&gt;            30 'vendor no'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; write : /5 itab-ebeln,&lt;/P&gt;&lt;P&gt;           30 itab-lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 11:05:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328334#M1227910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-14T11:05:08Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328335#M1227911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@ Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Man that was an awesome info. thanks for that function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yeah you are right it was a awesome piece of code indeed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 14 Mar 2009 12:48:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328335#M1227911</guid>
      <dc:creator>former_member873340</dc:creator>
      <dc:date>2009-03-14T12:48:40Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328336#M1227912</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks to all.............&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Mar 2009 04:25:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328336#M1227912</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-03-16T04:25:18Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328337#M1227913</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you &lt;SPAN style="font-size: 10.909090995788574px; color: #333333; background: #ffffff;"&gt;&lt;STRONG&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="5937" data-externalid="" data-presence="null" data-userid="225186" data-username="venkateswararao.appikonda" href="https://answers.sap.com/people/venkateswararao.appikonda" style="color: #3778c7; padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; background: transparent;"&gt;Venkateswararao Appikonda&lt;/A&gt;&lt;/STRONG&gt;&lt;/SPAN&gt; for the function module!! Worked wonders for me after lot of struggle to attain the required output &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote jiveImage" src="https://community.sap.com/877/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;SPAN __jive_emoticon_name="plus" __jive_macro_name="emoticon" class="jive_macro jive_emote jiveImage" src="https://community.sap.com/877/images/emoticons/plus.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Debugger&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 30 May 2014 12:51:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328337#M1227913</guid>
      <dc:creator>former_member695529</dc:creator>
      <dc:date>2014-05-30T12:51:43Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328338#M1227914</link>
      <description>&lt;P&gt;IMHO the easiest way is to use an ALV grid:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT z_test.
...
DATA: lo_alv TYPE REF TO cl_salv_table.
cl_salv_table=&amp;gt;factory(
  IMPORTING
    r_salv_table = lo_alv
  CHANGING
    t_table      = itab
).
lo_alv-&amp;gt;display( ).&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Fri, 17 Sep 2021 14:21:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328338#M1227914</guid>
      <dc:creator>guido_s</dc:creator>
      <dc:date>2021-09-17T14:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328339#M1227915</link>
      <description>&lt;P&gt;what if i wanted to make the program able to search a table and display it, what should i do ?&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 08:32:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328339#M1227915</guid>
      <dc:creator>former_member844813</dc:creator>
      <dc:date>2023-03-06T08:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: Display internal table on screen.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328340#M1227916</link>
      <description>&lt;P&gt; &lt;SPAN class="mention-scrubbed"&gt;demaauliansyah&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;While we're happy that you've come to SAP
Community to get an answer to your question, you posted your question as a comment in an old thread.&lt;/P&gt;&lt;P&gt;If you're looking for help, you should ask
a new question: &lt;A href="https://answers.sap.com/questions/ask.html"&gt;https://answers.sap.com/questions/ask.html&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Here are some tips to help you craft an
effective question for our community: &lt;A href="https://community.sap.com/resources/questions-and-answers"&gt;https://community.sap.com/resources/questions-and-answers&lt;/A&gt;,
&lt;A href="https://developers.sap.com/tutorials/community-qa.html"&gt;https://developers.sap.com/tutorials/community-qa.html&lt;/A&gt;, &lt;A href="https://groups.community.sap.com/t5/welcome-corner-discussions/advice-from-sap-champions-questions-and-answers/m-p/123609"&gt;https://groups.community.sap.com/t5/welcome-corner-discussions/advice-from-sap-champions-questions-and-answers/m-p/123609&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;I encourage you to follow this guidance,
as I'd really like to see you get a solution to your problem.&lt;/P&gt;&lt;P&gt;I hope you find this advice useful!&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 08:35:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-internal-table-on-screen/m-p/5328340#M1227916</guid>
      <dc:creator>moshenaveh</dc:creator>
      <dc:date>2023-03-06T08:35:46Z</dc:date>
    </item>
  </channel>
</rss>

