<?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: modifications on table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626852#M280011</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;CHAIN/ENDCHAIN is a statament only for flow logic of the dynpro:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS PAI.&lt;/P&gt;&lt;P&gt;loop at IT_CONF.&lt;/P&gt;&lt;P&gt;*( This is internal table related to table control)&lt;/P&gt;&lt;P&gt; chain. &lt;/P&gt;&lt;P&gt;   field X_CONF-EBTYP.( But I did't get this one) &lt;/P&gt;&lt;P&gt;   field X_CONF-EINDT.&lt;/P&gt;&lt;P&gt;   field X_CONF-LPEIN. &lt;/P&gt;&lt;P&gt;   field X_CONF-UZEIT. &lt;/P&gt;&lt;P&gt;   field X_CONF-ERDAT.&lt;/P&gt;&lt;P&gt;   field X_CONF-MENGE. &lt;/P&gt;&lt;P&gt;   field X_CONF-XBLNR.&lt;/P&gt;&lt;P&gt; endchain.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; MODULE MODIFY_IT_CONF.&lt;/P&gt;&lt;P&gt;ENDLOOP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE MODIFY_IT_CONF.&lt;/P&gt;&lt;P&gt;IT_CONF-EBTYP = X_CONF-EBTYP. &lt;/P&gt;&lt;P&gt;IT_CONF-EINDT = X_CONF-EINDT.&lt;/P&gt;&lt;P&gt;IT_CONF-LPEIN = X_CONF-LPEIN. &lt;/P&gt;&lt;P&gt;IT_CONF-UZEIT = X_CONF-UZEIT. &lt;/P&gt;&lt;P&gt;IT_CONF-ERDAT = X_CONF-ERDAT.&lt;/P&gt;&lt;P&gt;IT_CONF-MENGE = X_CONF-MENGE. &lt;/P&gt;&lt;P&gt;IT_CONF-XBLNR = X_CONF-XBLNR.&lt;/P&gt;&lt;P&gt;MODIFY IT_CONF INDEX &amp;lt;TABLE CONTROL&amp;gt;-CURRENT_LINE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Sep 2006 11:48:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-09-12T11:48:25Z</dc:date>
    <item>
      <title>modifications on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626846#M280005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please any one help me onthis topic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In table control i have a column t_item-Serial Number(t_item is internal table ).&lt;/P&gt;&lt;P&gt;I need to chage or modify the Serial Numbers by overtyping the existing Serial Number.when i press enter the modified serial number has to be updated in the data base table and in the table conrol .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I already posted this topic in SDN forum and i received 4 Replies but i did't understand that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one  send me the coding with explanation.&lt;/P&gt;&lt;P&gt;Thanaks in Advance.&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards.&lt;/P&gt;&lt;P&gt;Ramu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Sep 2006 10:12:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626846#M280005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-12T10:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: modifications on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626847#M280006</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;Put a loop endloop statement in your PAI, and add a module for modification in table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"IN PAI FLOW LOGIC"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; loop at itab.
    chain.
      field  itab-bpsg.
      field  itab-bpsc.
      field  itab-bpsd.
      field  itab-total.
      field  itab-filled.
      field  itab-vacant.
      field  itab-s.

      module zbpsgtable_modify on chain-request.
    endchain.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"IN MODULE POOL PROGRAM"&lt;/P&gt;&lt;P&gt;module zbpsgtable_modify input.&lt;/P&gt;&lt;P&gt;  modify itab&lt;/P&gt;&lt;P&gt;    index ztablecontrol-current_line.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for modification in database table. use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY database_table FROM table itab.&lt;/P&gt;&lt;P&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 Sep 2006 10:20:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626847#M280006</guid>
      <dc:creator>dani_mn</dc:creator>
      <dc:date>2006-09-12T10:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: modifications on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626848#M280007</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;In the LOOP/ENDLOOP of PAI process you should insert a module to update your internal table, in this way you can store the modification:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS PAI&lt;/P&gt;&lt;P&gt; LOOP...&lt;/P&gt;&lt;P&gt;  MODULE MODIFY_T_ITEM.&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE MODIFY_T_ITEM.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;You need this code only if the output fields have &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;different name from fields of T_ITEM&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  T_ITEM-SERIAL_NUMBER = &amp;lt;OUTPUT FIELD&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This code is always necessary&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  MODIFY T_ITEM INDEX &amp;lt;TABLE CONTROL&amp;gt;-CURRENT_LINE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In user-coomad you have to insert the code to update the database.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND.&lt;/P&gt;&lt;P&gt;  CASE OK_CODE.&lt;/P&gt;&lt;P&gt;    WHEN '...'.&lt;/P&gt;&lt;P&gt;      UPDATE &amp;lt;TABLE&amp;gt; FROM TABLE T_ITEM.&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;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Sep 2006 10:22:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626848#M280007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-12T10:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: modifications on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626849#M280008</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;kindly chk this sample code. will hlp u alot.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;MODULE status_9010.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP WITH CONTROL tab_control.&lt;/P&gt;&lt;P&gt;MODULE move_data_to_table.&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;&lt;/P&gt;&lt;P&gt;LOOP WITH CONTROL tab_control.&lt;/P&gt;&lt;P&gt;MODULE move_data_from_table.&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;****************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Module move_data_to_table OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This is to move the data from the internal table to the table control&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE move_data_to_table OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;This is to move the data from the internal table to the table control&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;zmpets_mode-modecode,zmpets_range-&lt;/STRONG&gt;rangeid,zmpets_servfacto-factor are column name of table control&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE int_factor INDEX tab_control-current_line.&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;zmpets_mode-modecode = int_factor-modecode.&lt;/P&gt;&lt;P&gt;zmpets_range-rangeid = int_factor-rangeid.&lt;/P&gt;&lt;P&gt;zmpets_servfacto-factor = int_factor-factor.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE. " move_data_to_table OUTPUT&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;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Module move_data_from_table INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Date is moved from the table control to the Internal Table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE move_data_from_table INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;To move the data from the table control to internal table 'INT_FACTOR'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;int_factor-modecode = zmpets_mode-modecode.&lt;/P&gt;&lt;P&gt;int_factor-rangeid = zmpets_range-rangeid.&lt;/P&gt;&lt;P&gt;int_factor-factor = zmpets_servfacto-factor.&lt;/P&gt;&lt;P&gt;*here if the data is there, it will modify&lt;/P&gt;&lt;P&gt;MODIFY int_factor INDEX tab_control-current_line.&lt;/P&gt;&lt;P&gt;IF sy-subrc NE 0. "data not exixting in table control . ie new data, then append it&lt;/P&gt;&lt;P&gt;APPEND int_factor.&lt;/P&gt;&lt;P&gt;CLEAR int_factor.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE. " move_data_from_table INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for any clarifiaction pls mail me.&lt;/P&gt;&lt;P&gt;pls reward points, if this helped u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anversha.&lt;/P&gt;&lt;P&gt;anversha.shahul@wipro.com&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Sep 2006 10:29:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626849#M280008</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-09-12T10:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: modifications on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626850#M280009</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;Its very simple. &lt;/P&gt;&lt;P&gt;suppose your have screen 100 with table control&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
in pai
  loop at IT_CONF.
    chain.
      field X_CONF-EBTYP.
      field X_CONF-EINDT.
      field X_CONF-LPEIN.
      field X_CONF-UZEIT.
      field X_CONF-ERDAT.
      field X_CONF-MENGE.
      field X_CONF-XBLNR.
      module TC_CONF_modify on chain-request. "this will take the new value(say serial no) that you have update in the table control

    endchain.
  endloop.
 module user_command_100." this module captures sy-ucomm

in PBO. " the updated value in it_conf_new will get displayed in the tableControl
  loop at   IT_CONF_new
       into X_CONF
       with control TC_CONF
       cursor TC_CONF-current_line.
    module TC_CONF_get_lines.
   endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;****************************************************&lt;/P&gt;&lt;P&gt;in program&lt;/P&gt;&lt;P&gt;****************************************************&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; module TC_CONF_modify."this module will modify your internal table with the new value from the table control.
  it_conf_new[] = it_conf[]. 
    modify it_conf_new
      from x_conf
      index tc_conf-current_line.
endmodule.
module user_command_100.
 case sy-ucomm.
  when ' '. "on hitting enter the sy-ucomm value is space
"    update the database table with the new values using the table it_conf_new by calling some FM.
   exit.
 endcase.
endmodule.
module tc_conf_get_lines output.
  g_tc_conf_lines = sy-loopc.
endmodule.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Richa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Sep 2006 10:51:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626850#M280009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-12T10:51:49Z</dc:date>
    </item>
    <item>
      <title>Re: modifications on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626851#M280010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richa,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need some clarifications.&lt;/P&gt;&lt;P&gt;Where I need to write the chain and endchain in flow logic or ABAP EDITOR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at IT_CONF.( This is internal table related to table control)&lt;/P&gt;&lt;P&gt;    chain.   &lt;/P&gt;&lt;P&gt;   field X_CONF-EBTYP.( But I did't get this one)  &lt;/P&gt;&lt;P&gt;    field X_CONF-EINDT.&lt;/P&gt;&lt;P&gt;      field X_CONF-LPEIN. &lt;/P&gt;&lt;P&gt;     field X_CONF-UZEIT. &lt;/P&gt;&lt;P&gt;     field X_CONF-ERDAT.&lt;/P&gt;&lt;P&gt;      field X_CONF-MENGE. &lt;/P&gt;&lt;P&gt;     field X_CONF-XBLNR.&lt;/P&gt;&lt;P&gt;endchain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u Please Elaborate this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&amp;amp;Regards.&lt;/P&gt;&lt;P&gt;Ramu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Sep 2006 11:33:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626851#M280010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-12T11:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: modifications on table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626852#M280011</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;CHAIN/ENDCHAIN is a statament only for flow logic of the dynpro:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS PAI.&lt;/P&gt;&lt;P&gt;loop at IT_CONF.&lt;/P&gt;&lt;P&gt;*( This is internal table related to table control)&lt;/P&gt;&lt;P&gt; chain. &lt;/P&gt;&lt;P&gt;   field X_CONF-EBTYP.( But I did't get this one) &lt;/P&gt;&lt;P&gt;   field X_CONF-EINDT.&lt;/P&gt;&lt;P&gt;   field X_CONF-LPEIN. &lt;/P&gt;&lt;P&gt;   field X_CONF-UZEIT. &lt;/P&gt;&lt;P&gt;   field X_CONF-ERDAT.&lt;/P&gt;&lt;P&gt;   field X_CONF-MENGE. &lt;/P&gt;&lt;P&gt;   field X_CONF-XBLNR.&lt;/P&gt;&lt;P&gt; endchain.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; MODULE MODIFY_IT_CONF.&lt;/P&gt;&lt;P&gt;ENDLOOP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE MODIFY_IT_CONF.&lt;/P&gt;&lt;P&gt;IT_CONF-EBTYP = X_CONF-EBTYP. &lt;/P&gt;&lt;P&gt;IT_CONF-EINDT = X_CONF-EINDT.&lt;/P&gt;&lt;P&gt;IT_CONF-LPEIN = X_CONF-LPEIN. &lt;/P&gt;&lt;P&gt;IT_CONF-UZEIT = X_CONF-UZEIT. &lt;/P&gt;&lt;P&gt;IT_CONF-ERDAT = X_CONF-ERDAT.&lt;/P&gt;&lt;P&gt;IT_CONF-MENGE = X_CONF-MENGE. &lt;/P&gt;&lt;P&gt;IT_CONF-XBLNR = X_CONF-XBLNR.&lt;/P&gt;&lt;P&gt;MODIFY IT_CONF INDEX &amp;lt;TABLE CONTROL&amp;gt;-CURRENT_LINE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Sep 2006 11:48:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/modifications-on-table-control/m-p/1626852#M280011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-09-12T11:48:25Z</dc:date>
    </item>
  </channel>
</rss>

