This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

SUPPORT Q&A - BOM Question

Jeroen v. W. - Tuesday, December 23, 2014 3:24 PM:

Is it possible to make a multilevel BOM for a product with parts and products within?



DavidSpackman - Sunday, January 11, 2015 6:31 PM:

Hi Jeroen, 

 

Can you give more detail?

Are you trying to do this in AML or through the IOM?

Refer to the Aras Programmers Guide for hints on both.

 

For AML, you can use this example, and then continually expand to Part Itemtype to add more relationships

<Item type="Part" action="add">
	<item_number>999-888</item_number>
	<description>Some Assy</description>
	<Relationships>
		<Item type="Part BOM" action="add">
			<quantity>10</quantity>
			<related_id>
				<Item type="Part" action="add">
					<item_number>123-456</item_number>
					<description>1/4w 10% 10K Resistor</description>
				</Item>
			</related_id>
		</Item>
	</Relationships>
</Item>

 

Dave