<?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 Data not coming when debugging in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619660#M2012475</link>
    <description>&lt;P&gt;Hello all,&lt;/P&gt;
  &lt;P&gt;I have applied a select query to ekpo using inner join as INNER JOIN ekko AS b ON b~ebeln EQ a~ebeln&lt;/P&gt;
  &lt;P&gt;and tried putting it in lt_ekko1 but still cant get the data inlt_ekko1 while debugging. Can anyone explain in detail why isn't the data coming&lt;/P&gt;</description>
    <pubDate>Thu, 06 Oct 2022 06:48:07 GMT</pubDate>
    <dc:creator>uzair_1234</dc:creator>
    <dc:date>2022-10-06T06:48:07Z</dc:date>
    <item>
      <title>Data not coming when debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619660#M2012475</link>
      <description>&lt;P&gt;Hello all,&lt;/P&gt;
  &lt;P&gt;I have applied a select query to ekpo using inner join as INNER JOIN ekko AS b ON b~ebeln EQ a~ebeln&lt;/P&gt;
  &lt;P&gt;and tried putting it in lt_ekko1 but still cant get the data inlt_ekko1 while debugging. Can anyone explain in detail why isn't the data coming&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 06:48:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619660#M2012475</guid>
      <dc:creator>uzair_1234</dc:creator>
      <dc:date>2022-10-06T06:48:07Z</dc:date>
    </item>
    <item>
      <title>Re: Data not coming when debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619661#M2012476</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;can you please show us the full SELECT-statement in ABAP?&lt;/P&gt;&lt;P&gt;Kind regards&lt;BR /&gt;Jens&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 06:57:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619661#M2012476</guid>
      <dc:creator>Jeansy</dc:creator>
      <dc:date>2022-10-06T06:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: Data not coming when debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619662#M2012477</link>
      <description>&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;Sure here is the query&lt;/P&gt;&lt;P&gt;SELECT DISTINCT&lt;BR /&gt;         a~ebeln,&lt;BR /&gt;         a~ebelp,&lt;BR /&gt;         a~matnr,&lt;BR /&gt;         a~werks,&lt;BR /&gt;         a~loekz,&lt;BR /&gt;         a~elikz,&lt;BR /&gt;         a~eglkz,&lt;BR /&gt;         a~menge,&lt;BR /&gt;         b~aedat&lt;BR /&gt;    FROM ekpo AS a&lt;BR /&gt;    INNER JOIN ekko AS b ON b~ebeln EQ a~ebeln&lt;BR /&gt;    INTO TABLE @DATA(lt_ekko1)&lt;BR /&gt;               WHERE  a~matnr IN @p_matnr&lt;BR /&gt;                AND a~werks IN @p_werks&lt;BR /&gt;*                  AND c~bwart IN ('641','642')&lt;BR /&gt;                AND a~elikz &amp;lt;&amp;gt; 'X'&lt;BR /&gt;                AND a~eglkz &amp;lt;&amp;gt; 'X'&lt;BR /&gt;                AND b~aedat BETWEEN @p_sdate&lt;BR /&gt;                AND @p_edate.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 07:47:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619662#M2012477</guid>
      <dc:creator>uzair_1234</dc:creator>
      <dc:date>2022-10-06T07:47:05Z</dc:date>
    </item>
    <item>
      <title>Re: Data not coming when debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619663#M2012478</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AND b~aedat BETWEEN @p_sdate&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;This doesn't look okay from my perspective. Is this a select-option on the selection screen? Then just use the IN-operator for the selection.&lt;/P&gt;&lt;P&gt;Kind regards&lt;BR /&gt;Jens&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 08:13:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619663#M2012478</guid>
      <dc:creator>Jeansy</dc:creator>
      <dc:date>2022-10-06T08:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Data not coming when debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619664#M2012479</link>
      <description>&lt;P&gt;As it says to the left of the "Your answer" editor&lt;/P&gt;&lt;H3&gt;Before answering&lt;/H3&gt;&lt;P&gt;You should only submit an answer when you are proposing a solution to the poster's problem. If you want the poster to clarify the question or provide more information, please leave a comment instead, requesting additional details. When answering, please include specifics, such as step-by-step instructions, context for the solution, and links to useful resources. Also, please make sure that your answer complies with our Rules of Engagement.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 09:55:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619664#M2012479</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2022-10-06T09:55:08Z</dc:date>
    </item>
    <item>
      <title>Re: Data not coming when debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619665#M2012480</link>
      <description>&lt;P&gt;You need the next line. It's badly formatted.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;AND b~aedat BETWEEN @p_sdate AND @p_edate.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Of course, since we don't know what's in the database, nor what's in p_matnr and p_werks, it's very hard to answer the question.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 09:57:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619665#M2012480</guid>
      <dc:creator>matt</dc:creator>
      <dc:date>2022-10-06T09:57:51Z</dc:date>
    </item>
    <item>
      <title>Re: Data not coming when debugging</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619666#M2012481</link>
      <description>&lt;P&gt;Oh you're right.&lt;/P&gt;&lt;P&gt;As select-options and parameters seem to have the same prefix, I did not see this in the non-formatted-code.&lt;/P&gt;&lt;P&gt;Thank you,  &lt;SPAN class="mention-scrubbed"&gt;matthew.billingham&lt;/SPAN&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 10:00:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/data-not-coming-when-debugging/m-p/12619666#M2012481</guid>
      <dc:creator>Jeansy</dc:creator>
      <dc:date>2022-10-06T10:00:19Z</dc:date>
    </item>
  </channel>
</rss>

