<?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: Control table error, need a numeric value in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-table-error-need-a-numeric-value/m-p/1789360#M339663</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Javier,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Check whether the datatype of PERNR is same in  zthrca002 and Pa0001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Small observation donot give * in the select statement take the required fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Dec 2006 15:31:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-22T15:31:41Z</dc:date>
    <item>
      <title>Control table error, need a numeric value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-table-error-need-a-numeric-value/m-p/1789359#M339662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;im using an internal table that is displayed via control table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;im displaying employee number (pa0001-pernr)&lt;/P&gt;&lt;P&gt;loans, save plan etc,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my problem is that when i add pa0001 table to my SeLect, an error is displayed in the control table that reads "You need to enter a numeric number"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I add that table (pa0001)  for getting the sname field (employee full name)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   ti_news&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data: BEGIN OF ti_new occurs 0.&lt;/P&gt;&lt;P&gt;DATA: status   like zthrca001-status,&lt;/P&gt;&lt;P&gt;           sname    like pa0001-sname,&lt;/P&gt;&lt;P&gt;           marca(2),&lt;/P&gt;&lt;P&gt;      END of ti_new.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT *&lt;/P&gt;&lt;P&gt;INTO   CORRESPONDING FIELDS OF TABLE ti_news&lt;/P&gt;&lt;P&gt;FROM   zthrca002 inner join zthrca001&lt;/P&gt;&lt;P&gt;  ON  ( zthrca002&lt;SUB&gt;idmov = zthrca001&lt;/SUB&gt;idmov )&lt;/P&gt;&lt;P&gt;  &amp;lt;b&amp;gt;inner join Pa0001&lt;/P&gt;&lt;P&gt;  ON  ( zthrca002&lt;SUB&gt;PERNR = Pa0001&lt;/SUB&gt;PERNR )&amp;lt;/b&amp;gt;  WHERE zthrca001~status = 'P'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i remove the inner join with pa0001 the error disapear, but i need the sname field&lt;/P&gt;&lt;P&gt;=( any help?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 15:24:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-table-error-need-a-numeric-value/m-p/1789359#M339662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T15:24:58Z</dc:date>
    </item>
    <item>
      <title>Re: Control table error, need a numeric value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-table-error-need-a-numeric-value/m-p/1789360#M339663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Javier,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Check whether the datatype of PERNR is same in  zthrca002 and Pa0001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Small observation donot give * in the select statement take the required fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 15:31:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-table-error-need-a-numeric-value/m-p/1789360#M339663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T15:31:41Z</dc:date>
    </item>
    <item>
      <title>Re: Control table error, need a numeric value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-table-error-need-a-numeric-value/m-p/1789361#M339664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the datatype is the same PERSNO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i remove the * from the SELECT and only write the fields that i need and the error is still displayed &lt;/P&gt;&lt;P&gt;=(&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 15:43:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-table-error-need-a-numeric-value/m-p/1789361#M339664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T15:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: Control table error, need a numeric value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-table-error-need-a-numeric-value/m-p/1789362#M339665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Javier,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Refer this Link you may get an idea where you have made the mistake ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/inner-joins.htm" target="test_blank"&gt;http://www.sap-img.com/abap/inner-joins.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Paste your latest code &amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Santosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 15:48:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-table-error-need-a-numeric-value/m-p/1789362#M339665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T15:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: Control table error, need a numeric value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-table-error-need-a-numeric-value/m-p/1789363#M339666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   TI news&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data: BEGIN OF ti_news occurs 0.&lt;/P&gt;&lt;P&gt;      include structure zthrca002.&lt;/P&gt;&lt;P&gt;DATA: status   like zthrca001-status,&lt;/P&gt;&lt;P&gt;          sname    like pa0001-sname,&lt;/P&gt;&lt;P&gt;          marca(2),&lt;/P&gt;&lt;P&gt;         END of ti_news.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT status sname zthrca001&lt;SUB&gt;idmov zthrca002&lt;/SUB&gt;pernr fecha pahorro&lt;/P&gt;&lt;P&gt;INTO   CORRESPONDING FIELDS OF TABLE ti_news&lt;/P&gt;&lt;P&gt;FROM   zthrca002 inner join zthrca001&lt;/P&gt;&lt;P&gt;  ON  ( zthrca002&lt;SUB&gt;idmov = zthrca001&lt;/SUB&gt;idmov )&lt;/P&gt;&lt;P&gt;  inner join Pa0001&lt;/P&gt;&lt;P&gt;  ON  ( zthrca002&lt;SUB&gt;PERNR = Pa0001&lt;/SUB&gt;PERNR )&lt;/P&gt;&lt;P&gt;  WHERE zthrca001~status = 'P'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the error do not happen on runtime, (i can conpile and run)&lt;/P&gt;&lt;P&gt;the error appears when im trying to do something after the ti_news is displayed on the control table&lt;/P&gt;&lt;P&gt;( u need to enter a numeric value)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 16:06:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-table-error-need-a-numeric-value/m-p/1789363#M339666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T16:06:15Z</dc:date>
    </item>
    <item>
      <title>Re: Control table error, need a numeric value</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/control-table-error-need-a-numeric-value/m-p/1789364#M339667</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 had a seem mistake you must check the control table atributes sometimes when you use control table wizard it puts the char atributes as numeric and you need to change it manually.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 16:49:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/control-table-error-need-a-numeric-value/m-p/1789364#M339667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T16:49:01Z</dc:date>
    </item>
  </channel>
</rss>

