Oracle Web Services On Demand Troubleshooting Guide > Error Codes: Causes and Solutions >

SBL-DAT-00144


This error code has no error symbol.

Generic Error Message

Could not find 'Domain Entity' named 'InputName'. This object is inactive or nonexistent (SBL-DAT-00144).

Causes and Solutions

The object name does not exist in Oracle CRM On Demand.

Error Message

Could not find 'Domain Entity' named 'Partner Type'. This object is inactive or nonexistent (SBL-DAT-00144).

Incorrect SOAP Request

In the following incorrect SOAP request, the object name Partner Type is not defined in Oracle CRM On Demand:

<?xml version="1.0" encoding="UTF-8" standalone="no"?>

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">

   <soap:Header>

      <wsse:Security>

         <wsse:UsernameToken>

            <wsse:Username>%%%USERNAME%%%</wsse:Username>

            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">%%%PASSWORD%%%</wsse:Password>

         </wsse:UsernameToken>

      </wsse:Security>

   </soap:Header>

   <soap:Body>

      <ListsWS_GetLists_Input xmlns="urn:crmondemand/ws/lists/">

         <ObjectName>Partner Type</ObjectName>

      </ListsWS_GetLists_Input>

   </soap:Body>

</soap:Envelope>

NOTE:  The <ObjectName> element does not take query expressions, and the name is case sensitive.

Resolving Error SBL-DAT-00144

Check the Web service request, and verify that the name of the required object matches an object name in Oracle CRM On Demand. For more information on mapping display names to Web service API object names, see Oracle Web Services On Demand Guide.

Correcting the SOAP Request

To correct the SOAP request, change Partner Type to PartnerType.

NOTE:  For more information on how the Partner Type object is mapped to the name PartnerType, Oracle Web Services On Demand Guide.

<?xml version="1.0" encoding="UTF-8" standalone="no"?>

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd" xmlns:xsd="http://www.w3.org/2001/XMLSchema">

   <soap:Header>

      <wsse:Security>

         <wsse:UsernameToken>

            <wsse:Username>%%%USERNAME%%%</wsse:Username>

            <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">%%%PASSWORD%%%</wsse:Password>

         </wsse:UsernameToken>

      </wsse:Security>

   </soap:Header>

   <soap:Body>

      <ListsWS_GetLists_Input xmlns="urn:crmondemand/ws/lists/">

         <ObjectName>PartnerType</ObjectName>

      </ListsWS_GetLists_Input>

   </soap:Body>

</soap:Envelope>

Oracle Web Services On Demand Troubleshooting Guide Copyright © 2014, Oracle and/or its affiliates. All rights reserved. Legal Notices.