<?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: Reading Internal Table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186262#M758767</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;  sorry overlooked&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT mandt plnty plnnr &amp;lt;b&amp;gt;vplfl vlntv&amp;lt;/b&amp;gt; plnkn zaehl vornr FROM plpo&lt;/P&gt;&lt;P&gt;INTO TABLE git_plpo&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN git_plas&lt;/P&gt;&lt;P&gt;WHERE plnty = git_plas-plnty&lt;/P&gt;&lt;P&gt;AND plnnr = git_plas-plnnr&lt;/P&gt;&lt;P&gt;and plnkn = git_plas-plnkn&lt;/P&gt;&lt;P&gt;and zaehl = git_plas-zaehl&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;and vplfl = git_plas-plnal&lt;/P&gt;&lt;P&gt;and vintv = git_plas-Plnfl.&amp;lt;/b&amp;gt;&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>Thu, 13 Dec 2007 12:21:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-13T12:21:40Z</dc:date>
    <item>
      <title>Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186259#M758764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have got Functional Location(TPLNR), Group Counter(PLNAL), Operation(VORNR) in an internal table GIT_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on the values in the internal table i am fetching below data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;    SELECT mandt tplnr plnty plnnr plnal zkriz zaehl FROM tapl
    INTO TABLE git_tapl
     FOR ALL ENTRIES IN git_data
      WHERE tplnr = git_data-tplnr
        AND plnal = git_data-plnal.

    IF sy-subrc = 0.

      SELECT mandt plnty plnnr plnal plnfl plnkn zaehl FROM plas
       INTO TABLE git_plas
        FOR ALL ENTRIES IN git_tapl
         WHERE plnty = git_tapl-plnty
           AND plnnr = git_tapl-plnnr
           AND plnal = git_tapl-plnal.

      IF sy-subrc = 0.

        SELECT mandt plnty plnnr plnkn zaehl vornr FROM plpo
         INTO TABLE git_plpo
          FOR ALL ENTRIES IN git_plas
           WHERE plnty = git_plas-plnty
             AND plnnr = git_plas-plnnr
             and plnkn = git_plas-plnkn
             and zaehl = git_plas-zaehl.

      ENDIF.
    ENDIF.

 Now i am trying to read those values. 

  LOOP AT git_data INTO wa_data.
      READ TABLE git_tapl INTO wa_tapl
       WITH KEY tplnr = wa_data-tplnr
                plnal = wa_data-plnal BINARY SEARCH.
      IF sy-subrc = 0.
        read table git_plas into wa_plas
         with key mandt = wa_tapl-mandt
                  plnty = wa_tapl-plnty
                  plnnr = wa_tapl-plnnr
                  plnal = wa_tapl-plnal
                  binary search.
         if sy-subrc = 0.

&amp;lt;b&amp;gt;* Here i need to find the exact operation record.&amp;lt;/b&amp;gt; 

         READ TABLE git_plpo INTO wa_plpo  &amp;lt;&amp;lt; This read is failing in the 2nd loop onwords.
          WITH KEY mandt = wa_plas-mandt
                  plnty = wa_plas-plnty
                  plnnr = wa_plas-plnnr
                  plnkn = wa_plas-plnkn
                  zaehl = wa_plas-zaehl
                  vornr = wa_data-vornr
                  BINARY SEARCH.
          endif.
     endif.
 endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; Am a not using correct relation? Can any body check and tell me what is wrong in this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 11:26:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186259#M758764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T11:26:54Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186260#M758765</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 corrected like this,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT mandt tplnr plnty plnnr plnal zkriz zaehl FROM tapl&lt;/P&gt;&lt;P&gt;    INTO TABLE git_tapl&lt;/P&gt;&lt;P&gt;     FOR ALL ENTRIES IN git_data&lt;/P&gt;&lt;P&gt;      WHERE tplnr = git_data-tplnr&lt;/P&gt;&lt;P&gt;        AND plnal = git_data-plnal.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;      SELECT mandt plnty plnnr plnal plnfl plnkn zaehl FROM plas&lt;/P&gt;&lt;P&gt;       INTO TABLE git_plas&lt;/P&gt;&lt;P&gt;        FOR ALL ENTRIES IN git_tapl&lt;/P&gt;&lt;P&gt;         WHERE plnty = git_tapl-plnty&lt;/P&gt;&lt;P&gt;           AND plnnr = git_tapl-plnnr&lt;/P&gt;&lt;P&gt;           AND plnal = git_tapl-plnal&lt;/P&gt;&lt;P&gt;           &amp;lt;b&amp;gt;And zaehl = git_tap1-zaehl.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;      IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;        SELECT mandt plnty plnnr &amp;lt;b&amp;gt;plnal plnfl&amp;lt;/b&amp;gt; plnkn zaehl vornr FROM plpo&lt;/P&gt;&lt;P&gt;         INTO TABLE git_plpo&lt;/P&gt;&lt;P&gt;          FOR ALL ENTRIES IN git_plas&lt;/P&gt;&lt;P&gt;           WHERE plnty = git_plas-plnty&lt;/P&gt;&lt;P&gt;             AND plnnr = git_plas-plnnr&lt;/P&gt;&lt;P&gt;             and plnkn = git_plas-plnkn&lt;/P&gt;&lt;P&gt;             and zaehl = git_plas-zaehl&lt;/P&gt;&lt;P&gt;             &amp;lt;b&amp;gt;and plnal = git_plas-plnal&lt;/P&gt;&lt;P&gt;             and plnfl = git_plas-Plnfl.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;      ENDIF.&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;regards,&lt;/P&gt;&lt;P&gt;pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 11:47:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186260#M758765</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T11:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186261#M758766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Pavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sorry It doesn't work. PLPO Doesn't have fields PLNFL &amp;amp; PLNAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Satish Panakala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 12:11:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186261#M758766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T12:11:37Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186262#M758767</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;  sorry overlooked&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT mandt plnty plnnr &amp;lt;b&amp;gt;vplfl vlntv&amp;lt;/b&amp;gt; plnkn zaehl vornr FROM plpo&lt;/P&gt;&lt;P&gt;INTO TABLE git_plpo&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN git_plas&lt;/P&gt;&lt;P&gt;WHERE plnty = git_plas-plnty&lt;/P&gt;&lt;P&gt;AND plnnr = git_plas-plnnr&lt;/P&gt;&lt;P&gt;and plnkn = git_plas-plnkn&lt;/P&gt;&lt;P&gt;and zaehl = git_plas-zaehl&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;and vplfl = git_plas-plnal&lt;/P&gt;&lt;P&gt;and vintv = git_plas-Plnfl.&amp;lt;/b&amp;gt;&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>Thu, 13 Dec 2007 12:21:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186262#M758767</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T12:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186263#M758768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Satish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to SORT the internal table before the READ TABLE ... BINARY SEARCH. (I assume the table is TYPE STANDARD and not SORTED).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;On the other hand pls. remove all declarations, selections related to field MANDT. That is handled automatically in the system, you don't need that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 12:26:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186263#M758768</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2007-12-13T12:26:06Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186264#M758769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;vplfl, vintv are always empty, it doesn't have any values, so it is not fetching any values at all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 12:28:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186264#M758769</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T12:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186265#M758770</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Eric,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am sorting the internal tables before using read statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It doesn't matter with mandt, It is problem with fetching the proper data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 12:30:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186265#M758770</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T12:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186266#M758771</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;SELECT mandt plnty plnnr &amp;lt;b&amp;gt;vplal&amp;lt;/b&amp;gt; plnkn zaehl vornr FROM plpo&lt;/P&gt;&lt;P&gt;INTO TABLE git_plpo&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN git_plas&lt;/P&gt;&lt;P&gt;WHERE plnty = git_plas-plnty&lt;/P&gt;&lt;P&gt;AND plnnr = git_plas-plnnr&lt;/P&gt;&lt;P&gt;and plnkn = git_plas-plnkn&lt;/P&gt;&lt;P&gt;and zaehl = git_plas-zaehl&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;and vplal = git_plas-plnal&amp;lt;/b&amp;gt;.&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>Thu, 13 Dec 2007 12:45:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186266#M758771</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T12:45:04Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186267#M758772</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pavan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;VPLAL is also always empty, so we can not relate them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 13:47:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186267#M758772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T13:47:41Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186268#M758773</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;Just tell me the tables relation, how i can get the record from PLPO table if i have Functional Location(TPLNR), Group Counter(PLNAL) &amp;amp; Operation Number(VORNR)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 13:53:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186268#M758773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T13:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186269#M758774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No Inputs from anybody?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 15:56:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186269#M758774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T15:56:21Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186270#M758775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To use the BINARY SEARCH addition in the READ you must sort your table based on the key you are using to read the table.&lt;/P&gt;&lt;P&gt;Put Sort before going into LOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SORT GIT_PLPO BY PLNTY PLNNR PLNKN ZAEHL VORNR.

LOOP AT......

         READ TABLE git_plpo INTO wa_plpo  &amp;lt;&amp;lt; This read is failing in the 2nd loop onwords.
          WITH KEY mandt = wa_plas-mandt
                  plnty = wa_plas-plnty
                  plnnr = wa_plas-plnnr
                  plnkn = wa_plas-plnkn
                  zaehl = wa_plas-zaehl
                  vornr = wa_data-vornr
                  BINARY SEARCH.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 16:02:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186270#M758775</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-12-13T16:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186271#M758776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have Sorted before using read statement, it is not the problem with SORT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I couldn't relate tables TAPL, PLAS &amp;amp; PLPO with values i have (TPLNR,PLNNR,VORNR). So i am not able read the proper Operation Number(VORNR).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will explain you again&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have got TPLNR, PLNNR &amp;amp; VORNR.&lt;/P&gt;&lt;P&gt;Now i am fetching data from TAPL table for the TPLNR &amp;amp; PLNNR values i have.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then for all the entries i got from TAPL i am fetching data from PLAS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For all entries of PLAS i am getting the values of PLPO(here i will have Operation Number).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So to make Object Name in THEAD i am concatinating values from PLPO and have to update the long text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the relation is failing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think now everything is clear.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 17:16:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186271#M758776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T17:16:27Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186272#M758777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes... now it is clear...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems that your relation between tables is ok.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have tried with the TOP - DOWN approch. Try with DOWN - TOP approch adn try without using the BINAREY SERACH in the READ.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT PLPO.
  READ TABLE PLAS
     READ TABLE TAPL
        READ TABLE T_DATA
          IF SY-SUBRC = 0.
*             VALID RECORD
          ENDIF.
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 20:41:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186272#M758777</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2007-12-13T20:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Reading Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186273#M758778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naimesh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the input, i never thought of this. May be this could be the problem, i will try this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Dec 2007 21:18:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reading-internal-table/m-p/3186273#M758778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-13T21:18:51Z</dc:date>
    </item>
  </channel>
</rss>

