<?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 st. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-st/m-p/3126199#M742549</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may have to run pa_empno through a conversion exit to pad it with the correct number of leading zeroes. Look at FMs &amp;lt;b&amp;gt;conversion_exit_ alpha_input&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;conversion_exit_ alpha_output&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 18 Nov 2007 16:16:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-18T16:16:32Z</dc:date>
    <item>
      <title>select st.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-st/m-p/3126195#M742545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have 2 records in my table if I write the below select st. I'm not getting the records&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM z_emp INTO CORRESPONDING FIELDS OF TABLE it_tab&lt;/P&gt;&lt;P&gt; WHERE z_uname = pa_empno and z_date = pa_date.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but if I write the select st. without where clause as below I'm getting the records that I have &lt;/P&gt;&lt;P&gt;SELECT * FROM z_emp INTO CORRESPONDING FIELDS OF TABLE it_tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please explain why? Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Nov 2007 10:04:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-st/m-p/3126195#M742545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-18T10:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: select st.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-st/m-p/3126196#M742546</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shaheen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM z_emp INTO CORRESPONDING FIELDS OF TABLE it_tab&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;WHERE z_uname = pa_empno and z_date = pa_date.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Probably... u r not getting the records becoz the records exist in z_emp table which matches ur requirement z_uname = pa_empno and z_date = pa_date&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try to get it manually ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or look whether the records presents or not as per ur criteria through SE11 ...&lt;/P&gt;&lt;P&gt;Display z_emp nd try to see the records in that... enter ur criteria in parameters here..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will solve ur problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward points if useful...&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;ilesh 24x7&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Nov 2007 10:15:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-st/m-p/3126196#M742546</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-18T10:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: select st.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-st/m-p/3126197#M742547</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) Are you passing the right field in the select query (Is Empno and Username the same field or by mistake you are comparing UNAME with the Employee Number field ) &lt;/P&gt;&lt;P&gt;2) Check if the data is present in the database with the parameters that you are using for testing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Nov 2007 10:18:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-st/m-p/3126197#M742547</guid>
      <dc:creator>former_member195698</dc:creator>
      <dc:date>2007-11-18T10:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: select st.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-st/m-p/3126198#M742548</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; Check Z_EMP is having the records with date pa_date you are passing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Nov 2007 12:13:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-st/m-p/3126198#M742548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-18T12:13:18Z</dc:date>
    </item>
    <item>
      <title>Re: select st.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-st/m-p/3126199#M742549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You may have to run pa_empno through a conversion exit to pad it with the correct number of leading zeroes. Look at FMs &amp;lt;b&amp;gt;conversion_exit_ alpha_input&amp;lt;/b&amp;gt; and &amp;lt;b&amp;gt;conversion_exit_ alpha_output&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Nov 2007 16:16:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-st/m-p/3126199#M742549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-18T16:16:32Z</dc:date>
    </item>
    <item>
      <title>Re: select st.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-st/m-p/3126200#M742550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shaheen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In you question you said that you have 2 record in the table. Does that mean there are only two records in the table or 2 records that satisfy the condition in where clause.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In both the cases.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The only thing can be that parameters that you are selecting in the SELECT statement does not match.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As previous replies suggested check out in SE16 Data Browser. If any concerns please reply.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 Nov 2007 17:34:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-st/m-p/3126200#M742550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-18T17:34:03Z</dc:date>
    </item>
  </channel>
</rss>

