<?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: Regarding Tabl;e control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102125#M103705</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Syed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you have to play with Field-Exit, the input and output is manage in different place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have fun&lt;/P&gt;&lt;P&gt;Frédéric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Nov 2005 09:43:58 GMT</pubDate>
    <dc:creator>FredericGirod</dc:creator>
    <dc:date>2005-11-21T09:43:58Z</dc:date>
    <item>
      <title>Regarding Tabl;e control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102124#M103704</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 need to provide the functionality to allow some entries in table control in edit mode and some of the entries in display mode in a single table control. &lt;/P&gt;&lt;P&gt;Early response is appreciated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 09:40:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102124#M103704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T09:40:06Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Tabl;e control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102125#M103705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Syed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maybe you have to play with Field-Exit, the input and output is manage in different place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have fun&lt;/P&gt;&lt;P&gt;Frédéric&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 09:43:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102125#M103705</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2005-11-21T09:43:58Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Tabl;e control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102126#M103706</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  you can set some columns as input fields in this way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in PBO:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TCONTROL-COLS[1]-SCREEN-INPUT = '1'
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where TCONTROL is the table control you're using&lt;/P&gt;&lt;P&gt;it sets the first column as input field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards Manuel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 09:46:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102126#M103706</guid>
      <dc:creator>manuel_bassani</dc:creator>
      <dc:date>2005-11-21T09:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Tabl;e control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102127#M103707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Syed,&lt;/P&gt;&lt;P&gt;   In the PBO section of the screen in which the table control is there, write dynamic screen modification statement,based on a condition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg&lt;/P&gt;&lt;P&gt; loop at data with table contol...&lt;/P&gt;&lt;P&gt;module ..&lt;/P&gt;&lt;P&gt;module..&lt;/P&gt;&lt;P&gt;module dynamic_screen_modifications.&lt;/P&gt;&lt;P&gt; endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module dynamic_screen_modifications.&lt;/P&gt;&lt;P&gt;if condition.&lt;/P&gt;&lt;P&gt;if screen-group = &amp;lt;Groupname&amp;gt;.&lt;/P&gt;&lt;P&gt;screen-output = space.&lt;/P&gt;&lt;P&gt;scren-input = 'X'.&lt;/P&gt;&lt;P&gt;modify screen.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REgards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 09:47:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102127#M103707</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T09:47:32Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Tabl;e control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102128#M103708</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 PBO of the screen call a form like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Screen:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE modify_protect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The module should be:&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  modify_protect  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;P&gt;&lt;/P&gt;&lt;P&gt;MODULE modify_protect OUTPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt; if SCREEN-NAME = 'xxxxx'. 'You can modify    individually&lt;/P&gt;&lt;P&gt; if SCREEN-GROUP = 'gr01'. 'You can group the fields&lt;/P&gt;&lt;P&gt;      screen-input = '0'. 'Deprotect or protect the field&lt;/P&gt;&lt;P&gt;      modify screen.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 09:49:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102128#M103708</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T09:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Tabl;e control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102129#M103709</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;Check this link.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/table" target="test_blank"&gt;https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/table&lt;/A&gt; control in abap.pdf&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this,I am making some fields as editable and some fields as non-editable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly reward points by clicking the star on the left of reply,if it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 10:21:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102129#M103709</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-11-21T10:21:50Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Tabl;e control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102130#M103710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi use this in PBO to get the desired functioality.&lt;/P&gt;&lt;P&gt;tablecontrol-screen-input = '0' or '1' based on ur requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 10:27:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102130#M103710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T10:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Tabl;e control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102131#M103711</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;First 2 columns of table control are in display mode and the next fields are in change mode when we click change button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Check out the program which meets ur requirement in ABAPDOCU.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BC-ABAP programming -&amp;gt; Abap user dialogs -&amp;gt; Screens -&amp;gt; Complex screen elements -&amp;gt; Table control with modifications.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Report name : DEMO_DYNPRO_TABCONT_LOOP_AT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sailaja.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Nov 2005 10:48:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-tabl-e-control/m-p/1102131#M103711</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-21T10:48:19Z</dc:date>
    </item>
  </channel>
</rss>

