<?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 control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319706#M509088</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;table control we will use for displaying a data in the the form of a table.table control is very easy to configure.this we will use in dialogue programming.&lt;/P&gt;&lt;P&gt;see the system defined programs &amp;lt;b&amp;gt;demo_dynpro_tabcont_loop&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;demo_dynpro_tabcont_loop_at&amp;lt;/b&amp;gt; for more help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 28 May 2007 10:22:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-28T10:22:44Z</dc:date>
    <item>
      <title>table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319701#M509083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you mean by table control???Where will we use this???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 10:15:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319701#M509083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T10:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319702#M509084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Refer to this related thread&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3502765"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 10:18:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319702#M509084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T10:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319703#M509085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is used to display a table in the screen. Ex: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report  z_82235_tablecontrol                    .

types: begin of t_mara,
         matnr type matnr,
         meins type meins,
         matkl type matkl,
         col_sel(1) type c,
       end of t_mara.

data: it_mara type table of t_mara,
      wa_mara like line of it_mara.


select matnr meins matkl from mara
                         into table it_mara
                         up to 10 rows.

 call screen 100.

*&amp;amp;spwizard: declaration of tablecontrol 'TABLE_CONTROL' itself
controls: table_control type tableview using screen 0100.

*&amp;amp;spwizard: lines of tablecontrol 'TABLE_CONTROL'
data:     g_table_control_lines  like sy-loopc.

data:     ok_code like sy-ucomm.

*&amp;amp;spwizard: output module for tc 'TABLE_CONTROL'. do not change this lin
*&amp;amp;spwizard: update lines for equivalent scrollbar
module table_control_change_tc_attr output.
  describe table it_mara lines table_control-lines.
endmodule.

*&amp;amp;spwizard: output module for tc 'TABLE_CONTROL'. do not change this lin
*&amp;amp;spwizard: get lines of tablecontrol
module table_control_get_lines output.
  g_table_control_lines = sy-loopc.
endmodule.

*&amp;amp;spwizard: input module for tc 'TABLE_CONTROL'. do not change this line
*&amp;amp;spwizard: modify table
module table_control_modify input.
  modify it_mara
    from wa_mara
    index table_control-current_line.
endmodule.

*&amp;amp;spwizard: input modul for tc 'TABLE_CONTROL'. do not change this line!
*&amp;amp;spwizard: mark table
module table_control_mark input.
  data: g_table_control_wa2 like line of it_mara.
  if table_control-line_sel_mode = 1.
     loop at it_mara into g_table_control_wa2
       where col_sel = 'X'.
       g_table_control_wa2-col_sel = ''.
       modify it_mara
         from g_table_control_wa2
         transporting col_sel.
     endloop.
  endif.
  modify it_mara
    from wa_mara
    index table_control-current_line
    transporting col_sel.
endmodule.

*&amp;amp;spwizard: input module for tc 'TABLE_CONTROL'. do not change this line
*&amp;amp;spwizard: process user command
module table_control_user_command input.
  ok_code = sy-ucomm.
  perform user_ok_tc using    'TABLE_CONTROL'
                              'IT_MARA'
                              'COL_SEL'
                     changing ok_code.
  sy-ucomm = ok_code.
endmodule.

*----------------------------------------------------------------------*
*   INCLUDE TABLECONTROL_FORMS                                         *
*----------------------------------------------------------------------*

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  USER_OK_TC                                               *
*&amp;amp;---------------------------------------------------------------------*
 form user_ok_tc using    p_tc_name type dynfnam
                          p_table_name
                          p_mark_name
                 changing p_ok      like sy-ucomm.

*&amp;amp;SPWIZARD: BEGIN OF LOCAL DATA----------------------------------------*
   data: l_ok              type sy-ucomm,
         l_offset          type i.
*&amp;amp;SPWIZARD: END OF LOCAL DATA------------------------------------------*

*&amp;amp;SPWIZARD: Table control specific operations                          *
*&amp;amp;SPWIZARD: evaluate TC name and operations                            *
   search p_ok for p_tc_name.
   if sy-subrc &amp;lt;&amp;gt; 0.
     exit.
   endif.
   l_offset = strlen( p_tc_name ) + 1.
   l_ok = p_ok+l_offset.
*&amp;amp;SPWIZARD: execute general and TC specific operations                 *
   case l_ok.
     when 'INSR'.                      "insert row
       perform fcode_insert_row using    p_tc_name
                                         p_table_name.
       clear p_ok.

     when 'DELE'.                      "delete row
       perform fcode_delete_row using    p_tc_name
                                         p_table_name
                                         p_mark_name.
       clear p_ok.

     when 'P--' or                     "top of list
          'P-'  or                     "previous page
          'P+'  or                     "next page
          'P++'.                       "bottom of list
       perform compute_scrolling_in_tc using p_tc_name
                                             l_ok.
       clear p_ok.
*     WHEN 'L--'.                       "total left
*       PERFORM FCODE_TOTAL_LEFT USING P_TC_NAME.
*
*     WHEN 'L-'.                        "column left
*       PERFORM FCODE_COLUMN_LEFT USING P_TC_NAME.
*
*     WHEN 'R+'.                        "column right
*       PERFORM FCODE_COLUMN_RIGHT USING P_TC_NAME.
*
*     WHEN 'R++'.                       "total right
*       PERFORM FCODE_TOTAL_RIGHT USING P_TC_NAME.
*
     when 'MARK'.                      "mark all filled lines
       perform fcode_tc_mark_lines using p_tc_name
                                         p_table_name
                                         p_mark_name   .
       clear p_ok.

     when 'DMRK'.                      "demark all filled lines
       perform fcode_tc_demark_lines using p_tc_name
                                           p_table_name
                                           p_mark_name .
       clear p_ok.

*     WHEN 'SASCEND'   OR
*          'SDESCEND'.                  "sort column
*       PERFORM FCODE_SORT_TC USING P_TC_NAME
*                                   l_ok.

   endcase.

 endform.                              " USER_OK_TC

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  FCODE_INSERT_ROW                                         *
*&amp;amp;---------------------------------------------------------------------*
 form fcode_insert_row
               using    p_tc_name           type dynfnam
                        p_table_name             .

*&amp;amp;SPWIZARD: BEGIN OF LOCAL DATA----------------------------------------*
   data l_lines_name       like feld-name.
   data l_selline          like sy-stepl.
   data l_lastline         type i.
   data l_line             type i.
   data l_table_name       like feld-name.
   field-symbols &amp;lt;tc&amp;gt;                 type cxtab_control.
   field-symbols &amp;lt;table&amp;gt;              type standard table.
   field-symbols &amp;lt;lines&amp;gt;              type i.
*&amp;amp;SPWIZARD: END OF LOCAL DATA------------------------------------------*

   assign (p_tc_name) to &amp;lt;tc&amp;gt;.

*&amp;amp;SPWIZARD: get the table, which belongs to the tc                     *
   concatenate p_table_name '[]' into l_table_name. "table body
   assign (l_table_name) to &amp;lt;table&amp;gt;.                "not headerline

*&amp;amp;SPWIZARD: get looplines of TableControl                              *
   concatenate 'G_' p_tc_name '_LINES' into l_lines_name.
   assign (l_lines_name) to &amp;lt;lines&amp;gt;.

*&amp;amp;SPWIZARD: get current line                                           *
   get cursor line l_selline.
   if sy-subrc &amp;lt;&amp;gt; 0.                   " append line to table
     l_selline = &amp;lt;tc&amp;gt;-lines + 1.
*&amp;amp;SPWIZARD: set top line                                               *
     if l_selline &amp;gt; &amp;lt;lines&amp;gt;.
       &amp;lt;tc&amp;gt;-top_line = l_selline - &amp;lt;lines&amp;gt; + 1 .
     else.
       &amp;lt;tc&amp;gt;-top_line = 1.
     endif.
   else.                               " insert line into table
     l_selline = &amp;lt;tc&amp;gt;-top_line + l_selline - 1.
     l_lastline = &amp;lt;tc&amp;gt;-top_line + &amp;lt;lines&amp;gt; - 1.
   endif.
*&amp;amp;SPWIZARD: set new cursor line                                        *
   l_line = l_selline - &amp;lt;tc&amp;gt;-top_line + 1.

*&amp;amp;SPWIZARD: insert initial line                                        *
   insert initial line into &amp;lt;table&amp;gt; index l_selline.
   &amp;lt;tc&amp;gt;-lines = &amp;lt;tc&amp;gt;-lines + 1.
*&amp;amp;SPWIZARD: set cursor                                                 *
   set cursor line l_line.

 endform.                              " FCODE_INSERT_ROW

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  FCODE_DELETE_ROW                                         *
*&amp;amp;---------------------------------------------------------------------*
 form fcode_delete_row
               using    p_tc_name           type dynfnam
                        p_table_name
                        p_mark_name   .

*&amp;amp;SPWIZARD: BEGIN OF LOCAL DATA----------------------------------------*
   data l_table_name       like feld-name.

   field-symbols &amp;lt;tc&amp;gt;         type cxtab_control.
   field-symbols &amp;lt;table&amp;gt;      type standard table.
   field-symbols &amp;lt;wa&amp;gt;.
   field-symbols &amp;lt;mark_field&amp;gt;.
*&amp;amp;SPWIZARD: END OF LOCAL DATA------------------------------------------*

   assign (p_tc_name) to &amp;lt;tc&amp;gt;.

*&amp;amp;SPWIZARD: get the table, which belongs to the tc                     *
   concatenate p_table_name '[]' into l_table_name. "table body
   assign (l_table_name) to &amp;lt;table&amp;gt;.                "not headerline

*&amp;amp;SPWIZARD: delete marked lines                                        *
   describe table &amp;lt;table&amp;gt; lines &amp;lt;tc&amp;gt;-lines.

   loop at &amp;lt;table&amp;gt; assigning &amp;lt;wa&amp;gt;.

*&amp;amp;SPWIZARD: access to the component 'FLAG' of the table header         *
     assign component p_mark_name of structure &amp;lt;wa&amp;gt; to &amp;lt;mark_field&amp;gt;.

     if &amp;lt;mark_field&amp;gt; = 'X'.
       delete &amp;lt;table&amp;gt; index syst-tabix.
       if sy-subrc = 0.
         &amp;lt;tc&amp;gt;-lines = &amp;lt;tc&amp;gt;-lines - 1.
       endif.
     endif.
   endloop.

 endform.                              " FCODE_DELETE_ROW

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  COMPUTE_SCROLLING_IN_TC
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;P_TC_NAME  name of tablecontrol
*      --&amp;gt;P_OK       ok code
*----------------------------------------------------------------------*
 form compute_scrolling_in_tc using    p_tc_name
                                       p_ok.
*&amp;amp;SPWIZARD: BEGIN OF LOCAL DATA----------------------------------------*
   data l_tc_new_top_line     type i.
   data l_tc_name             like feld-name.
   data l_tc_lines_name       like feld-name.
   data l_tc_field_name       like feld-name.

   field-symbols &amp;lt;tc&amp;gt;         type cxtab_control.
   field-symbols &amp;lt;lines&amp;gt;      type i.
*&amp;amp;SPWIZARD: END OF LOCAL DATA------------------------------------------*

   assign (p_tc_name) to &amp;lt;tc&amp;gt;.
*&amp;amp;SPWIZARD: get looplines of TableControl                              *
   concatenate 'G_' p_tc_name '_LINES' into l_tc_lines_name.
   assign (l_tc_lines_name) to &amp;lt;lines&amp;gt;.


*&amp;amp;SPWIZARD: is no line filled?                                         *
   if &amp;lt;tc&amp;gt;-lines = 0.
*&amp;amp;SPWIZARD: yes, ...                                                   *
     l_tc_new_top_line = 1.
   else.
*&amp;amp;SPWIZARD: no, ...                                                    *
     call function 'SCROLLING_IN_TABLE'
          exporting
               entry_act             = &amp;lt;tc&amp;gt;-top_line
               entry_from            = 1
               entry_to              = &amp;lt;tc&amp;gt;-lines
               last_page_full        = 'X'
               loops                 = &amp;lt;lines&amp;gt;
               ok_code               = p_ok
               overlapping           = 'X'
          importing
               entry_new             = l_tc_new_top_line
          exceptions
*              NO_ENTRY_OR_PAGE_ACT  = 01
*              NO_ENTRY_TO           = 02
*              NO_OK_CODE_OR_PAGE_GO = 03
               others                = 0.
   endif.

*&amp;amp;SPWIZARD: get actual tc and column                                   *
   get cursor field l_tc_field_name
              area  l_tc_name.

   if syst-subrc = 0.
     if l_tc_name = p_tc_name.
*&amp;amp;SPWIZARD: et actual column                                           *
       set cursor field l_tc_field_name line 1.
     endif.
   endif.

*&amp;amp;SPWIZARD: set the new top line                                       *
   &amp;lt;tc&amp;gt;-top_line = l_tc_new_top_line.


 endform.                              " COMPUTE_SCROLLING_IN_TC

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  FCODE_TC_MARK_LINES
*&amp;amp;---------------------------------------------------------------------*
*       marks all TableControl lines
*----------------------------------------------------------------------*
*      --&amp;gt;P_TC_NAME  name of tablecontrol
*----------------------------------------------------------------------*
form fcode_tc_mark_lines using p_tc_name
                               p_table_name
                               p_mark_name.
*&amp;amp;SPWIZARD: EGIN OF LOCAL DATA-----------------------------------------*
  data l_table_name       like feld-name.

  field-symbols &amp;lt;tc&amp;gt;         type cxtab_control.
  field-symbols &amp;lt;table&amp;gt;      type standard table.
  field-symbols &amp;lt;wa&amp;gt;.
  field-symbols &amp;lt;mark_field&amp;gt;.
*&amp;amp;SPWIZARD: END OF LOCAL DATA------------------------------------------*

  assign (p_tc_name) to &amp;lt;tc&amp;gt;.

*&amp;amp;SPWIZARD: get the table, which belongs to the tc                     *
   concatenate p_table_name '[]' into l_table_name. "table body
   assign (l_table_name) to &amp;lt;table&amp;gt;.                "not headerline

*&amp;amp;SPWIZARD: mark all filled lines                                      *
  loop at &amp;lt;table&amp;gt; assigning &amp;lt;wa&amp;gt;.

*&amp;amp;SPWIZARD: access to the component 'FLAG' of the table header         *
     assign component p_mark_name of structure &amp;lt;wa&amp;gt; to &amp;lt;mark_field&amp;gt;.

     &amp;lt;mark_field&amp;gt; = 'X'.
  endloop.
endform.                                          "fcode_tc_mark_lines

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  FCODE_TC_DEMARK_LINES
*&amp;amp;---------------------------------------------------------------------*
*       demarks all TableControl lines
*----------------------------------------------------------------------*
*      --&amp;gt;P_TC_NAME  name of tablecontrol
*----------------------------------------------------------------------*
form fcode_tc_demark_lines using p_tc_name
                                 p_table_name
                                 p_mark_name .
*&amp;amp;SPWIZARD: BEGIN OF LOCAL DATA----------------------------------------*
  data l_table_name       like feld-name.

  field-symbols &amp;lt;tc&amp;gt;         type cxtab_control.
  field-symbols &amp;lt;table&amp;gt;      type standard table.
  field-symbols &amp;lt;wa&amp;gt;.
  field-symbols &amp;lt;mark_field&amp;gt;.
*&amp;amp;SPWIZARD: END OF LOCAL DATA------------------------------------------*

  assign (p_tc_name) to &amp;lt;tc&amp;gt;.

*&amp;amp;SPWIZARD: get the table, which belongs to the tc                     *
   concatenate p_table_name '[]' into l_table_name. "table body
   assign (l_table_name) to &amp;lt;table&amp;gt;.                "not headerline

*&amp;amp;SPWIZARD: demark all filled lines                                    *
  loop at &amp;lt;table&amp;gt; assigning &amp;lt;wa&amp;gt;.

*&amp;amp;SPWIZARD: access to the component 'FLAG' of the table header         *
     assign component p_mark_name of structure &amp;lt;wa&amp;gt; to &amp;lt;mark_field&amp;gt;.

     &amp;lt;mark_field&amp;gt; = space.
  endloop.
endform.                                          "fcode_tc_mark_lines
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Module  USER_COMMAND_0100  INPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module user_command_0100 input.

case sy-ucomm.

when 'EXIT'.
 leave program.

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;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;P&gt;SCreen 100&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;process before output.
*&amp;amp;spwizard: pbo flow logic for tablecontrol 'TABLE_CONTROL'
  module table_control_change_tc_attr.
*&amp;amp;spwizard: module TABLE_CONTROL_change_col_attr.
  loop at   it_mara
       into wa_mara
       with control table_control
       cursor table_control-current_line.
    module table_control_get_lines.
*&amp;amp;spwizard:   module TABLE_CONTROL_change_field_attr
  endloop.

* MODULE STATUS_0100.
*
process after input.
*&amp;amp;spwizard: pai flow logic for tablecontrol 'TABLE_CONTROL'
  loop at it_mara.
    chain.
      field wa_mara-matnr.
      field wa_mara-meins.
      field wa_mara-matkl.
      module table_control_modify on chain-request.
    endchain.
    field wa_mara-col_sel
      module table_control_mark on request.
  endloop.
  module table_control_user_command.
*&amp;amp;spwizard: module TABLE_CONTROL_change_tc_attr.
*&amp;amp;spwizard: module TABLE_CONTROL_change_col_attr.

 module user_command_0100.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 10:18:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319703#M509085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T10:18:56Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319704#M509086</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; It is a concept of module pool program. Using this you can display data in rows and columns wise. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Haritha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 10:19:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319704#M509086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T10:19:13Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319705#M509087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Table Control is used in Module Pool Programming. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table Control is used to display data of any internal table of ur program or the data from dictionary table directly ino a table format. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Using table control with the help of screen painter, data can be easily displayed. &lt;/P&gt;&lt;P&gt;It can be created manually through coding or using Table Control Wizard given in the sreen painter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Harsha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 10:21:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319705#M509087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T10:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319706#M509088</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;table control we will use for displaying a data in the the form of a table.table control is very easy to configure.this we will use in dialogue programming.&lt;/P&gt;&lt;P&gt;see the system defined programs &amp;lt;b&amp;gt;demo_dynpro_tabcont_loop&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;demo_dynpro_tabcont_loop_at&amp;lt;/b&amp;gt; for more help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 10:22:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319706#M509088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T10:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319707#M509089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi nag,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Control Tables are used to Store your data's from your screen or program. you can also Retrieve the data's From your tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The control table is the one which specifies how your data changes in the table and how you want your table to be maintained.:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The following are the delivery classes:&lt;/P&gt;&lt;P&gt;A: Application table.&lt;/P&gt;&lt;P&gt;C: Customizing table, maintenance by customer only.&lt;/P&gt;&lt;P&gt;L: Table for storing temporary data.&lt;/P&gt;&lt;P&gt;G: Customizing table, entries protected against overwriting.&lt;/P&gt;&lt;P&gt;E: Control table.&lt;/P&gt;&lt;P&gt;S: System table, maintenance only by SAP.&lt;/P&gt;&lt;P&gt;W: System table, contents can be transported via own TR objects.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The Control Tables specify that it is the table where data is not changed frequently and pertains to information for the flow of the system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;suresh babu aluri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 10:24:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319707#M509089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T10:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319708#M509090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/9f/dbac1d35c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 28 May 2007 11:23:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2319708#M509090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-28T11:23:56Z</dc:date>
    </item>
  </channel>
</rss>

