Hi All,
I am trying to create a hierarchical Bill Of Material in Dynamics 365 Finance And Operations
The structure that I want to create is as follows
E.g.
CAR
ENGINE
CARBEURETER
AIRFILTER
WHEEL
Where ENGINE and WHEEL are on the same line and CARBEURETER are a sub BOM of ENGINE bom
I want to create the structure above using OData Service
For which I am using the Entity : BillOFMaterialHeader and BillOfMaterialLines
However I am only able to create the single level BOM and not the hierarchical structure as required
The JSONs that I am passing are as follows
BillOfMaterialsHeader:{"dataAreaId": "usmf"}
BOMNumber generated is 000123
BillOfMaterialsLines : {"dataAreaId": "usmf",BOMId: "000123", LineNumber:1,ItemNumber:"ENGINE"}
How do I give the next hierarchical level ?