GetBOM — BOM request
OAGIS BOD combining the verb Get and the noun BOM. Business cornerstone of the manufacturing domain in the OAGIS 10.x ecosystem.
BOD purpose
The GetBOM BOD is the canonical read request on a given Bill of Materials. The calling system queries the PLM or the master ERP by passing the item identifier and the desired revision. The response comes back as a ShowBOM (Show verb canonical pair).
Structure (ApplicationArea + DataArea)
As every OAGIS BOD, GetBOM stacks an
ApplicationArea technical envelope (Sender, BODID, CreationDateTime) and
a DataArea business payload containing the verb Get
and the noun BOM.
XML example
Minimal OAGIS 10.x payload for didactic purposes. The structural elements (header + business line) are required in any conformant implementation.
<?xml version="1.0" encoding="UTF-8"?>
<GetBOM
xmlns="http://www.openapplications.org/oagis/10"
releaseID="10.11" versionID="10.11">
<ApplicationArea>
<Sender>
<LogicalID>ERP-CENTRAL-EU</LogicalID>
<ComponentID>ManufacturingModule</ComponentID>
<ConfirmationCode>OnError</ConfirmationCode>
</Sender>
<CreationDateTime>2026-05-16T10:15:00Z</CreationDateTime>
<BODID>5a8f7d2e-2b15-4c1a-9e6f-getbom-2026-0014</BODID>
</ApplicationArea>
<DataArea>
<Get>
<ActionCriteria>
<ActionExpression actionCode="Add"/>
</ActionCriteria>
</Get>
<BOM>
<BOMHeader>
<DocumentID><ID>GET-BOM-A321-AFT</ID></DocumentID>
<Item><ItemIDs><ID>A321-AFT-FUSELAGE</ID></ItemIDs></Item>
</BOMHeader>
</BOM>
</DataArea>
</GetBOM> Use case
Airbus's Apriso MES queries the Teamcenter PLM via GetBOM to fetch the A321-AFT-FUSELAGE Bill of Materials at current revision before launching a production order.
EDI equivalents
No direct EDI counterpart on the gateway: this BOD is strictly internal to the OAGIS / ERP ecosystem, with no openly standardised EDIFACT or X12 counterpart.
Further reading
- OAGi — OAGIS 10.x — official spec page and free download.
- OAGi (OAGIS) — hub on ediverse — BOD architecture, verbs, canonical model.
- EDIFACT on ediverse — comparison baseline for BODs with EDIFACT counterpart.
- X12 on ediverse — comparison baseline for BODs with X12 counterpart.