FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: getPartNumbersQueryResponse

Description

A getPartNumbersQueryResponse message contains an element of getPartNumbersQueryResponseType.

Derived By

Type getPartNumbersQueryResponseType

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.
 
responseData  partNumberDataListType  0..1  See partNumberDataListType.
Referenced By
Name  Type 
getPartNumbersQuery  Method 
XML Example

The following XML fragment illustrates a successful getPartNumbersQueryResponse message:

<getPartNumbersQueryResponse>
   <statusInfo>
      <status>SUCCESS</status>
   </statusInfo>
   <responseData>
      <partNumber>
         <partNumberIdentifier>
            <uniqueId>HID-20130</uniqueId>
            <primaryKeys>
               <partId>Part-22</partId>
            </primaryKeys>
         </partNumberIdentifier>
         <description xsi:nil="true"/>
         <creationDate>2008-01-04</creationDate>
         <lastModifiedDate>2008-01-04</lastModifiedDate>
         <mappedProduct>
            <uniqueId>HID-20093</uniqueId>
            <primaryKeys>
               <name>Product A</name>
               <version>1.0</version>
            </primaryKeys>
         </mappedProduct>
         <mappedLicenseModel>
            <uniqueId>HID-501</uniqueId>
            <primaryKeys>
               <name>Floating Counted</name>
            </primaryKeys>
        </mappedLicenseModel>
      </partNumber>
   </responseData>
</getPartNumbersQueryResponse>