Hi Support,
I am trying to create the XML payload HR(Human Resources)> HRApplicantEducationType API but when i hit the API it's showing me "The stored procedure 'taCreateApplicantEducation' doesn't exist.".
Here is the input XML :-
<eConnect xmlns:xsd="">www.w3.org/.../XMLSchema" xmlns:xsi="">www.w3.org/.../XMLSchema-instance">
<HRApplicantEducationType>
<eConnectProcessInfo xsi:nil="true" />
<taRequesterTrxDisabler_Items xsi:nil="true" />
<taCreateApplicantEducation>
<LLASTNAME_I>LASTNAMESDRAM</LLASTNAME_I>
<FFIRSTNAME_I>LASTNAME1q</FFIRSTNAME_I>
<APPLICANTNUMBER_I>12</APPLICANTNUMBER_I>
<ISEQUENCENUMBER_I>123</ISEQUENCENUMBER_I>
</taCreateApplicantEducation>
</HRApplicantEducationType>
</eConnect>
Output error message :
<s:Envelope xmlns:s="">schemas.xmlsoap.org/.../">
<s:Body>
<s:Fault>
<faultcode>s:Client</faultcode>
<faultstring xml:lang="en-US">The creator of this fault did not specify a Reason.</faultstring>
<detail>
<eConnectFault xmlns="">schemas.datacontract.org/.../Microsoft.Dynamics.GP.eConnect" xmlns:i="">www.w3.org/.../XMLSchema-instance">
<ExceptionType>System.InvalidOperationException</ExceptionType>
<Message>The stored procedure 'taCreateApplicantEducation' doesn't exist.</Message>
<Source>System.Data</Source>
<StackTrace>at System.Data.SqlClient.SqlCommand.DeriveParameters()
at System.Data.SqlClient.SqlCommandBuilder.DeriveParameters(SqlCommand command)
at Microsoft.Dynamics.GP.eConnect.EntityMessageProcessor.ExtractStoredProcedureParameters(EntityMessage message, IEnumerable`1 xmlList)
at Microsoft.Dynamics.GP.eConnect.EntityMessageProcessor.ExecuteSqlCommands(XElement transactionNode, EntityMessage message)
at Microsoft.Dynamics.GP.eConnect.eConnectMethods.ProcessMessageImport(EntityMessage message)
at Microsoft.Dynamics.GP.eConnect.eConnectMethods.EntityImportImplementation(String connectionString, String sXML, Boolean isTransaction)
at Microsoft.Dynamics.GP.eConnect.eConnectMethods.CreateEntity(String connectionString, String sXML)
at Microsoft.Dynamics.GP.eConnect.Service.CreateEntity(String ConnectionString, String sXML)</StackTrace>
</eConnectFault>
</detail>
</s:Fault>
</s:Body>
</s:Envelope>
Please note : HR(Human Resources) stored procedure not found in sql DB as well.
I am pointing the right database because apart from HR all payload are working.
Please let me now what i am missing.