Atronics wrote:How can I copy the the notes from a BoM Output item to the notes on a BoM Maintenenace
You probably want to do this when you add an output item to a bill. You'd need to listen to the outputitem collection added event, and in there instantiate an inventory business logic and read the output item, and then iterate through each note and add it to the notes of the bill.
You'll need to consider note types - as the note types for inventory items may be different to the note types of bills. Probably ideally you'd try to match on the note type description, and if none is found just stick with the default note type.
Attached is a sample which does what you want - but it does not attempt to match note types.
Mike