Add components in Installation Work Packages - Intergraph Smart Construction - 8 - Reference - Hexagon PPM

Intergraph Smart Construction Retired Feature Reference

Language
English
Product
Intergraph Smart Construction
Search by Category
Reference
Smart Construction Version
8

Add Components to Installation Work Package

You can add one or more components to a installation work package (IWP) using the Web APIs.

POST {{url}}/SPCAddComponentsToInstallationWorkPackage

Content

{

IWPID: "[Package ID of the IWP]",

ComponentIDs: "['XXXXXX', 'XXXXXX', 'XXXXXX']",

AutoAddDrawings: "[Boolean – True OR False]",

AddComponentValidationOptions:

{

IgnoreDisciplineMismatch: "[Boolean – True OR False]",

IgnoreCWPMismatch: "[Boolean – True OR False]",

IgnoreAll: "[Boolean – True OR False]"

}

}

Required information

  • Package ID of the IWP.

  • Component IDs that need to be added to the IWP.

  • Option stating if Drawings that have the components in them should get related to the IWP or not.

  • AddComponentValidationOptions class with the required properties and their values.

Notes

None

For example,

{

IWPID:"6GKO000A",

ComponentIDs: "['6GGF2GKA']",

AutoAddDrawings: "False",

AddComponentValidationOptions:

{

IgnoreDisciplineMismatch: "True",

IgnoreCWPMismatch: "True",

IgnoreAll: "True"

}

}