<?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 modification in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142336#M746885</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it should display the value which u select......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have u put it into loop endloop in PAI?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and one other option with get cursor is &lt;/P&gt;&lt;P&gt;GET CURSOR LINE line_no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here u will get selected line so u can use this line_no...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Dec 2007 11:40:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-24T11:40:58Z</dc:date>
    <item>
      <title>table control modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142325#M746874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This is my situation.&lt;/P&gt;&lt;P&gt;In my table control if i select a row and click modify it wil go to another screen with all the fields of te selected row in input/output field. My query is in which variable will the contents of the selected row be held? How to populate the records in the next screen. Kindly help me on this.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 07:21:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142325#M746874</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T07:21:11Z</dc:date>
    </item>
    <item>
      <title>Re: table control modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142326#M746875</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;u ned to make one module in PAI....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT itab.&lt;/P&gt;&lt;P&gt;    CHAIN.&lt;/P&gt;&lt;P&gt;      FIELD itab-xblnr.&lt;/P&gt;&lt;P&gt;      FIELD itab-bldat.&lt;/P&gt;&lt;P&gt;      FIELD itab-rmwwr.&lt;/P&gt;&lt;P&gt;      field itab-cputm.&lt;/P&gt;&lt;P&gt;    ENDCHAIN.&lt;/P&gt;&lt;P&gt;    FIELD itab-mark&lt;/P&gt;&lt;P&gt;      MODULE tab1_mark ON REQUEST.&lt;/P&gt;&lt;P&gt;      *module itab_modify&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 &lt;STRONG&gt;itab_modify&lt;/STRONG&gt; INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;GET CURSOR FIELD xblnr VALUE bill_no.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " itab_modify  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE user_command_1000 INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE ok_code.&lt;/P&gt;&lt;P&gt;    WHEN 'BACK' OR 'UP' OR 'CANC'.&lt;/P&gt;&lt;P&gt;      LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'SV'.&lt;/P&gt;&lt;P&gt;    &lt;STRONG&gt;WHEN 'INFO'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;CALL SCREEN 1001.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDMODULE.                 " USER_COMMAND_1000  INPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i am calling another screen for displaying data of selected row...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and in PBO make one module...&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;STRONG&gt;module fetch_data1.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module &lt;STRONG&gt;fetch_data1&lt;/STRONG&gt; output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; SELECT SINGLE xblnr bldat rmwwr cputm FROM rbkp INTO&lt;/P&gt;&lt;P&gt;    corresponding fields of itab2&lt;/P&gt;&lt;P&gt;    WHERE xblnr = bill_no.&lt;/P&gt;&lt;P&gt;  APPEND itab2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmodule.                 " fetch_data1  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 09:05:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142326#M746875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T09:05:55Z</dc:date>
    </item>
    <item>
      <title>Re: table control modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142327#M746876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Harini ,  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The answer to your querry is :The selected records values will be stored in the header ( if u have used an itab with header line ) or any workarea to fill the table control . If you have not refreshed this record at the end of programming for the screen1 , the values will be stored in the workarea itself and you can use the same to fill the next screen field values . &lt;/P&gt;&lt;P&gt; If you need further clarification then you can revert to me .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ranjita&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 09:07:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142327#M746876</guid>
      <dc:creator>former_member196299</dc:creator>
      <dc:date>2007-12-24T09:07:49Z</dc:date>
    </item>
    <item>
      <title>Re: table control modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142328#M746877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi i tried using the line&lt;/P&gt;&lt;P&gt;READ TABLE itab INDEX table-current_line&lt;/P&gt;&lt;P&gt;but by default only the last line in the table control gets stored in the current_line.&lt;/P&gt;&lt;P&gt;what should i do to get the selected line?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 10:31:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142328#M746877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T10:31:44Z</dc:date>
    </item>
    <item>
      <title>Re: table control modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142329#M746878</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;have u tried with my code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 10:42:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142329#M746878</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T10:42:37Z</dc:date>
    </item>
    <item>
      <title>Re: table control modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142330#M746879</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;no am yet to try.....&lt;/P&gt;&lt;P&gt;isnt there any other way to find the cursor position?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 10:47:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142330#M746879</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T10:47:54Z</dc:date>
    </item>
    <item>
      <title>Re: table control modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142331#M746880</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 tried as u said...&lt;/P&gt;&lt;P&gt;but was unable to get the output.&lt;/P&gt;&lt;P&gt;is there anyother way to get the cursor position.?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 10:50:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142331#M746880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T10:50:58Z</dc:date>
    </item>
    <item>
      <title>Re: table control modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142332#M746881</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 think in module pool u can get cursor value only by get cursor.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have same report and i ma getting output...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u explain me whta u have done in ur report?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 11:00:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142332#M746881</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T11:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: table control modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142333#M746882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have populated the values of a database table in my table control. when the user selects a row and clicks on modify button it call another screen where all the values are populated in an input output box. and the user can modify the value and click save . the vales are then populated in the database.&lt;/P&gt;&lt;P&gt;i want to read the selcted row which am unable to do.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 11:11:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142333#M746882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T11:11:30Z</dc:date>
    </item>
    <item>
      <title>Re: table control modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142334#M746883</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ok&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when u write GET CURSOR......r u getting any value?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 11:23:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142334#M746883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T11:23:46Z</dc:date>
    </item>
    <item>
      <title>Re: table control modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142335#M746884</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ya .. it shows the last value in the database&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 11:30:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142335#M746884</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T11:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: table control modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142336#M746885</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it should display the value which u select......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have u put it into loop endloop in PAI?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and one other option with get cursor is &lt;/P&gt;&lt;P&gt;GET CURSOR LINE line_no.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here u will get selected line so u can use this line_no...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Dec 2007 11:40:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142336#M746885</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-24T11:40:58Z</dc:date>
    </item>
    <item>
      <title>Re: table control modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142337#M746886</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;GET CURSOR LINE l_line .&lt;/P&gt;&lt;P&gt;Now read the table which is populated in table control with INDEX,l_line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Bushara Bai on Dec 27, 2007 11:05 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2007 09:54:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142337#M746886</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-27T09:54:10Z</dc:date>
    </item>
    <item>
      <title>Re: table control modification</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142338#M746887</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Harini,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you set the selColumn attribute in the layout editor of the table control you can easily identify which row was selected.  For example I have a screen with a financial projection table and in the control I added the selColumn option and set the field equal to flag.  Flag is a field that is in the internal table definition.  I then loop at the table where Flag = 'X' and call the next screen to modify passing only those values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jereme&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jereme  Ebaugh on Dec 27, 2007 11:19 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2007 16:04:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-control-modification/m-p/3142338#M746887</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-27T16:04:22Z</dc:date>
    </item>
  </channel>
</rss>

