aBOM (As-built Bill of Materials)
The As-built Bill of Materials is a tree-like structure that allows you to keep track of how parts are installed across multiple levels of your assembly.
Setup: Part inventory
Creating Part Instances and Lots
Installing parts
mutation CreateABomInstallation($input: CreateABomInstallationInput!) {
createAbomInstallation(input: $input) {
abomInstallation {
buildRequirementId
buildRequirementReferenceDesignatorId
partInventoryId
quantity
}
}
}{
"input": {
"buildRequirementId": 1,
"partInventoryId": 3,
"quantity": 1
}
}
Editing build requirements
Last updated
Was this helpful?