<?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: select issue : not getting output. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829061#M43430</link>
    <description>&lt;P&gt;In the selection screen i dont want ebelp...then how can i pass ebelp ?&lt;/P&gt;</description>
    <pubDate>Sun, 10 Feb 2019 06:56:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2019-02-10T06:56:10Z</dc:date>
    <item>
      <title>select issue : not getting output.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829058#M43427</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;i am doing something wrong in this code ...i guess i am going wrong in select query..please check n let me know where i am going wrong.&lt;/P&gt;
  &lt;P&gt;Data : it_ekbe type table of ekbe,&lt;BR /&gt;wa_ekbe type ekbe.&lt;BR /&gt;select-options : s_ebeln for wa_ekbe-ebeln.&lt;/P&gt;
  &lt;P&gt;select ebeln ebelp bewtp gjahr from ekbe into corresponding fields of table it_ekbe where ebeln in s_ebeln and ebelp = wa_ekbe-ebelp and bewtp = 'E'.&lt;/P&gt;
  &lt;P&gt;loop at it_ekbe into wa_ekbe.&lt;BR /&gt;write:/ wa_ekbe-ebeln ,wa_ekbe-ebelp ,wa_ekbe-bewtp ,wa_ekbe-gjahr.&lt;BR /&gt;endloop.&lt;/P&gt;</description>
      <pubDate>Sat, 09 Feb 2019 17:43:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829058#M43427</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-02-09T17:43:41Z</dc:date>
    </item>
    <item>
      <title>Re: select issue : not getting output.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829059#M43428</link>
      <description>&lt;P&gt;Impossible to answer as we don't know what's in your EKBE, nor do we know what you've given in s_ebeln.&lt;/P&gt;</description>
      <pubDate>Sat, 09 Feb 2019 22:14:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829059#M43428</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2019-02-09T22:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: select issue : not getting output.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829060#M43429</link>
      <description>&lt;P&gt;Change your query like below , It will work.&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Tables:ekbe.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data : it_ekbe type table of ekbe,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;            wa_ekbe type ekbe.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select-options : s_ebeln for ekbe-ebeln,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;                           s_ebelp for ekbe-ebelp.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select ebeln ebelp bewtp gjahr from ekbe into corresponding fields of table it_ekbe where ebeln in s_ebeln&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;                                                                                                                                                    and ebelp in s_ebelp &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;                                                                                                                                                     and bewtp = 'E'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;loop at it_ekbe into wa_ekbe.&lt;BR /&gt;write:/ wa_ekbe-ebeln ,wa_ekbe-ebelp ,wa_ekbe-bewtp ,wa_ekbe-gjahr.&lt;BR /&gt;endloop.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Feb 2019 06:52:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829060#M43429</guid>
      <dc:creator>former_member291971</dc:creator>
      <dc:date>2019-02-10T06:52:19Z</dc:date>
    </item>
    <item>
      <title>Re: select issue : not getting output.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829061#M43430</link>
      <description>&lt;P&gt;In the selection screen i dont want ebelp...then how can i pass ebelp ?&lt;/P&gt;</description>
      <pubDate>Sun, 10 Feb 2019 06:56:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829061#M43430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2019-02-10T06:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: select issue : not getting output.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829062#M43431</link>
      <description>&lt;P&gt;Then you dont want to pass ebelp in selection screen, it will automatically fetch all the values relevant to Ebeln(Purchase Order).&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Tables:ekbe.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Data : it_ekbe type table of ekbe,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;          wa_ekbe type ekbe.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select-options : s_ebeln for ekbe-ebeln obligatory.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;select ebeln ebelp bewtp gjahr from ekbe into corresponding fields of table it_ekbe where ebeln in s_ebeln&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;                                                                                                                                                   and bewtp = 'E'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;loop at it_ekbe into wa_ekbe.&lt;BR /&gt;write:/ wa_ekbe-ebeln ,wa_ekbe-ebelp ,wa_ekbe-bewtp ,wa_ekbe-gjahr.&lt;BR /&gt;endloop.&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 10 Feb 2019 07:18:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829062#M43431</guid>
      <dc:creator>former_member291971</dc:creator>
      <dc:date>2019-02-10T07:18:40Z</dc:date>
    </item>
    <item>
      <title>Re: select issue : not getting output.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829063#M43432</link>
      <description>&lt;P&gt;Your query condition makes no sense at this place:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;... AND ebelp = wa_ekbe-ebelp ...&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;because WA_EKBE has not been initialized yet.&lt;/P&gt;</description>
      <pubDate>Sun, 10 Feb 2019 08:09:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829063#M43432</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-02-10T08:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: select issue : not getting output.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829064#M43433</link>
      <description>&lt;P&gt;The most important question is what do you want to achieve, in plain English words?&lt;/P&gt;</description>
      <pubDate>Sun, 10 Feb 2019 08:23:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-issue-not-getting-output/m-p/829064#M43433</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-02-10T08:23:41Z</dc:date>
    </item>
  </channel>
</rss>

