<?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: INfotype not found error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039380#M1350625</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can u provide data at runtime for all the variables and sy-subrc?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;infty, tclas, dbtab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 11 Aug 2009 12:34:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-11T12:34:51Z</dc:date>
    <item>
      <title>INfotype not found error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039373#M1350618</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi expert.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When i try to create a new employee in PA30.&lt;/P&gt;&lt;P&gt;I got error that infotype is not found in below function:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'HR_INFOTYPE_DATABASETABLE_GET'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        infty           = infty&lt;/P&gt;&lt;P&gt;        tclas           = tclas&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        dbname          = dbtab&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        entry_not_found = 1&lt;/P&gt;&lt;P&gt;        OTHERS          = 2.&lt;/P&gt;&lt;P&gt;    IF sy-subrc &amp;lt;&amp;gt; 0 OR dbtab = 'TEVEN' OR dbtab IS INITIAL.&lt;/P&gt;&lt;P&gt;      RAISE infty_not_found.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; REgards&lt;/P&gt;&lt;P&gt;Anwar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 11:47:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039373#M1350618</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-11T11:47:23Z</dc:date>
    </item>
    <item>
      <title>Re: INfotype not found error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039374#M1350619</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;usually you enter a new person by processing a hiring action (at least infotypes 0000, 0002 and 0001) and infotype 0003 will be created automatically.&lt;/P&gt;&lt;P&gt;Ask the HR people how to do it in you special case.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 11:53:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039374#M1350619</guid>
      <dc:creator>former_member226519</dc:creator>
      <dc:date>2009-08-11T11:53:55Z</dc:date>
    </item>
    <item>
      <title>Re: INfotype not found error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039375#M1350620</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;The table being referenced in this FM can be maintained from SM30.&lt;/P&gt;&lt;P&gt;Get the Infotype number and ask ur Func consultant to maintain entry for that Infotype.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T777D.. This table is usually used in data exchange for HR data.. However there could be some data being posted making use of entries inthis table.&lt;/P&gt;&lt;P&gt;Just amintian those Infotypes and ur problem shud be resolved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Revert if u need more.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 11:55:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039375#M1350620</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-11T11:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: INfotype not found error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039376#M1350621</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which is the Infotype you are passing in the INFY param? is this infotype already configured?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;also while creating an Employee you first have to create hiring from action infotype 0000. are all these done?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ags.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 12:07:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039376#M1350621</guid>
      <dc:creator>agnihotro_sinha2</dc:creator>
      <dc:date>2009-08-11T12:07:18Z</dc:date>
    </item>
    <item>
      <title>Re: INfotype not found error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039377#M1350622</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When i am trying to change any dataof any user who is hired and have entry in 0000,through pa30,as soon as i click on save button,dumb error comes..upto 1 hr earlier it was working fine,,is thier any error for country grouping??? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A RAISE statement in the program "SAPLHRAC" raised the exception                              |&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;condition "INFTY_NOT_FOUND".&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Since the exception was not intercepted by a superior&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;program, processing was terminated.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Short description of exception condition:&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;For detailed documentation of the exception condition, use&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Transaction SE37 (Function Library). You can take the called&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;|    function module from the display of active calls.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 12:12:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039377#M1350622</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-11T12:12:40Z</dc:date>
    </item>
    <item>
      <title>Re: INfotype not found error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039378#M1350623</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;Go to the error in debug mode and atleast check the infotype number. That will atleast guide u towards the problem..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 12:18:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039378#M1350623</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-11T12:18:58Z</dc:date>
    </item>
    <item>
      <title>Re: INfotype not found error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039379#M1350624</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;Its giving error in for all infotype,when i select any infotype from PA30 after selecting any employee,when i press save button..it gives error..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 12:22:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039379#M1350624</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-11T12:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: INfotype not found error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039380#M1350625</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can u provide data at runtime for all the variables and sy-subrc?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;infty, tclas, dbtab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 12:34:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039380#M1350625</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-11T12:34:51Z</dc:date>
    </item>
    <item>
      <title>Re: INfotype not found error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039381#M1350626</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,PLs find as you required..&lt;/P&gt;&lt;P&gt;sy-Subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;INFTY&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;3333&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;0001&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;0000&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;0000&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;TCLAS&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;A&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;4&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;1&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;0&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;DBTAB&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;222222222222222222222222222222&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;000000000000000000000000000000&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;000000000000000000000000000000&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;|    000000000000000000000000000000&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Aug 2009 12:43:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039381#M1350626</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-11T12:43:05Z</dc:date>
    </item>
    <item>
      <title>Re: INfotype not found error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039382#M1350627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It was some changes done by basis guy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Aug 2009 07:14:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/infotype-not-found-error/m-p/6039382#M1350627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-12T07:14:40Z</dc:date>
    </item>
  </channel>
</rss>

