Examples
This example fetches the materials in a formula BOM. This shows the same information as the Item Contribution form.
Dim BOMXML As String = ObjectXML("FORMULAADJUST", _ObjectKey,
"HEADER;INGRMULTI")
         
          This example fetches the exploded materials in a formula BOM. This shows the same information as the Item Contribution form with the  option selected.
          
         Dim BOMXML As String = ObjectXML("FORMULAADJUST", _ObjectKey,
"HEADER;INGRMULTIRM")
         This example fetches the material and non-materials items in a formula BOM. This shows the same information as the Item Contribution form with the option selected.
Dim BOMXML As String = ObjectXML("FORMULAADJUST", _ObjectKey,
"HEADER;INGRMULTINM")
         This example fetches the exploded materials and non-materials items in a formula BOM. This shows the same information as the Item Contribution form with the and options selected.
Dim BOMXML As String = ObjectXML("FORMULAADJUST", _ObjectKey,
"HEADER;INGRMULTINMRM")