<?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: Capturing more than one field values using Read Line Statement in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-more-than-one-field-values-using-read-line-statement/m-p/5463477#M1251555</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;u can use get cursor command, press F1 and see, u will get required information. &lt;/P&gt;&lt;P&gt;this will solve ur problem, and also sy-lisel is useful to ur requirement.. this is useful for at line-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds.,&lt;/P&gt;&lt;P&gt;subash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Apr 2009 04:34:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-28T04:34:00Z</dc:date>
    <item>
      <title>Capturing more than one field values using Read Line Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-more-than-one-field-values-using-read-line-statement/m-p/5463476#M1251554</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Friends , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a requirement that goes like this.. Its a classical report and once we give the input values and execute it will take you to the output screen that has three fields 1) Partner Number(from the input screen) , 2) Contract Number and 3) A checkbox. Now once the user checks or unchecks this checkbox and saves , the checkbox field in the database table should be updated based on the user action ( Both checked and unchecked user action should be captured). Now i am using event User command . In that i need to capture the user action and then update the DB table. I am using the Read line statement but i am not able to capture all the three fields from the output screen . Can someone suggest me how to proceed further on this ? If some one has a sample piece of code related to this requirement kindly send it across.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks In Advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 04:31:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-more-than-one-field-values-using-read-line-statement/m-p/5463476#M1251554</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-28T04:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing more than one field values using Read Line Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-more-than-one-field-values-using-read-line-statement/m-p/5463477#M1251555</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;u can use get cursor command, press F1 and see, u will get required information. &lt;/P&gt;&lt;P&gt;this will solve ur problem, and also sy-lisel is useful to ur requirement.. this is useful for at line-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds.,&lt;/P&gt;&lt;P&gt;subash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 04:34:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-more-than-one-field-values-using-read-line-statement/m-p/5463477#M1251555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-28T04:34:00Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing more than one field values using Read Line Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-more-than-one-field-values-using-read-line-statement/m-p/5463478#M1251556</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;FORM alv_user_command USING r_ucomm     LIKE sy-ucomm&lt;/P&gt;&lt;P&gt;                            &lt;STRONG&gt;rs_selfield&lt;/STRONG&gt; TYPE slis_selfield .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      READ TABLE g_t_final_header INTO l_r_z07l_stock1 INDEX&lt;/P&gt;&lt;P&gt;      &lt;STRONG&gt;rs_selfield-tabindex&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      PERFORM detail_list USING l_r_z07l_stock1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " alv_user_command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;tabindex&lt;/STRONG&gt; will have the Index number of the selected row, then u read the index of the table with READ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 04:45:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-more-than-one-field-values-using-read-line-statement/m-p/5463478#M1251556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-28T04:45:59Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing more than one field values using Read Line Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-more-than-one-field-values-using-read-line-statement/m-p/5463479#M1251557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Count the number of records in the Internal table .
    Say : w_index.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Do w_index.  
     READ LINE sy-index FIELD VALUE Partner Number
                               Contract Number 
                               checkbox.
    Update the ZTABLE.
  ENDDO.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this will resolve your issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gurpreet&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 04:49:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-more-than-one-field-values-using-read-line-statement/m-p/5463479#M1251557</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-28T04:49:20Z</dc:date>
    </item>
    <item>
      <title>Re: Capturing more than one field values using Read Line Statement</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-more-than-one-field-values-using-read-line-statement/m-p/5463480#M1251558</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use F1 on Read line statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Apr 2009 04:55:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/capturing-more-than-one-field-values-using-read-line-statement/m-p/5463480#M1251558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-28T04:55:39Z</dc:date>
    </item>
  </channel>
</rss>

