Thanks for the input, it worked.
I setup the material and added the material type to the bend table. Then added the following relation to the part:
material = material_param("bend_table")
I also edited my custombom.fmt file as follows:
.breakdown
%$type %$name contains:
.titles...
I have assigned parts in an assembly a material type (setup, material), now I would like the material to be displayed on the BOM. Is material a system parameter? Here is a listing of my current BOM:
.breakdown
%$type %$name contains:
.titles Qty; Name; Type
.row %$quantity[-5d]; %$name[-32s]...
Well I was able to get my BOM to work. Now I would like to tailor it a little further. Following is my custom BOM.
.breakdown
%$type %$name contains:
.titles Qty; Name; Type
.row %$quantity[-5d]; %$name[-18.18s]; %$type[-11.11s]
.summary
Summary of parts for assembly %$name:
.titles Qty...
I am attempting to create a custom bom in pro/e 2000i. I created a generic text file and placed it in the text directory (formatname.fmt). I then added the following line to my config.pro: bom_format formatname.fmt
However, pro/e does not create a bom using the bom output file I...