<?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: Problwm while selecting the data from table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662735#M1446565</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thomas, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the input. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zafar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is where i was getting to, you are looking for a incorrect condition that is causing the problem. Once you replace space with the right condition, your query will work as required. I think you can figure out that initial value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Mar 2010 11:53:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-17T11:53:38Z</dc:date>
    <item>
      <title>Problwm while selecting the data from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662725#M1446555</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; As per below code I want to pick the data into table  gi_qmma from qmma  where PSTER is not equal to blank foe that i have writen the below code but still the data is coming in GI_QMMA when the PSTER is blank.&lt;/P&gt;&lt;P&gt;what changes required in below code i dont want to pick data is PSTER is blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="23" type="ul"&gt;&lt;P&gt;       CODE ****************&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt; select QMNUM MANUM MNGRP MNCOD MATXT PSTER FROM QMMA INTO TABLE GI_QMMA for all entries in GI_QMEL&lt;/P&gt;&lt;P&gt;                        WHERE QMNUM = GI_QMEL-QMNUM&lt;/P&gt;&lt;P&gt;                        AND   MNGRP EQ 'VISIT'&lt;/P&gt;&lt;P&gt;                        AND   MNCOD EQ 'ENVI'&lt;/P&gt;&lt;P&gt;                        AND   PSTER NE ' '.&lt;/P&gt;&lt;P&gt;   IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;   SORT GI_QMMA ASCENDING BY PSTER.&lt;/P&gt;&lt;P&gt;******************************&lt;STRONG&gt;END OF BLOCK&lt;/STRONG&gt;********&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS,&lt;/P&gt;&lt;P&gt; ZAFAR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 11:02:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662725#M1446555</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T11:02:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problwm while selecting the data from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662726#M1446556</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;Try the Possible Ways:&lt;/P&gt;&lt;P&gt;select QMNUM MANUM MNGRP MNCOD MATXT PSTER FROM QMMA INTO TABLE GI_QMMA for all entries in GI_QMEL&lt;/P&gt;&lt;P&gt;WHERE QMNUM = GI_QMEL-QMNUM&lt;/P&gt;&lt;P&gt;AND MNGRP EQ 'VISIT'&lt;/P&gt;&lt;P&gt;AND MNCOD EQ 'ENVI'&lt;/P&gt;&lt;P&gt;AND PSTER NE  SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;AND PSTER (Use Not Qual symbol here)  SPACE&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check it in table PSTER  is a date field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: dharma raj on Mar 17, 2010 4:54 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 11:06:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662726#M1446556</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T11:06:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problwm while selecting the data from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662727#M1446557</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try with:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT ... WHERE AND PSTER NE space&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 11:07:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662727#M1446557</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2010-03-17T11:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: Problwm while selecting the data from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662728#M1446558</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;Hope below change could solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="23" type="ul"&gt;&lt;P&gt;CODE ****************&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;select QMNUM MANUM MNGRP MNCOD MATXT PSTER FROM QMMA INTO TABLE GI_QMMA for all entries in GI_QMEL&lt;/P&gt;&lt;P&gt;WHERE QMNUM = GI_QMEL-QMNUM&lt;/P&gt;&lt;P&gt;AND MNGRP EQ 'VISIT'&lt;/P&gt;&lt;P&gt;AND MNCOD EQ 'ENVI'&lt;/P&gt;&lt;P&gt;AND PSTER NE SPACE.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;SORT GI_QMMA ASCENDING BY PSTER.&lt;/P&gt;&lt;P&gt;******************************&lt;STRONG&gt;END OF BLOCK&lt;/STRONG&gt;********&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 11:13:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662728#M1446558</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T11:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problwm while selecting the data from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662729#M1446559</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; I have check according to given code PSTER NE SPACE but still it is picking the data from the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt; zafar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 11:15:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662729#M1446559</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T11:15:17Z</dc:date>
    </item>
    <item>
      <title>Re: Problwm while selecting the data from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662730#M1446560</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 not very familiar with this field PSTER. What data type is it? And are you sure the table contents for that field is space and there is nothing else present at the end of the field??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 11:25:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662730#M1446560</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T11:25:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problwm while selecting the data from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662731#M1446561</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; The data type of PSTER is PSTERMA  and it is in table QMMA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt; zafar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 11:28:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662731#M1446561</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T11:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problwm while selecting the data from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662732#M1446562</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;Check this internal table data in debug  mode GI_QMEL&lt;/P&gt;&lt;P&gt;AND PSTER (Use Not Qual symbol here) SPACE.&lt;/P&gt;&lt;P&gt;Check your table (QMMA)entry.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 11:33:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662732#M1446562</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T11:33:07Z</dc:date>
    </item>
    <item>
      <title>Re: Problwm while selecting the data from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662733#M1446563</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Zafar, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My instance of SAP is SCM APO and not ECC, so it does not contain the table you mentioned. My question was to ascertain if it is a character type of or a quantity type like numbers. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Mani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 11:37:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662733#M1446563</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T11:37:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problwm while selecting the data from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662734#M1446564</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;PSTER is of type DATS. I'll leave it to you to find out the initial value for date fields (It's not space).&lt;/P&gt;&lt;P&gt;Thomas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 11:50:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662734#M1446564</guid>
      <dc:creator>ThomasZloch</dc:creator>
      <dc:date>2010-03-17T11:50:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problwm while selecting the data from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662735#M1446565</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thomas, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the input. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Zafar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is where i was getting to, you are looking for a incorrect condition that is causing the problem. Once you replace space with the right condition, your query will work as required. I think you can figure out that initial value. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 11:53:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662735#M1446565</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T11:53:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problwm while selecting the data from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662736#M1446566</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Mani,&lt;/P&gt;&lt;P&gt;   I have try with     1:  PSTER NE ' '.&lt;/P&gt;&lt;P&gt;and                         2: PSTER NE SPACE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but both are not working in my case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards, &lt;/P&gt;&lt;P&gt; zafar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 12:04:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662736#M1446566</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T12:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Problwm while selecting the data from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662737#M1446567</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Zafar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls try 01/01/1900 instead of space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Mani&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 12:09:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662737#M1446567</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T12:09:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problwm while selecting the data from table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662738#M1446568</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Not solve hence close&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 18 Mar 2010 06:05:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problwm-while-selecting-the-data-from-table/m-p/6662738#M1446568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-18T06:05:18Z</dc:date>
    </item>
  </channel>
</rss>

