<?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: internal tables in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2890525#M679273</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANKS FOR THE INPUT. WELL I AM TRYING THIS CODE.. LETS SEE AFTER DEBUGGING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF reconciler IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        LOOP AT t_lookup.&lt;/P&gt;&lt;P&gt;READ TABLE t_lookup WITH KEY role+0(1) = 'R'&lt;/P&gt;&lt;P&gt;                      holder = 'RECONCILER'.&lt;/P&gt;&lt;P&gt;          if syst-subrc = 0.&lt;/P&gt;&lt;P&gt;           append t_lookup-account to t_acct.&lt;/P&gt;&lt;P&gt;          endif.&lt;/P&gt;&lt;P&gt;        ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 18 Oct 2007 03:10:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-18T03:10:48Z</dc:date>
    <item>
      <title>internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2890522#M679270</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; i have a requirement which says:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If RECONCILER is not initial.Perform a Lookup by Reconciler name to obtain all accounts for the select Reconciler; Search on ZRECON_ORG_STR-ROLE+0(1) = &amp;#145;R&amp;#146; and ZRECON_ORG_STR-HOLDER = RECONCILER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here, i have two internal tables:&lt;/P&gt;&lt;P&gt;first one has the recon master data which has all account details and second one has organization data which has reconciler name role holder all those fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to achieve this?&lt;/P&gt;&lt;P&gt;what is the meaning of performing lookup?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;points assured&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 02:16:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2890522#M679270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T02:16:18Z</dc:date>
    </item>
    <item>
      <title>Re: internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2890523#M679271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Let me try:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say master table is MASTER and org role table is ORG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  If not wf_reconciler is initial.
     Loop at ORG where HOLDER = RECONCILER
                             and ROLE+0(1) = 'R'.

        Loop at MASTER where RECONCILER = RECONCILER.
         "Here you can get all the accounts since the condition from first loop
         "will only give you those reconcilers who have the ROLE+0(1) = 'R'
        Endloop.
     Endloop. 
  endif.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 02:41:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2890523#M679271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T02:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2890524#M679272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is the meaning of performing lookup?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This mean that you need to &amp;lt;b&amp;gt;search &amp;lt;/b&amp;gt;by Reconciler name to obtain all accounts for the select Reconciler.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 02:44:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2890524#M679272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T02:44:22Z</dc:date>
    </item>
    <item>
      <title>Re: internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2890525#M679273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;THANKS FOR THE INPUT. WELL I AM TRYING THIS CODE.. LETS SEE AFTER DEBUGGING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF reconciler IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        LOOP AT t_lookup.&lt;/P&gt;&lt;P&gt;READ TABLE t_lookup WITH KEY role+0(1) = 'R'&lt;/P&gt;&lt;P&gt;                      holder = 'RECONCILER'.&lt;/P&gt;&lt;P&gt;          if syst-subrc = 0.&lt;/P&gt;&lt;P&gt;           append t_lookup-account to t_acct.&lt;/P&gt;&lt;P&gt;          endif.&lt;/P&gt;&lt;P&gt;        ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 03:10:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2890525#M679273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T03:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: internal tables</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2890526#M679274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Just for your info,&lt;/P&gt;&lt;P&gt;this is going to be bad performance code since for all accounts u'll check if the reconciler has role+01 = 'R' and it might be that the table has 2000 records and only 2 records are there that match.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds&lt;/P&gt;&lt;P&gt;Nishant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Oct 2007 03:13:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/internal-tables/m-p/2890526#M679274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-18T03:13:33Z</dc:date>
    </item>
  </channel>
</rss>

