<?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: logic behind read statement and material in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-behind-read-statement-and-material/m-p/6563425#M1431685</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 TABLE IT_EKBEF INTO WA_EKBEF&lt;/P&gt;&lt;P&gt;WITH KEY EBELN = WA_FINAL-EBELN&lt;/P&gt;&lt;P&gt;EBELP = WA_FINAL-EBELP BINARY SEARCH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In read stsement u have to specify the Material key word.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 04 Feb 2010 11:07:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-02-04T11:07:39Z</dc:date>
    <item>
      <title>logic behind read statement and material</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-behind-read-statement-and-material/m-p/6563421#M1431681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SORT IT_EKBEF BY EBELN EBELP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE IT_EKBEF INTO WA_EKBEF&lt;/P&gt;&lt;P&gt;                 WITH KEY EBELN = WA_FINAL-EBELN&lt;/P&gt;&lt;P&gt;                          EBELP = WA_FINAL-EBELP BINARY SEARCH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;WA_FINAL-MENGE = WA_EKBEF-MENGE.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the above is my code............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am not able to read data frfom inetrnal table to WA_ekbef .......if i am not giving material in the selection screen.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i give material for specific po then i am getting data........Pls solve this problem........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how this read statement is linked with material........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any suggetions pls??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2010 10:07:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-behind-read-statement-and-material/m-p/6563421#M1431681</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-04T10:07:09Z</dc:date>
    </item>
    <item>
      <title>Re: logic behind read statement and material</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-behind-read-statement-and-material/m-p/6563422#M1431682</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;can you please provide more code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where can be find your code? &lt;/P&gt;&lt;P&gt;After Start-of-selection statement ?&lt;/P&gt;&lt;P&gt;In the same include ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Bg,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Attila&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2010 10:15:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-behind-read-statement-and-material/m-p/6563422#M1431682</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-04T10:15:11Z</dc:date>
    </item>
    <item>
      <title>Re: logic behind read statement and material</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-behind-read-statement-and-material/m-p/6563423#M1431683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deepthi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Probably your selection screen Material is not a part of your READ statement, but it might a dependent variable for your select query in fetching the data into your Internal Table IT_EKBEF. Check on what basis are we selecting data into that internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2010 10:33:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-behind-read-statement-and-material/m-p/6563423#M1431683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-04T10:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: logic behind read statement and material</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-behind-read-statement-and-material/m-p/6563424#M1431684</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 am fetching data inTO  IT_EKBE..............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM IT_EKBE I AM MOVING TO WA_EKBE.......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FROM WA_EKBE  I AM MOVING TO IT_EKBEF..............&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THEN I AM USING READ STATEMENT WITH KEYWORDS EBELN, EBELP..........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT WHEN I AM FETCHING IT_EKBE I AM FETCHING DATA BASED ON MATERIAL ALSO.........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IS THAT THE PROBLEM???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2010 11:03:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-behind-read-statement-and-material/m-p/6563424#M1431684</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-04T11:03:11Z</dc:date>
    </item>
    <item>
      <title>Re: logic behind read statement and material</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-behind-read-statement-and-material/m-p/6563425#M1431685</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 TABLE IT_EKBEF INTO WA_EKBEF&lt;/P&gt;&lt;P&gt;WITH KEY EBELN = WA_FINAL-EBELN&lt;/P&gt;&lt;P&gt;EBELP = WA_FINAL-EBELP BINARY SEARCH.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In read stsement u have to specify the Material key word.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2010 11:07:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-behind-read-statement-and-material/m-p/6563425#M1431685</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-04T11:07:39Z</dc:date>
    </item>
    <item>
      <title>Re: logic behind read statement and material</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/logic-behind-read-statement-and-material/m-p/6563426#M1431686</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you say you're fetching data into IT_EKBE based on the Material, then you need to pass the material right? Just get into debugging mode and check whether you select query fetches any data or not in both the scenarios like when passing or not passing the material data in the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you're getting data in both the cases, then we need to look more into the code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Suresh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 04 Feb 2010 15:45:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/logic-behind-read-statement-and-material/m-p/6563426#M1431686</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-02-04T15:45:34Z</dc:date>
    </item>
  </channel>
</rss>

