Создание клиента в SAP CPQ с помощью API - PullRequest
0 голосов
/ 24 октября 2019

Я пытался создать клиента с помощью SOAP API в SAP CPQ, используя приведенный ниже пример

https://help.webcomcpq.com/doku.php?id=appendixd:customeradministrationwebmethod:customeradministrationinputparameters

Но я получил ответ

<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
   <soap:Body>
      <CustomerAdministrationResponse xmlns="http://webcominc.com/">
         <CustomerAdministrationResult>
            <Result xmlns="">
               <Status>NOK</Status>
               <Message>ADD failed</Message>
               <Errors>
                  <Error>
                     <ErrorCode>104011</ErrorCode>
                     <Description>No Customers Provided</Description>
                  </Error>
               </Errors>
            </Result>
         </CustomerAdministrationResult>
      </CustomerAdministrationResponse>
   </soap:Body>
</soap:Envelope>

У кого-нибудь работаетпример

...