<?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 is not selecting in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040671#M1500596</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 add &lt;/P&gt;&lt;P&gt;IF NOT gt_measure_docs[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;        SELECT * FROM imrg INTO TABLE gt_imrg&lt;/P&gt;&lt;P&gt;          FOR ALL ENTRIES IN gt_measure_docs&lt;/P&gt;&lt;P&gt;          WHERE mdocm = gt_measure_docs-ref_obj.  --&amp;gt; GT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Madhukar Shetty on Jul 7, 2010 2:27 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 Jul 2010 12:27:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-07-07T12:27:14Z</dc:date>
    <item>
      <title>Select is not selecting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040670#M1500595</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have written a select statement that although the table is populated with values, it is not selecting the records based upon the field i have specificed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
TYPES: BEGIN OF measure_docs,
        ref_obj TYPE imrc_mdocm,
        nodeid     TYPE diohfw_nodeid,
  END OF measure_docs.

        SELECT ref_obj nodeid FROM diohfw_nodes INTO TABLE gt_measure_docs
          FOR ALL ENTRIES IN gt_diohfw_nodes
          WHERE sup_nodeid = gt_diohfw_nodes-nodeid
          AND   type       = 'MDC'.
     

      IF NOT gt_measure_docs IS INITIAL.
        SELECT * FROM imrg INTO TABLE gt_imrg
          FOR ALL ENTRIES IN gt_measure_docs
          WHERE mdocm = lt_measure_docs-ref_obj.

      ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have 15 entries in my gt_measure_docs table...  i can copy the paste into se11 IMRG and see the values in the data display.&lt;/P&gt;&lt;P&gt;the field mdocm has an ALPHA conversion on so i tried adding the 00000000000000000234 to convert to 234, but it still cannot find the entries...   i am sure i have missed something simple....  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i typed the "ref_obj" as imrc_mdocm but still no dice! :o(  any ideas what i have missed?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jul 2010 12:19:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040670#M1500595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-07T12:19:43Z</dc:date>
    </item>
    <item>
      <title>Re: Select is not selecting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040671#M1500596</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 add &lt;/P&gt;&lt;P&gt;IF NOT gt_measure_docs[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;P&gt;        SELECT * FROM imrg INTO TABLE gt_imrg&lt;/P&gt;&lt;P&gt;          FOR ALL ENTRIES IN gt_measure_docs&lt;/P&gt;&lt;P&gt;          WHERE mdocm = gt_measure_docs-ref_obj.  --&amp;gt; GT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Madhukar Shetty on Jul 7, 2010 2:27 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jul 2010 12:27:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040671#M1500596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-07T12:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: Select is not selecting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040672#M1500597</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
      IF NOT gt_measure_docs IS INITIAL. " &amp;lt;- gt_measure_docs
        SELECT * FROM imrg INTO TABLE gt_imrg
          FOR ALL ENTRIES IN gt_measure_docs " &amp;lt;- gt_measure_docs
          WHERE mdocm = lt_measure_docs-ref_obj. " &amp;lt;- lt_measure_docs ??? are you sure ?
 
      ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jul 2010 12:27:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040672#M1500597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-07T12:27:43Z</dc:date>
    </item>
    <item>
      <title>Re: Select is not selecting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040673#M1500598</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ignore &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Maroz &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt; - Well spotted&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Keshav.T on Jul 7, 2010 6:01 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jul 2010 12:30:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040673#M1500598</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2010-07-07T12:30:38Z</dc:date>
    </item>
    <item>
      <title>Re: Select is not selecting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040674#M1500599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry!  that was still in there as i had loop round gt_measure_docs then called CONVERSION_EXIT_ALPHA_OUTPUT and changed the number and appended to a lt_measure_Docs as it was not working...  i just did not change the LT back to GT for all of them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have now amended the code and it still does not like it.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jul 2010 12:47:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040674#M1500599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-07T12:47:06Z</dc:date>
    </item>
    <item>
      <title>Re: Select is not selecting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040675#M1500600</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you checked your data type/length mismatch?  40 characters in one table, 20 in the other...is it not matching because of that?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jul 2010 13:36:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040675#M1500600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-07T13:36:13Z</dc:date>
    </item>
    <item>
      <title>Re: Select is not selecting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040676#M1500601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you show your final code that does not work?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prasenjit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 Jul 2010 20:32:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040676#M1500601</guid>
      <dc:creator>prasenjit_sharma</dc:creator>
      <dc:date>2010-07-07T20:32:08Z</dc:date>
    </item>
    <item>
      <title>Re: Select is not selecting</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040677#M1500602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i linked up on another field and via another table...  works better now..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks anyway!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Jul 2010 11:57:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-is-not-selecting/m-p/7040677#M1500602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-08T11:57:53Z</dc:date>
    </item>
  </channel>
</rss>

