<?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 contorl in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-contorl/m-p/1289655#M154959</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;Do check this samples code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Screen 601 has a table control named CTRL_ANVSTED. &lt;/P&gt;&lt;P&gt;The table should be filled with records from the table zanvstedm&lt;/P&gt;&lt;P&gt;For this purpose you use an internal table called TBL_ANVSTED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Declare the table control&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CONTROLS CTRL_ANVSTED TYPE TABLEVIEW USING SCREEN 601.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Internal table used to hold data&lt;/P&gt;&lt;P&gt;DATA: TBL_ANVSTED LIKE ZANVSTEDM OCCURS 100 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Flag for initial reading &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Data: FLAG_INITIAL TYPE I VALUE 0.&lt;/P&gt;&lt;P&gt;&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;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Read data into the table control and the internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PF status etc.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;MODULE INITIALIZE_601.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Read data from table anvstedm into internal table tbl_anvsted.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE INIT_TBL_ANVSTED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill control with data from ythe internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOOP WITH CONTROL CTRL_ANVSTED.&lt;/P&gt;&lt;P&gt;MODULE FILL_CTRL_ANVSTED.&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;MODULE INIT_TBL_ANVSTED OUTPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Read data from table anvstedm into internal table tbl_anvsted.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IF FLAG_INITIAL = 0.&lt;/P&gt;&lt;P&gt;FLAG_INITIAL = 1.&lt;/P&gt;&lt;P&gt;SELECT * FROM ZANVSTEDM INTO TABLE TBL_ANVSTED.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE FILL_CTRL_ANVSTED OUTPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill control with data from the internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;READ TABLE TBL_ANVSTED INDEX CTRL_ANVSTED-CURRENT_LINE.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;EXIT FROM STEP-LOOP.&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;PROCESS AFTER INPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Write changes in table control to internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOOP WITH CONTROL CTRL_ANVSTED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE CTRL_ANVSTED.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE CTRL_ANVSTED INPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Write changes in table control to internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;MODIFY TBL_ANVSTED INDEX CTRL_ANVSTED-CURRENT_LINE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please go through this link.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/online_pgm_main_page.htm" target="test_blank"&gt;http://www.planetsap.com/online_pgm_main_page.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remember few things:&lt;/P&gt;&lt;P&gt;In the table control, take the first field as a BUTTON.&lt;/P&gt;&lt;P&gt;(the button will appear in all rows,and hence act as a RECORD SELECTOR ) --- &amp;gt; give fcode to it &amp;#132;³ IN PAI  use  the above said logic .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;P&gt;reward point, if found helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 13 Mar 2006 06:16:30 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-13T06:16:30Z</dc:date>
    <item>
      <title>Table contorl</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-contorl/m-p/1289652#M154956</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I change table control attributes dynamically?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance,&lt;/P&gt;&lt;P&gt;K P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2006 06:06:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-contorl/m-p/1289652#M154956</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-13T06:06:56Z</dc:date>
    </item>
    <item>
      <title>Re: Table contorl</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-contorl/m-p/1289653#M154957</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is a list of the changeable attributes of a table control (From SAP F1 help):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure CXTAB_CONTROL &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FIXED_COLS Number of lead columns. Start value is taken from the definition of the table control in screen dynnr. &lt;/P&gt;&lt;P&gt;  LINES Controls the vertical scroll bar of the table control. If the LOOP is executed in the screen flow logic without reference to an internal table, that start value of LINES is 0 and must be set in the program so that the scroll bar can be used. With reference to an internal table, LINES is set to the current number of rows in the internal table if the table control is being processed for the first time. However, since this time is not defined, the value of LINES should also be explicitly set to the number of rows of the internal table before the PBO processing in this case. &lt;/P&gt;&lt;P&gt;  TOP_LINE Topmost displayed row for next PBO PBO. Set at time of PAI by the position of the vertical slider box. &lt;/P&gt;&lt;P&gt;  CURRENT_LINE Current row during a LOOP in the screen flow logic. If the FROM addition to the LOOP statement is not specified, the value of CURRENT_LINE corresponds to the result of sy-stepl + (TOP_LINE - 1). &lt;/P&gt;&lt;P&gt;  LEFT_COL Number of first horizontally scrollable column displayed after the lead columns. Is set at time of PAI by the position of the horizontal slider box. &lt;/P&gt;&lt;P&gt;  LINE_SEL_MODE Row selection mode: "0" if no rows can be selected , "1" if one row, "2" if several rows. Start value is taken from the definition of the table control in screen dynnr. &lt;/P&gt;&lt;P&gt;  COL_SEL_MODE Column selection mode: "0" if no columns can be selected , "1" if one column, "2" if several columns. Start value is taken from the definition of the table control in screen dynnr. &lt;/P&gt;&lt;P&gt;  LINE_SELECTOR Flag ("X" or " ") whether there is a selection column. Start value is taken from the definition of the table control in screen dynnr. &lt;/P&gt;&lt;P&gt;  H_GRID Flag ("X" or " ") whether there are horizontal separators. Start value is taken from the definition of the table control in screen dynnr. &lt;/P&gt;&lt;P&gt;  V_GRID Flag ("X" or " ") whether there are vertical separators. Start value is taken from the definition of the table control in screen dynnr. &lt;/P&gt;&lt;P&gt;  COLS Control table for individual columns of structure CXTAB_COLUMN. &lt;/P&gt;&lt;P&gt;  INVISIBLE Flag ("X" or " ") whether or not the table control is visible in the window or not. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Structure CXTAB_COLUMN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SCREEN Structure for the attributes of the screen element of the current column. The components can be set for the values described there either directly or using MODIFY SCREEN . The latter overwrites a direct value assignment. &lt;/P&gt;&lt;P&gt;  INDEX Current position of the column in the table control. Start value is taken from the definition of the table control in the screen dynnr. Is set to the current value at time of PAI. &lt;/P&gt;&lt;P&gt;  SELECTED Flag ("X" or " ") whether or not column is selected. Is set to current value at time of PAI. &lt;/P&gt;&lt;P&gt;  VISLENGTH Visible length of column. Start value is taken from the definition of the table control in screen dynnr. &lt;/P&gt;&lt;P&gt;  INVISIBLE Flag ("X" or " ") whether or not the column is visible in the table control. &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;Sudha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2006 06:12:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-contorl/m-p/1289653#M154957</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-13T06:12:30Z</dc:date>
    </item>
    <item>
      <title>Re: Table contorl</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-contorl/m-p/1289654#M154958</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;I think u can do that,&lt;/P&gt;&lt;P&gt;Coding on Screen DYNPRO&lt;/P&gt;&lt;P&gt;*PBO----&lt;/P&gt;&lt;HR originaltext="---------------------------------------" /&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;LOOP AT screen_itab WITH CONTROL TC&lt;/P&gt;&lt;P&gt;                    CURSOR TC-CURRENT_LINE.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*PAI----&lt;/P&gt;&lt;HR originaltext="----------------------------------------" /&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------" /&gt;&lt;P&gt;LOOP AT screen_itab.&lt;/P&gt;&lt;P&gt;   MODULE USER_COMMAND_9000.&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;Definition of the Table Control in the TOP INCLUDE&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                     TABLE CONTROL&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONTROLS: TC TYPE TABLEVIEW USING SCREEN 9000.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will be useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2006 06:12:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-contorl/m-p/1289654#M154958</guid>
      <dc:creator>vinod_gunaware2</dc:creator>
      <dc:date>2006-03-13T06:12:39Z</dc:date>
    </item>
    <item>
      <title>Re: Table contorl</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-contorl/m-p/1289655#M154959</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;Do check this samples code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Screen 601 has a table control named CTRL_ANVSTED. &lt;/P&gt;&lt;P&gt;The table should be filled with records from the table zanvstedm&lt;/P&gt;&lt;P&gt;For this purpose you use an internal table called TBL_ANVSTED&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Declare the table control&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CONTROLS CTRL_ANVSTED TYPE TABLEVIEW USING SCREEN 601.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Internal table used to hold data&lt;/P&gt;&lt;P&gt;DATA: TBL_ANVSTED LIKE ZANVSTEDM OCCURS 100 WITH HEADER LINE,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Flag for initial reading &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Data: FLAG_INITIAL TYPE I VALUE 0.&lt;/P&gt;&lt;P&gt;&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;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Read data into the table control and the internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PF status etc.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;MODULE INITIALIZE_601.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Read data from table anvstedm into internal table tbl_anvsted.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE INIT_TBL_ANVSTED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill control with data from ythe internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOOP WITH CONTROL CTRL_ANVSTED.&lt;/P&gt;&lt;P&gt;MODULE FILL_CTRL_ANVSTED.&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;MODULE INIT_TBL_ANVSTED OUTPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Read data from table anvstedm into internal table tbl_anvsted.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;IF FLAG_INITIAL = 0.&lt;/P&gt;&lt;P&gt;FLAG_INITIAL = 1.&lt;/P&gt;&lt;P&gt;SELECT * FROM ZANVSTEDM INTO TABLE TBL_ANVSTED.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE FILL_CTRL_ANVSTED OUTPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Fill control with data from the internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;READ TABLE TBL_ANVSTED INDEX CTRL_ANVSTED-CURRENT_LINE.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;EXIT FROM STEP-LOOP.&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;PROCESS AFTER INPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Write changes in table control to internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;LOOP WITH CONTROL CTRL_ANVSTED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE CTRL_ANVSTED.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE CTRL_ANVSTED INPUT.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Write changes in table control to internal table&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;MODIFY TBL_ANVSTED INDEX CTRL_ANVSTED-CURRENT_LINE.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please go through this link.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/online_pgm_main_page.htm" target="test_blank"&gt;http://www.planetsap.com/online_pgm_main_page.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remember few things:&lt;/P&gt;&lt;P&gt;In the table control, take the first field as a BUTTON.&lt;/P&gt;&lt;P&gt;(the button will appear in all rows,and hence act as a RECORD SELECTOR ) --- &amp;gt; give fcode to it &amp;#132;³ IN PAI  use  the above said logic .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;Sunny&lt;/P&gt;&lt;P&gt;reward point, if found helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 13 Mar 2006 06:16:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-contorl/m-p/1289655#M154959</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-13T06:16:30Z</dc:date>
    </item>
  </channel>
</rss>

