<?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 Dynamic table control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-control/m-p/315044#M4527</link>
    <description>&lt;P&gt;&lt;A href="https://answers.sap.com/storage/attachments/20827-fist-time-column.png" target="_blank"&gt;fist-time-column.png&lt;/A&gt;&lt;A href="https://answers.sap.com/storage/attachments/20828-added-dynamicaly-with-pbm.png" target="_blank"&gt;added-dynamicaly-with-pbm.png&lt;/A&gt;i&lt;/P&gt;&lt;P&gt;i created a table control with 10 columns then i daynamically hide 4 columns after that i need to be change with 9 columns but newly added columns are showing like password field . i need it be normal field.&lt;/P&gt;&lt;P&gt;please help...&lt;/P&gt;</description>
    <pubDate>Sun, 21 Jan 2024 21:40:03 GMT</pubDate>
    <dc:creator>former_member354305</dc:creator>
    <dc:date>2024-01-21T21:40:03Z</dc:date>
    <item>
      <title>Dynamic table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-control/m-p/315044#M4527</link>
      <description>&lt;P&gt;&lt;A href="https://answers.sap.com/storage/attachments/20827-fist-time-column.png" target="_blank"&gt;fist-time-column.png&lt;/A&gt;&lt;A href="https://answers.sap.com/storage/attachments/20828-added-dynamicaly-with-pbm.png" target="_blank"&gt;added-dynamicaly-with-pbm.png&lt;/A&gt;i&lt;/P&gt;&lt;P&gt;i created a table control with 10 columns then i daynamically hide 4 columns after that i need to be change with 9 columns but newly added columns are showing like password field . i need it be normal field.&lt;/P&gt;&lt;P&gt;please help...&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jan 2024 21:40:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-control/m-p/315044#M4527</guid>
      <dc:creator>former_member354305</dc:creator>
      <dc:date>2024-01-21T21:40:03Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-control/m-p/315045#M4528</link>
      <description>&lt;P&gt;i got the solutions&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2017 09:23:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-control/m-p/315045#M4528</guid>
      <dc:creator>former_member354305</dc:creator>
      <dc:date>2017-02-16T09:23:56Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-control/m-p/315046#M4529</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Kindly share the solution.&lt;/P&gt;&lt;P&gt;thank you!!&lt;/P&gt;</description>
      <pubDate>Thu, 16 Feb 2017 10:54:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-control/m-p/315046#M4529</guid>
      <dc:creator>Chintu6august</dc:creator>
      <dc:date>2017-02-16T10:54:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-control/m-p/315047#M4530</link>
      <description>&lt;P&gt;Probably: a password field is achieved by setting in the PBO:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT SCREEN.&lt;BR /&gt;    IF screen-name = 'your dynpro input/output field'.&lt;BR /&gt;      screen-input = '1'.&lt;BR /&gt;      screen-invisible = '1'.&lt;BR /&gt;      MODIFY SCREEN.&lt;BR /&gt;    ENDIF.&lt;BR /&gt;ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 16 Feb 2017 20:53:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-control/m-p/315047#M4530</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2017-02-16T20:53:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic table control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-control/m-p/315048#M4531</link>
      <description>&lt;P&gt;SPAN {
font-family: "Courier New";
font-size: 10pt;
color: #000000;
background: #FFFFFF;
}
.L0S33 {
color: #4DA619;
}
.L0S52 {
color: #0000FF;
}
.L0S55 {
color: #800080;
}
.L0S70 {
color: #808080;
}&lt;/P&gt;&lt;P&gt; LOOP AT it_coltbl INTO wa_coltbl .&lt;BR /&gt;
 LOOP AT tc_2000-cols INTO wa_tabctrl.&lt;BR /&gt;
 IF wa_tabctrl-screen-name EQ wa_coltbl.&lt;BR /&gt;
 wa_tabctrl-invisible = 'X'.&lt;BR /&gt;
 MODIFY tc_2000-cols FROM wa_tabctrl.&lt;BR /&gt;
 ENDIF.&lt;BR /&gt;
 ENDLOOP.&lt;BR /&gt;
 ENDLOOP.&lt;/P&gt;&lt;P&gt;pass word character pbm bcs function call after MODULE STATUS_2000. if we call before then no pbm with that&lt;/P&gt;</description>
      <pubDate>Mon, 20 Feb 2017 10:37:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-control/m-p/315048#M4531</guid>
      <dc:creator>former_member354305</dc:creator>
      <dc:date>2017-02-20T10:37:00Z</dc:date>
    </item>
  </channel>
</rss>

