FLEXNET OPERATIONS SOAP WEB SERVICES GUIDE

FlexNet Operations Web Services Guide

Element: createPartNumberRequest

Description

A createPartNumberRequest message contains an element of createPartNumberRequestType.

Derived By

Type createPartNumberRequestType

Content Model

Contains elements as defined in the following table.

Component  Type  Occurs  Description 
    1..1   
partNumber  createPartNumberDataType  1..*  Required. A createPartNumberRequest contains an array of partNumber elements to be added. See createPartNumberDataType.
processSync  boolean  0..1  Optional. Set to true to create part numbers synchronously, that is, the Web services client will be blocked until the request is completely processed. Use synchronous processing only for creating small numbers of part numbers at a time. By default, part number creation is asynchronous.
Referenced By
Name  Type 
createPartNumber  Method 
XML Example

The following XML fragment illustrates a createPartNumberRequest message:

<createPartNumberRequest>
   <partNumber>
      <partId>Part-1</partId>
         <description>part description 1</description>
   </partNumber>
   <partNumber>
      <partId>Part-2</partId>
      <description>part description 2</description>
   </partNumber>
   <processSync>true</processSync>
</createPartNumberRequest>