<?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 Contol in dialog programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-contol-in-dialog-programming/m-p/3440668#M826305</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;This is a sample project i had done previously. I have 3 tables - zuser_master3,    "TABLE WITH USERNAME AND PASSWORD DETAILS&lt;/P&gt;&lt;P&gt;         zcust_master3,    "TABLE WITH CUSTOMER DETAILS&lt;/P&gt;&lt;P&gt;         zacc_master3,     "TABLE WITH ACCOUNT DETAILS&lt;/P&gt;&lt;P&gt;         ztrans_master3.   "TABLE WITH TRANSACTION DETAILS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to display the records in a MPP program table controls. I must be able to add, modify and delete records. I have attached the part of coding for delete and modify below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wi_acca - internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use your own tables/fields and execute the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the screen flow logic,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;   MODULE status_0104.&lt;/P&gt;&lt;P&gt;   LOOP AT wi_acca CURSOR cursor2 WITH CONTROL table2.&lt;/P&gt;&lt;P&gt;   MODULE SETSCREENFIELDS2.&lt;/P&gt;&lt;P&gt;   ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;   MODULE user_command_0104.&lt;/P&gt;&lt;P&gt;   LOOP AT wi_acca.&lt;/P&gt;&lt;P&gt;     MODULE tabmodify2.&lt;/P&gt;&lt;P&gt;     MODULE tabdelete2.&lt;/P&gt;&lt;P&gt;     module disable2.&lt;/P&gt;&lt;P&gt;   ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;__Coding for modify:__&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODULE tabmodify2 INPUT.&lt;/P&gt;&lt;P&gt;  CASE sy-ucomm.&lt;/P&gt;&lt;P&gt;    WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;      GET CURSOR LINE line4.&lt;/P&gt;&lt;P&gt;      IF flag3 = 'X'.&lt;/P&gt;&lt;P&gt;        IF table2-current_line = line4.&lt;/P&gt;&lt;P&gt;               IF wi_acca-status = 'INACTIVE'.&lt;/P&gt;&lt;P&gt;              CLEAR wi_acca-balance.&lt;/P&gt;&lt;P&gt;            ELSE.&lt;/P&gt;&lt;P&gt;              MODIFY wi_acca INDEX table2-current_line.&lt;/P&gt;&lt;P&gt;              IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;                MODIFY zacc_master3 FROM TABLE wi_acca.&lt;/P&gt;&lt;P&gt;                   ENDIF.&lt;/P&gt;&lt;P&gt;            ENDIF.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;In the include:&lt;/U&gt;(Declaration)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : wi_custa TYPE zcust_master3 OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;       wi_acca TYPE zacc_master3 OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;       wi_transa TYPE ztrans_master3 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONTROLS table2 TYPE TABLEVIEW USING SCREEN 0104.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data :cursor2 TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Coding for delete:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE tabdelete2 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  GET CURSOR LINE line2.&lt;/P&gt;&lt;P&gt;  IF answer2 = '1'.&lt;/P&gt;&lt;P&gt;    IF flag4 = 'X'.&lt;/P&gt;&lt;P&gt;      IF table2-current_line = line2.&lt;/P&gt;&lt;P&gt;               MODIFY wi_acca INDEX table2-current_line.&lt;/P&gt;&lt;P&gt;            MODIFY zacc_master3 FROM TABLE wi_acca.&lt;/P&gt;&lt;P&gt;            set2 = 1.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;           ENDIF.&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;ENDMODULE.                 " tabdelete2  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saipriya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Feb 2008 04:31:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-12T04:31:45Z</dc:date>
    <item>
      <title>Table Contol in dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-contol-in-dialog-programming/m-p/3440666#M826303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created  one table control se51  from where I should be able to upload the data in Z table in se11 and additional functionality of modify, delete using push buttons could u please send me a sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Shashikant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 03:53:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-contol-in-dialog-programming/m-p/3440666#M826303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T03:53:43Z</dc:date>
    </item>
    <item>
      <title>Re: Table Contol in dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-contol-in-dialog-programming/m-p/3440667#M826304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shashikant Chandratre ,&lt;/P&gt;&lt;P&gt;For your requirement no need for modulepool.  You can do by using table maitenance generator.  The system generates code automatically.   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steps Involved in Table Maintenance generator:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Go to utilities-&amp;gt;Table Maintenance Generator.&lt;/P&gt;&lt;P&gt;2) Provide Authorization group and Function Group&lt;/P&gt;&lt;P&gt;3) Maintenance type one step or two step&lt;/P&gt;&lt;P&gt;4) Create it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After this go to utilities-&amp;gt;table contents-&amp;gt; create entries&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here u can enter new records or delete, modify the existing records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can this requirement by using se51 also, but u have to write the code. So its time consuming.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u have any doubts, drop a message.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward me if it useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: B Nagamalleswara Rao on Feb 12, 2008 5:30 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 04:29:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-contol-in-dialog-programming/m-p/3440667#M826304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T04:29:19Z</dc:date>
    </item>
    <item>
      <title>Re: Table Contol in dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-contol-in-dialog-programming/m-p/3440668#M826305</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;This is a sample project i had done previously. I have 3 tables - zuser_master3,    "TABLE WITH USERNAME AND PASSWORD DETAILS&lt;/P&gt;&lt;P&gt;         zcust_master3,    "TABLE WITH CUSTOMER DETAILS&lt;/P&gt;&lt;P&gt;         zacc_master3,     "TABLE WITH ACCOUNT DETAILS&lt;/P&gt;&lt;P&gt;         ztrans_master3.   "TABLE WITH TRANSACTION DETAILS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to display the records in a MPP program table controls. I must be able to add, modify and delete records. I have attached the part of coding for delete and modify below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wi_acca - internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please use your own tables/fields and execute the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the screen flow logic,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;   MODULE status_0104.&lt;/P&gt;&lt;P&gt;   LOOP AT wi_acca CURSOR cursor2 WITH CONTROL table2.&lt;/P&gt;&lt;P&gt;   MODULE SETSCREENFIELDS2.&lt;/P&gt;&lt;P&gt;   ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;   MODULE user_command_0104.&lt;/P&gt;&lt;P&gt;   LOOP AT wi_acca.&lt;/P&gt;&lt;P&gt;     MODULE tabmodify2.&lt;/P&gt;&lt;P&gt;     MODULE tabdelete2.&lt;/P&gt;&lt;P&gt;     module disable2.&lt;/P&gt;&lt;P&gt;   ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;__Coding for modify:__&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ODULE tabmodify2 INPUT.&lt;/P&gt;&lt;P&gt;  CASE sy-ucomm.&lt;/P&gt;&lt;P&gt;    WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;      GET CURSOR LINE line4.&lt;/P&gt;&lt;P&gt;      IF flag3 = 'X'.&lt;/P&gt;&lt;P&gt;        IF table2-current_line = line4.&lt;/P&gt;&lt;P&gt;               IF wi_acca-status = 'INACTIVE'.&lt;/P&gt;&lt;P&gt;              CLEAR wi_acca-balance.&lt;/P&gt;&lt;P&gt;            ELSE.&lt;/P&gt;&lt;P&gt;              MODIFY wi_acca INDEX table2-current_line.&lt;/P&gt;&lt;P&gt;              IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;                MODIFY zacc_master3 FROM TABLE wi_acca.&lt;/P&gt;&lt;P&gt;                   ENDIF.&lt;/P&gt;&lt;P&gt;            ENDIF.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;ENDMODULE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;In the include:&lt;/U&gt;(Declaration)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : wi_custa TYPE zcust_master3 OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;       wi_acca TYPE zacc_master3 OCCURS 0 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;       wi_transa TYPE ztrans_master3 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONTROLS table2 TYPE TABLEVIEW USING SCREEN 0104.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data :cursor2 TYPE i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;Coding for delete:&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE tabdelete2 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  GET CURSOR LINE line2.&lt;/P&gt;&lt;P&gt;  IF answer2 = '1'.&lt;/P&gt;&lt;P&gt;    IF flag4 = 'X'.&lt;/P&gt;&lt;P&gt;      IF table2-current_line = line2.&lt;/P&gt;&lt;P&gt;               MODIFY wi_acca INDEX table2-current_line.&lt;/P&gt;&lt;P&gt;            MODIFY zacc_master3 FROM TABLE wi_acca.&lt;/P&gt;&lt;P&gt;            set2 = 1.&lt;/P&gt;&lt;P&gt;          ENDIF.&lt;/P&gt;&lt;P&gt;           ENDIF.&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;ENDMODULE.                 " tabdelete2  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Saipriya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 04:31:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-contol-in-dialog-programming/m-p/3440668#M826305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T04:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: Table Contol in dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-contol-in-dialog-programming/m-p/3440669#M826306</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;&lt;/P&gt;&lt;P&gt;TABLE CONTROL&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; These are the screen elements used to display tabular data they can be called&lt;/P&gt;&lt;P&gt;as screen tables( like STEP LOOP).To use table control we have to create it on the screen using SCREEN PAINTER(SE51) and declare a control variable of TYPE TABLEVIEW using CONTROLS statement in the ABAP program. We have to use LOOP .. ENDLOOP statement in both PBO and PAI with or without AT int_table parameter. IF AT int_table parameter is not used than we have to place a MODULE call between the LOOP...ENDLOOP statement to fill the screen table rows from the ABAP program in PBO and program our own scrolling functions&lt;/P&gt;&lt;P&gt;using OK_CODE field.&lt;/P&gt;&lt;P&gt;Having a parallel loop(at screen table rows &amp;amp; int table rows) by using parameter &lt;/P&gt;&lt;P&gt;AT int_table makes the ABAP code simple.&lt;/P&gt;&lt;P&gt;A special structure of type CXTAB_CONTROL is used to set/get various&lt;/P&gt;&lt;P&gt;attributes of table control at runtime like CURRENT_LINE ,TOP_LINE.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;ABAP declaration&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CONTROLS: tab_con TYPE TABLEVIEW  USING SCREEN nnnn&lt;/P&gt;&lt;P&gt;  Here tab_con is the same name we used in screen for the table control.&lt;/P&gt;&lt;P&gt;This ABAP statement will declare a control variable that will be used to access&lt;/P&gt;&lt;P&gt;the table control ,  and set it's various attributes like number of fixed columns(tab_con-FIXED_COLS) ,total number of records it will display(tab_con-LINES).It is of type CXTAB_CONTROL and is a deep structure(structure containing structures).&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;REFRESH CONTROL  tab_con FROM SCREEN nnnn&lt;/P&gt;&lt;P&gt; This ABAP statement will initialize the table control on the screen nnnn to its initial values.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;PBO processing&lt;/P&gt;&lt;P&gt;In PBO we have to use the screen LOOP ...ENDLOOP statement , with or without&lt;/P&gt;&lt;P&gt;intenal table.&lt;/P&gt;&lt;P&gt;   LOOP WITH  CONTROL tab_con.&lt;/P&gt;&lt;P&gt;   MODULE fill_tab_con.&lt;/P&gt;&lt;P&gt;   ENDLOOP.&lt;/P&gt;&lt;P&gt;Here a module should be called between the loop endloop statement to transfer&lt;/P&gt;&lt;P&gt;data from th ABAP program to the screen table through a structure.This module&lt;/P&gt;&lt;P&gt;should use the CURRENT_LINE attribute of the table control variable to get the&lt;/P&gt;&lt;P&gt;current screen table record index to read the data from the internal table into a work area.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;READ TABLE int_table INDEX tab_con-CURRENT_LINE&lt;/P&gt;&lt;P&gt;The record read will be placed in the header line of the internal table and will be available to the similarly named  screen fields or if these are different it can be written explicitly. e.g.&lt;/P&gt;&lt;P&gt;screen_field_name = int_table-field_name&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;   LOOP AT int_table INTO workarea WITH CONTROL tab_con CURSOR i FROM  &lt;/P&gt;&lt;P&gt;   n1 TO n2.&lt;/P&gt;&lt;P&gt;   ENDLOOP.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Here the module call is not required to fill the screen table.The CURSOR parameter is a integer of type I indicating which absolute internal table line&lt;/P&gt;&lt;P&gt;should be the first to display on the table control .FROM n1 TO n2 can be used&lt;/P&gt;&lt;P&gt;to restrict the starting line and ending line number of the internal table , they are of type SY-TABIX.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;In both cases before the LOOP statement a module should be called which&lt;/P&gt;&lt;P&gt;is generally for setting of status ,in which we should fill the LINES attribute&lt;/P&gt;&lt;P&gt;(tab_con-LINES ) of the control with the total number of internal table records,doing this ensures correct and automatic scrolling.&lt;/P&gt;&lt;P&gt;The ABAP statement DESCRIBE TABLE int_table LINES lines can be used&lt;/P&gt;&lt;P&gt;to get the total lines in an int table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PAI Processing&lt;/P&gt;&lt;P&gt; We have to use LOOP ... ENDLOOP in PAI so that data can transfer fro table control to ABAP program. If we want to write changes to the data we should&lt;/P&gt;&lt;P&gt;call a module between the LOOP ... ENDLOOP. The MODULE call to process user commands (SY-UCOM) should be called after the ENDLOOP statement.&lt;/P&gt;&lt;P&gt;e.g.&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT&lt;/P&gt;&lt;P&gt;MODULE mod AT EXIT-COMMAND.&lt;/P&gt;&lt;P&gt;LOOP AT itab_table   or LOOP "depending on whether we are using AT int_table&lt;/P&gt;&lt;P&gt;MODULE modify_int_table.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;MODULE user_command.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;In the MODULE call modify_int_table we can use&lt;/P&gt;&lt;P&gt;MODIFY int_table FROM workarea INDEX tab_con-CURRENT_LINE&lt;/P&gt;&lt;P&gt;or we can use&lt;/P&gt;&lt;P&gt;int_table-field_name = screen_field_name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Module modify_int_table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------" /&gt;&lt;P&gt;Module User_command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Case Sy-ucomm.&lt;/P&gt;&lt;P&gt;When ' DELETE'.&lt;/P&gt;&lt;P&gt;   -&lt;/P&gt;&lt;HR originaltext="------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When 'UPDATE'.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----------------------------------" /&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please go through this links...this will help u alot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="730084"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="398222"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Feb 2008 04:54:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-contol-in-dialog-programming/m-p/3440669#M826306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-12T04:54:45Z</dc:date>
    </item>
  </channel>
</rss>

