<?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/2534495#M575065</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;Can i have ur part of coding plz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jul 2007 11:26:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-12T11:26:46Z</dc:date>
    <item>
      <title>TABLE CONTROL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2534494#M575064</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt; i have a Table Control with feild select with chk boxes when i select a rec it shd post the rec after posting the record the chk box should not appear in Table control for the feild which it has posted but it is appearing in my Table Control.&lt;/P&gt;&lt;P&gt;any suggestion&lt;/P&gt;&lt;P&gt;points for sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 11:09:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2534494#M575064</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T11:09:11Z</dc:date>
    </item>
    <item>
      <title>Re: TABLE CONTROL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2534495#M575065</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;Can i have ur part of coding plz&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 11:26:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2534495#M575065</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T11:26: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/2534496#M575066</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  Have one more flag in your structure of the table control and set that flag = 'X' when you successflly post that record.And then in pBO do like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;   MODULE tc2_change_tc_attr.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;  LOOP AT   it_marc INTO x_marc WITH CONTROL tc2 CURSOR tc2-current_line.&lt;/P&gt;&lt;P&gt;    MODULE tc2_get_lines.&lt;/P&gt;&lt;P&gt;   ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE tc2_get_lines OUTPUT.&lt;/P&gt;&lt;P&gt;  g_tc2_lines = sy-loopc.&lt;/P&gt;&lt;P&gt; IF x_marc-sel = 'X' and x_marc-fg_post = 'X'.  &lt;/P&gt;&lt;P&gt; *----&amp;gt;x_marc-fg_post -flag has to be set as 'X' when you post the document&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-name = 'X_MARC-SEL'.&lt;/P&gt;&lt;P&gt;        screen-active = 0.&lt;/P&gt;&lt;P&gt;        screen-output = 0.&lt;/P&gt;&lt;P&gt;        screen-input = 0.&lt;/P&gt;&lt;P&gt;        screen-invisible = 1.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                    "TC2_GET_LINES OUTPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:10:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2534496#M575066</guid>
      <dc:creator>former_member491305</dc:creator>
      <dc:date>2007-07-12T12:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: TABLE CONTROL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2534497#M575067</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;i couldnt get ur query properly...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok..for hiding the field..use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;screen-active = 0.(invisible..)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;jaideep&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*reward points if useful..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:42:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control/m-p/2534497#M575067</guid>
      <dc:creator>jaideeps</dc:creator>
      <dc:date>2007-07-12T12:42:25Z</dc:date>
    </item>
  </channel>
</rss>

