<?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 READ TABLE itab WITH KEY in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-table-itab-with-key/m-p/3773597#M908039</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem with reading internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generally it is ok to read internal table with one key but&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now I have an internal table based on the table  has plural primary keys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this case I can I let it read the internal table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex) General example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE itab WITH KEY valiable1 = value1.  &amp;lt;-- No problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex) What I want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE itab WITH KEY valiable1 = value1 AND valiable2 = value2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried to use parenthesis like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE itab WITH KEY ( valiable1 = value1 AND valiable2 = value2 ) but it didn't work either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Apr 2008 01:50:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-25T01:50:57Z</dc:date>
    <item>
      <title>READ TABLE itab WITH KEY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-table-itab-with-key/m-p/3773597#M908039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a problem with reading internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Generally it is ok to read internal table with one key but&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now I have an internal table based on the table  has plural primary keys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this case I can I let it read the internal table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex) General example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE itab WITH KEY valiable1 = value1.  &amp;lt;-- No problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex) What I want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE itab WITH KEY valiable1 = value1 AND valiable2 = value2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried to use parenthesis like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE itab WITH KEY ( valiable1 = value1 AND valiable2 = value2 ) but it didn't work either.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 01:50:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-table-itab-with-key/m-p/3773597#M908039</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T01:50:57Z</dc:date>
    </item>
    <item>
      <title>Re: READ TABLE itab WITH KEY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-table-itab-with-key/m-p/3773598#M908040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;God I erased 'AND' then it worked.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 01:52:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-table-itab-with-key/m-p/3773598#M908040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T01:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: READ TABLE itab WITH KEY</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-table-itab-with-key/m-p/3773599#M908041</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;Use Read table itab with key variable1 = value1 variable2 = value2.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Dont use AND instead give space....&lt;/P&gt;&lt;P&gt;erase AND it will work&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;P&gt;sravani&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;PLZ REWARD POINTS&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sravani batchu on Apr 25, 2008 5:34 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 03:34:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-table-itab-with-key/m-p/3773599#M908041</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T03:34:09Z</dc:date>
    </item>
  </channel>
</rss>

