cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X

BoM Table quantities

cdown
4-Participant

BoM Table quantities

Guru's,
I seam to recall there was a way of putting in a relation or
something into a part or bulk item to change the BoM table quantity

I have searched but am unable to find the thread, does anyone re-call this
or know the answer?


Using WF3 M250



Many thanks

Colin Down
Mechanical Design Engineer
email: -
tel: +44 1305 208503

The information in this e-mail and any attachments transmitted with it are provided in commercial confidence for the intended recipient(s). If you have received this e-mail in error, please notify the Postmaster by e-mail at -. Any views or opinions expressed are solely those of the author and do not necessarily represent those of DEK.

For local company specific legal information for your country or region and any local contact information for DEK, please refer to:

http://www.dek.com/dek.nsf/reg!openform

This footnote confirms that this message has been checked for the presence of computer viruses and other 'malware' to the best of our knowledge when it left our systems. DEK is not responsible in any way for any malware that may be or become associated with this message. Recipients are strongly urged to use appropriate protection and requested to assure themselves that opening any attachments is safe.


This thread is inactive and closed by the PTC Community Management Team. If you would like to provide a reply and re-open this thread, please notify the moderator and reference the thread. You may also use "Start a topic" button to ask a new question. Please be sure to include what version of the PTC product you are using so another community member knowledgeable about your version may be able to assist.
6 REPLIES 6
RonGrabau
7-Bedrock
(To:cdown)

Here is what I use for relations. If the item is a bulk item the relation adds AR for the quantity. I also have a few lines that can be copied if you need to specify a specific number You just need to enter the actual model and the quantity for the values in the quotes (quotes are also removed). You would copy and replace for each item that needs a unique number. Naturally this is done in the table relations.

if ASM_MBR_TYPE == "BULK ITEM"
QTY= "AR"
ELSE
QTY= rpt_qty
endif
if ASM_MBR_NAME == "Enter_Model_Number"
QTY= "Enter required number or rpt_qty"
Endif

Ron Grabau
davehaigh
11-Garnet
(To:cdown)

That's a nice way, but as with all of ProE there is another alternative way. You may find this has more flexibility, but it involves having another parameter in your parts. In this case the new user defined parameter is called bom_qty_type.



How to change the BOM qty to AR?

/* Relations to set bom qty per BOM_QTY_TYPE model parameter

if asm_mbr_bom_qty_type == "AR" | asm_mbr_bom_qty_type == "NA"\

| asm_mbr_bom_qty_type == "ALT"

bom_qty=asm_mbr_bom_qty_type

ELSE

bom_qty=rpt_qty

ENDIF



There is a video and some sample files in my ProE Admin 101 talk. Look at page 67

And another way to accomplish it.



Create a parameter in the model called BOM_QTY. It can be an Integer,
Real Number or String. In your Table show RPT.REL.SHOW_QTY.



Then for your table relations...



IF EXISTS ("ASM_MBR_BOM_QTY")

SHOW_QTY=BOM_QTY

ELSE

SHOW_QTY=RPT_QTY

ENDIF

Roger Crill

CAD Administrator

Manitowoc Cranes
P 920.683.6554

F 920.683.6277
"Integrity, Commitment to Stakeholders, and
Passion for Excellence"


bfrandsen
6-Contributor
(To:cdown)

For Bulk Items the parameter BOM_REPORT_QUANTITY is used to define the
quantity as a real number. Units can be handled by report parameters and
relations.
/Bjarne



"Haigh, David A." <->
19-12-2011 17:08
Please respond to
"Haigh, David A." <->


To
"Grabau, Ronald" <->
Colin Down <->
"-" <->
cc

Subject
[proecad] - RE: BoM Table quantities






That's a nice way, but as with all of ProE there is another alternative
way. You may find this has more flexibility, but it involves having
another parameter in your parts. In this case the new user defined
parameter is called bom_qty_type.

How to change the BOM qty to AR?
/* Relations to set bom qty per BOM_QTY_TYPE model parameter
if asm_mbr_bom_qty_type == "AR" | asm_mbr_bom_qty_type == "NA"\
| asm_mbr_bom_qty_type == "ALT"
bom_qty=asm_mbr_bom_qty_type
ELSE
bom_qty=rpt_qty
ENDIF

There is a video and some sample files in my ProE Admin 101 talk. Look at
page 67
Nick_W
5-Regular Member
(To:cdown)

In an assembly drawing I have step by step instructions using simplified reps and exploded views. In back to back steps I have the same part being added, so in the step before everything is fine because the second part is not in the rep yet, but the next rep has both parts, and I want the BOM to only list the quantity at 1, rather than 2. I want the part that was added before to stay in the rep for clarity, but don't know how to have the BOM changed. Hopefully the picture below helps explain.

[cid:image001.png@01CD505F.298ACD50]


Thank You,
Nick W.

dgschaefer
21-Topaz II
(To:cdown)

Have you looked at Pro/Process? It is designed to do exactly that (and
manage specific exploded views for each step) and isn't hard to pick up.
Do some digging in the help files or the knowledge base and you should
be up and running.



Doug Schaefer
--
Doug Schaefer | Experienced Mechanical Design Engineer
LinkedIn
Announcements
NEW Creo+ Topics: Real-time Collaboration


Top Tags