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

DEVELOPERS FORUM - BOM Structure

didonato - Monday, September 15, 2014 9:18 AM:

Does anyone know how to duplicate the Part BOM Structure and use it for another Item type. I created another item type called  "delivered components" that are basically parts with serial numbers. These "delivered components"  can also have other "delivered components" inside of them like a BOM, which I have working, but I don't know how to display them in a "BOM Structure" view. Any help?

Thanks

Dominic

 



DavidSpackman - Monday, September 15, 2014 10:04 PM:

Hi Dominic,

 

Have a look at the RelationshipType for Part MultiLevel BOM.

Under the Relationship View tab you can see that a form called Part Multilevel BOM is called.

 

That form contains HTML code to generate the multi level table.

Looking at the code you will see that it calls a method called PE_GetMultilBom

That method calls a SQL item (stored procedure) called MultiBom_GetCompleteBom1 that returns the part structure.

(Note that MultiBom_GetCompleteBom1 also calls another SQL item called MultiBom_GetCompleteBom2

 

I would copy each of these items and customise for your itemtype.

 

Dave

(Checked on Aras 9.3 SP9)

 

 



didonato - Tuesday, September 16, 2014 11:34 AM:

Thank You!!!