FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: tns:unlinkMaintenanceLineItemResponse

Description

An unlinkMaintenanceLineItemResponse message contains an element of unlinkMaintenanceLineItemResponseType.

Derived By

Type unlinkMaintenanceLineItemResponseType

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—All items in the request were processed.

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

  • FAILURE—None of the items in the request were processed.

reason
string
Gives reason for partial failure or failure.
 
failedData  failedUnlinkMaintenanceLineItemListType  0..1  See failedUnlinkMaintenanceLineItemListType.
Referenced By
Name  Type 
unlinkMaintenanceLineItem  Method 
XML Example

The following XML fragment illustrates a successful unlinkMaintenanceLineItemResponse message:

      <unlinkMaintenanceLineItemResponse>
         <statusInfo>
            <status>SUCCESS</status>
         </statusInfo>
      </unlinkMaintenanceLineItemResponse>

The following XML fragment illustrates an unsuccessful unlinkMaintenanceLineItemResponse message:

      <unlinkMaintenanceLineItemResponse>
         <statusInfo>
            <status>FAILURE</status>
            <reason>All input data in the request failed. …</reason>
         </statusInfo>
         <failedData>
            <failedUnlinkMaintenanceLineItem>
               <unlinkMaintenanceLineItem>
                  <lineItemIdentifier>
                     <primaryKeys>
                        <activationId>ent-maint-1P</activationId>
                     </primaryKeys>
                  </lineItemIdentifier>
                  <maintenanceLineItemIdentifier>
                     <primaryKeys>
                        <activationId>ent-maint-1</activationId>
                     </primaryKeys>
                  </maintenanceLineItemIdentifier>
               </unlinkMaintenanceLineItem>
               <reason>9999:Cannot find the specified maintenance line item</reason>
            </failedUnlinkMaintenanceLineItem>
         </failedData>
      </unlinkMaintenanceLineItemResponse>