<?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: Dynamic Screen in Table Control in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862122#M1321700</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes i already add screen gorup of the field in the element list. I also forget to tell you guys that the field of the screen i make it 'Input is possible' at the element list.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 21 Jul 2009 02:31:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-21T02:31:04Z</dc:date>
    <item>
      <title>Dynamic Screen in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862112#M1321690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem on screen dynpro. In the screen, i have a table control and i set all the field can be input.&lt;/P&gt;&lt;P&gt;But i have 2 t-code where 1 of the t-code can edited the data and another one only display.&lt;/P&gt;&lt;P&gt;So in screen status, i insert this code.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  IF sy-tcode = 'ZDLKWPP3'.
    LOOP AT SCREEN.
      IF screen-group1 = 'ZKP'.
        screen-input = 0.
        screen-output = 1.
        MODIFY SCREEN.
      ENDIF.
    ENDLOOP.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but when i execute, the screen still can be input. can anyone help me please...!!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2009 09:14:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862112#M1321690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-20T09:14:42Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Screen in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862113#M1321691</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;Try this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-tcode = 'ZDLKWPP3'.&lt;/P&gt;&lt;P&gt;    LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;      IF screen-group1 = 'ZKP'.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Siva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2009 09:24:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862113#M1321691</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-20T09:24:22Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Screen in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862114#M1321692</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 way..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF sy-tcode = 'ZDLKWPP3'.
    LOOP AT SCREEN.
      IF screen-group1 CS 'ZKP'.
        screen-input = '0'.
        screen-output = '1'.
        MODIFY SCREEN.
        CLEAR SCREEN.
      ENDIF.
    ENDLOOP.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2009 09:26:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862114#M1321692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-20T09:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Screen in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862115#M1321693</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;If you are talking about disabling the table control fields, then where exactly have you written this code? Inside the LOOP...ENDLOOP of the table control or inside a module outside of the table control? You gotto write this inside the LOOP...ENDLOOP of the table control. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Otherwise try what Avinash has suggested.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nitwick on Jul 20, 2009 3:05 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2009 09:35:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862115#M1321693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-20T09:35:08Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Screen in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862116#M1321694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Bob,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First of all, write the code in PBO, not PAI ( I am sure you must have already done that &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt; )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Secondly, try to combine all the screen modification operations in a single IF ... ELSEIF ... ENDIF structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Lastly, also mention the condition explicitly for the other T-Code as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-tcode = 'ZDLKWPP3'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'ZKP'.&lt;/P&gt;&lt;P&gt;screen-input = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSEIF screen-group1 = 'XYZ'.&lt;/P&gt;&lt;P&gt;&amp;lt;enter code here&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSEIF ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSEIF sy-tcode = 'ZXYZ123' "Other T-code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF screen-group1 = 'ZKP'.&lt;/P&gt;&lt;P&gt;screen-input = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSEIF screen-group1 = 'XYZ'.&lt;/P&gt;&lt;P&gt;&amp;lt;enter code here&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ELSEIF ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Shailesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2009 09:55:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862116#M1321694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-20T09:55:02Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Screen in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862117#M1321695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That coding i put it in "MODULE STATUS 0300." Those are the coding for the screen and the module status.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

*************--code for the screen----******************
PROCESS BEFORE OUTPUT.
 MODULE STATUS_0300.

*&amp;amp;spwizard: pbo flow logic for tablecontrol 'TBL_KWPP'
  module TBL_KWPP_init.
*&amp;amp;spwizard: module TBL_KWPP_change_tc_attr.
*&amp;amp;spwizard: module TBL_KWPP_change_col_attr.
module TBL_KWPP_change_tc_attr.

  loop at   g_TBL_KWPP_itab
       into g_TBL_KWPP_wa
       with control TBL_KWPP
       cursor TBL_KWPP-current_line.
*&amp;amp;spwizard:   module TBL_KWPP_change_field_attr
    module TBL_KWPP_move.
    module TBL_KWPP_get_lines.
  endloop.
module cal_sum2.

*
PROCESS AFTER INPUT.
MODULE returnexit AT EXIT-COMMAND.
*&amp;amp;spwizard: pai flow logic for tablecontrol 'TBL_KWPP'

  loop at g_TBL_KWPP_itab.
    chain.
      field ZLMDL015A-ZRUMJEN.
      field ZLMDL015A-ZRUMFAED.
      field ZLMDL015A-ZRUMULA.
      field ZLMDL015A-ZRUMAKH.
      field ZLMDL015A-ZRUMAMB.
      field ZLMDL015A-ZRUMTERIMA.
      field ZLMDL015A-ZRUMBAYARAN.
      field ZLMDL015A-ZRUMAMNOM.
      field G_TBL_KWPP_WA-FLAG
           MODULE tab_vot_mark1 ON REQUEST.
      MODULE TBL_KWPP_modify ON CHAIN-REQUEST.
    endchain.
  endloop.
  module TBL_KWPP_user_command.
*&amp;amp;spwizard: module TBL_KWPP_change_tc_attr.
*&amp;amp;spwizard: module TBL_KWPP_change_col_attr.

 MODULE USER_COMMAND_0300.

*******---code for the module status---**********

MODULE STATUS_0300 OUTPUT.
  SET PF-STATUS '0300'.
*  SET TITLEBAR 'TITLE3' WITH 'Wujud/Kemaskini'.
*  zlmfl030-zlmtkhlaras = w_ztksej.
*
  perform set_tarikh.
*  perform find_data.

  IF sy-tcode = 'ZDLKWPP1'.
    SET TITLEBAR 'TITLE' WITH 'Wujud/Kemaskini'.
    SET PF-STATUS '0300'.

  ELSE.
    SET TITLEBAR 'TITLE' WITH 'Papar'.
    SET PF-STATUS '0300' EXCLUDING 'SAVE'.

endif.

  IF sy-tcode = 'ZDLKWPP3'.
    LOOP AT SCREEN.
      IF screen-group1 CS 'ZKP'.
        screen-input = 0.
        screen-output = 1.
        MODIFY SCREEN.
        CLEAR SCREEN.
      ENDIF.
    ENDLOOP.
ENDIF.


ENDMODULE.                 " STATUS_0300  OUTPUT

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and as you can see i try ashavind code, it still not working.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2009 10:04:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862117#M1321695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-20T10:04:39Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Screen in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862118#M1321696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi BobKur,
Try this way.
&lt;PRE&gt;&lt;CODE&gt;
"Define cols internal table like below
DATA: cols LIKE LINE OF tbl_kwpp-cols.

"Use below code to change screen elements dynamically when you use Table control
IF sy-tcode = 'ZDLKWPP3'.
  LOOP AT tbl_kwpp-cols INTO cols.
    IF screen-group1 CS 'ZKP'.
      cols-screen-input = 0.
      MODIFY tbl_kwpp-cols FROM cols INDEX sy-tabix.
    ENDIF.
  ENDLOOP.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;
&amp;lt;li&amp;gt; Check the demo program &lt;STRONG&gt;demo_dynpro_tabcont_loop_at&lt;/STRONG&gt;.
I hope that it solves your problem.

Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2009 10:58:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862118#M1321696</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-07-20T10:58:23Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Screen in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862119#M1321697</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;&lt;/P&gt;&lt;P&gt;Try putting the portion of code to disable the fields inside the LOOP...ENDLOOP of the table control in the PBO.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jul 2009 11:04:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862119#M1321697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-20T11:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Screen in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862120#M1321698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Venkat.O, i already check on the demo program &lt;STRONG&gt;DEMO_DYNPRO_TABCONT_LOOP_AT&lt;/STRONG&gt;. But the in that screen, it already make those field to output only. The field in my table control i make it that it can input too. That program have 2 t-code. T-code = 'ZDLKWPP1' user can input to the screen and another t-code = 'ZDLKWPP3' need to make those field for output only.&lt;/P&gt;&lt;P&gt;So i now trying to make 1 screen that can accept input and be output only according to the t-code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Venkat.O, i also try to do with you coding, but it still doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nickwit, do u mean that to put the code into the Loop in the coding screen? it is still not waorking....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2009 02:18:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862120#M1321698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-21T02:18:06Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Screen in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862121#M1321699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;DId you add the screen group in the element list of the screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2009 02:20:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862121#M1321699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-21T02:20:29Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Screen in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862122#M1321700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes i already add screen gorup of the field in the element list. I also forget to tell you guys that the field of the screen i make it 'Input is possible' at the element list.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2009 02:31:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862122#M1321700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-21T02:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Screen in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862123#M1321701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;Hi BobKur,
Try this.
&lt;PRE&gt;&lt;CODE&gt;
DATA: cols LIKE LINE OF tbl_kwpp-cols.

"Use below code to change screen elements dynamically when you use Table control
IF sy-tcode = 'ZDLKWPP3'. "For Display only
  LOOP AT tbl_kwpp-cols INTO cols.
    cols-screen-input = '0'.
    MODIFY tbl_kwpp-cols FROM cols INDEX sy-tabix.
  ENDLOOP.
ELSE. "For Input only
  LOOP AT tbl_kwpp-cols INTO cols.
    cols-screen-input = '1'.
    MODIFY tbl_kwpp-cols FROM cols INDEX sy-tabix.
  ENDLOOP.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;
&amp;lt;li&amp;gt; It should work now.
&amp;lt;li&amp;gt;Put break-point on LOOP AT tbl_kwpp-cols statement and check whether it has your table control fields or not.
Thanks
Venkat.O&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2009 02:52:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862123#M1321701</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2009-07-21T02:52:07Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Screen in Table Control</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862124#M1321702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey guys i already found the anwer. the only thing is i need to move the module status to bottom of the PBO. then it will work. by the way thanks to all that really helping me on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Jul 2009 04:07:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-screen-in-table-control/m-p/5862124#M1321702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-21T04:07:47Z</dc:date>
    </item>
  </channel>
</rss>

