FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: createPartNumberResponse

Description

A createPartNumberResponse message contains an element of createPartNumberResponseType.

Each part number in the createPartNumberRequest is added as an atomic unit; adding each either succeeds or fails.

Derived By

Type createPartNumberResponseType

Content Model

Contains elements as defined in the following table.

Component  Type  Occurs  Description 
    1..1   
statusInfo  StatusInfoType  1..1 
Element  Data Type  Description 
status
StatusType

Returns one of the following:

  • SUCCESS—If the request was synchronous, all of the part numbers in the request were processed successfully. If the request was asynchronous, SUCCESS means that the import request of part numbers was scheduled; this does not necessarily mean that the request was processed successfully.

  • PARTIAL_FAILURE—Some, but not all part numbers in the synchronous request were processed. The getCount and getQuery operations never return PARTIAL_FAILURE.

  • FAILURE—If the request was synchronous, none of the part numbers in the request were processed successfully. If the request was asynchronous, FAILURE means that the import request of part numbers was not scheduled.

reason
string
Gives reason for partial failure or failure.
 
failedData  failedPartNumberDataListType  0..1  Information about the part numbers that were not added is listed in the failedData element. See failedPartNumberDataListType. Not populated for asynchronous requests.
responseData  createdPartNumberDataListType  0..1  Information about the part numbers that were added is listed in the responseData element. See createdPartNumberDataListType. Not populated for asynchronous requests.
Referenced By
Name  Type 
createPartNumber  Method 
XML Example

The following XML fragment illustrates a successful synchronous createPartNumberResponse message:

<createPartNumberResponse>
   <statusInfo>
      <status>SUCCESS</status>
   </statusInfo>
   <responseData>
      <createdPartNumber>
         <recordRefNo>0</recordRefNo>
         <uniqueId>HID-20252</uniqueId>
      </createdPartNumber>
      <createdPartNumber>
         <recordRefNo>1</recordRefNo>
         <uniqueId>HID-20253</uniqueId>
      </createdPartNumber>
   </responseData>
</createPartNumberResponse>