<?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 Prg. Help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/prg-help/m-p/2354640#M520102</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 have a query regarding 'read current line'  statement. I wanted to read from a basic list output of a report program. And i want to select some specific value (LIFNR)  from a specific coloumn, depending on the 'check box' clicked against that row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And basing on those specific values (LIFNR), i will be selecting from another table(LFA1). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody plz help me in this regard. If possible drop me a piece of code plz...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking u in advanced&lt;/P&gt;&lt;P&gt;Sangram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 07 Jun 2007 05:42:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-07T05:42:00Z</dc:date>
    <item>
      <title>Prg. Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prg-help/m-p/2354640#M520102</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 have a query regarding 'read current line'  statement. I wanted to read from a basic list output of a report program. And i want to select some specific value (LIFNR)  from a specific coloumn, depending on the 'check box' clicked against that row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And basing on those specific values (LIFNR), i will be selecting from another table(LFA1). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody plz help me in this regard. If possible drop me a piece of code plz...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanking u in advanced&lt;/P&gt;&lt;P&gt;Sangram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2007 05:42:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prg-help/m-p/2354640#M520102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-07T05:42:00Z</dc:date>
    </item>
    <item>
      <title>Re: Prg. Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prg-help/m-p/2354641#M520103</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 for an example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba42335c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/9f/dba42335c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2007 05:46:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prg-help/m-p/2354641#M520103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-07T05:46:13Z</dc:date>
    </item>
    <item>
      <title>Re: Prg. Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/prg-help/m-p/2354642#M520104</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;read line can be used to solve your requirement...read current line reads a line from line selection or a line read by a read line statement...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just create a pf-status CLIC and execute this code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF ITAB OCCURS 0,&lt;/P&gt;&lt;P&gt;     FLAG(1),&lt;/P&gt;&lt;P&gt;      MATNR LIKE MARA-MATNR,&lt;/P&gt;&lt;P&gt;      END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: MLINE TYPE I, MPAGE LIKE SY-PAGNO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'OPUI'.&lt;/P&gt;&lt;P&gt;  SELECT MATNR FROM MARA INTO CORRESPONDING FIELDS OF TABLE ITAB UP TO 20 ROWS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT ITAB.&lt;/P&gt;&lt;P&gt;    WRITE : / ITAB-FLAG AS CHECKBOX, ITAB-MATNR INPUT ON.&lt;/P&gt;&lt;P&gt;    HIDE : ITAB-MATNR.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;  MPAGE = SY-PAGNO.&lt;/P&gt;&lt;P&gt;  MLINE = MPAGE * 72.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;  CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;    WHEN 'CLIC'.&lt;/P&gt;&lt;P&gt;      DO MLINE TIMES.&lt;/P&gt;&lt;P&gt;        READ LINE SY-INDEX FIELD VALUE ITAB-FLAG ITAB-MATNR.&lt;/P&gt;&lt;P&gt;        MODIFY LINE SY-INDEX .&lt;/P&gt;&lt;P&gt;        IF ITAB-FLAG NE SPACE.&lt;/P&gt;&lt;P&gt;          WRITE : / ITAB-MATNR.&lt;/P&gt;&lt;P&gt;        ENDIF.&lt;/P&gt;&lt;P&gt;      ENDDO.&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful, reward&lt;/P&gt;&lt;P&gt;Sathish. R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 07 Jun 2007 05:49:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/prg-help/m-p/2354642#M520104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-07T05:49:48Z</dc:date>
    </item>
  </channel>
</rss>

