<?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 Table control dont save the input in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dont-save-the-input/m-p/4017717#M959986</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using a table control for write and set buttons. The Problem is that the settings are not available when I want to show it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What must I do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Jun 2008 09:40:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-24T09:40:46Z</dc:date>
    <item>
      <title>Table control dont save the input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dont-save-the-input/m-p/4017717#M959986</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using a table control for write and set buttons. The Problem is that the settings are not available when I want to show it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What must I do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Michael&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 09:40:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dont-save-the-input/m-p/4017717#M959986</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T09:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Table control dont save the input</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dont-save-the-input/m-p/4017718#M959987</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Mike,&lt;/P&gt;&lt;P&gt;I'm not completely sure what your issue is, but possibly this will help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Setting Attributes is done in the PBO routine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 module TABCTL_ZLMACT_change_tc_attr.      "&amp;lt;== Change table control screen attributes
 module TABCTL_ZLMACT_change_col_attr.      "&amp;lt;== Change table columns screen attributes
  loop at   WT_ZLMACT
       into WK_ZLMACT
       with control TABCTL_ZLMACT
       cursor TABCTL_ZLMACT-current_line.
      module TABCTL_ZLMACT_change_field_attr       "&amp;lt;== Change table field screen attributes
  endloop.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now.. in the PAI routine&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  loop at WT_ZLMACT.&lt;/P&gt;&lt;P&gt;    chain.&lt;/P&gt;&lt;P&gt;      field WK_ZLMACT-SEQNO.&lt;/P&gt;&lt;P&gt;      field WK_ZLMACT-CONT_TY.&lt;/P&gt;&lt;P&gt;      field WK_ZLMACT-CONT_DT.&lt;/P&gt;&lt;P&gt;      field WK_ZLMACT-CONT_TM.&lt;/P&gt;&lt;P&gt;      field WK_ZLMACT-CONTRE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     field WK_ZLMACT-FOLLDT.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      field WK_ZLMACT-COMP_DT.&lt;/P&gt;&lt;P&gt;      field WK_ZLMACT-COMP_TM.&lt;/P&gt;&lt;P&gt;      field WK_ZLMACT-COMP_NM.&lt;/P&gt;&lt;P&gt;      field WK_ZLMACT-AEDAT.&lt;/P&gt;&lt;P&gt;      field WK_ZLMACT-AETIM.&lt;/P&gt;&lt;P&gt;      field WK_ZLMACT-AENAM.&lt;/P&gt;&lt;P&gt;      field WK_ZLMACT-ERDAT.&lt;/P&gt;&lt;P&gt;      field WK_ZLMACT-ERTIM.&lt;/P&gt;&lt;P&gt;      field WK_ZLMACT-ERNAM.&lt;/P&gt;&lt;P&gt;      field WK_ZLMACT-DISP_NOTE.&lt;/P&gt;&lt;P&gt;    endchain.&lt;/P&gt;&lt;P&gt;    field WK_ZLMACT-SEL&lt;/P&gt;&lt;P&gt;      module TABCTL_ZLMACT_mark on request.&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;at this point all the data is in my internal table WT_ZLMACT as it is on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From here it would be up to you to edit, move and save this data as you need.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Jun 2008 11:44:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-dont-save-the-input/m-p/4017718#M959987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-24T11:44:23Z</dc:date>
    </item>
  </channel>
</rss>

