Part item number as text parameter

Part item number as text parameter

j.pavlicek
Collaborator Collaborator
3,871 Views
9 Replies
Message 1 of 10

Part item number as text parameter

j.pavlicek
Collaborator
Collaborator

Hello,

I'm trying to create iLogic which allows me to add component (BOM) item number as text parameter.

 

Idea is:

Save item number in Text Parameter named BOM_<assembly_part_number> in each assembly component (because component parameters could be used as text parameters in an assembly drawing)

 

iLogic approach: (✔️ = done)

  1. Prequisite: In the drawing is only one BOM ✔️ (company standard)
  2. Find an assembly from which is Part List is created for ✔️
  3. Access every item from BOM ✔️ and create a parameter with item number 

Problem is with content center components - they are Read Only - it makes my idea unusable (I need this text parameter for fasteners very often) - OR?



Inventor 2022, Windows 10 Pro
Sorry for bad English.
0 Likes
Accepted solutions (1)
3,872 Views
9 Replies
Replies (9)
Message 2 of 10

bradeneuropeArthur
Mentor
Mentor

Could you please explain what you try to do with the TextParameter?

Do you want to see the TextParameter (Item Number) in the Assembly drawing?

 

There is a where used function!!!!

 

Regards,

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes
Message 3 of 10

j.pavlicek
Collaborator
Collaborator

I have some text note on a drawing, where is pos (ballon) number mentioned. I want to sync this number with particular component. Even when it changes its position in a BOM (item number).

 

What I found, there is no internal function for this.

At first I want to save this information inside component user parameter - because these are accessible in text window in an assembly (unlike component iProperties). And allows me to see in which assemblies is a component used.

inventor-format-text.png

 

But it seems to be impossible to use this approach for Content Center parts. (OR it's possible?)

 

--

Meanwhile I'm trying another approach, when is this info saved in an assembly iProperties, but with this approach could be used only when every BOM row has unique Part Number. (Not big deal, I'm able to handle it. But I liked option to look to User Parameters and know what assemblies are using part/assembly.). Also this solution demands two iLogic rules - one for an assembly and second for a drawing.

inventor-text-bom-number.png



Inventor 2022, Windows 10 Pro
Sorry for bad English.
0 Likes
Message 4 of 10

bradeneuropeArthur
Mentor
Mentor

Why not using the Balloon setting for this!

 

Bom.png

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes
Message 5 of 10

j.pavlicek
Collaborator
Collaborator

Thanks for reply. But I need it in opposite direction. I want to keep ballon numbers according to BOM Item Number.

 

Only want to place this number into text notes and keep it synced with BOM Item Number (= Ballon Number).

 

Basically, I want this:

inventor-bom01.png

inventor-bom02.png

iLogic is triggered on an Assembly save

inventor-bom03.png



Inventor 2022, Windows 10 Pro
Sorry for bad English.
0 Likes
Message 6 of 10

bradeneuropeArthur
Mentor
Mentor

why not writing the ItemNumbers to the dwg (UserProperties with a value)!

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes
Message 7 of 10

bradeneuropeArthur
Mentor
Mentor
Accepted solution

Hi,

 

Read this:

https://forums.autodesk.com/t5/inventor-forum/how-to-refer-to-bom-item-number-in-a-text-box/td-p/847... 

Regards,

Arthur Knoors

Autodesk Affiliations & Links:
blue LinkedIn LogoSquare Youtube Logo Isolated on White Background


Autodesk Software:Inventor Professional 2025 | Vault Professional 2024 | Autocad Mechanical 2024
Programming Skills:Vba | Vb.net (Add ins Vault / Inventor, Applications) | I-logic
Programming Examples:
Drawing List!|
Toggle Drawing Sheet!|
Workplane Resize!|
Drawing View Locker!|
Multi Sheet to Mono Sheet!|
Drawing Weld Symbols!|
Drawing View Label Align!|
Open From Balloon!|
Model State Lock!
Posts and Ideas:
My Ideas|
Dimension Component!|
Partlist Export!|
Derive I-properties!|
Vault Prompts Via API!|
Vault Handbook/Manual!|
Drawing Toggle Sheets!|
Vault Defer Update!

! For administrative reasons, please mark a "Solution as solved" when the issue is solved !


 


EESignature

0 Likes
Message 8 of 10

j.pavlicek
Collaborator
Collaborator

Thank you very much.

 

For someone who find this thread in future quick overview:

  1. You need to load Add-in called ESKD Support (part of standard installation written with Inventor 2020 in mind)
  2. On Ribbon click on "Annotate (ESKD)" (ESKD in braces shows there when addin is loaded)
  3. In section Format click Technical Requirements
  4. Write a note into field with a ruller (the biggest one)
  5. For inserting an Item number (ballon number) use form in section called Associative Ballon

Disadvantages:

  • Only text with Technical Requirements is allowed
  • It seems that font of the Technical Requirements cannot be changed and it's always italics.


Inventor 2022, Windows 10 Pro
Sorry for bad English.
0 Likes
Message 9 of 10

tomasz.sztejka
Advocate
Advocate
Good idea, but I would like to add one more limitation it has:
- You can only reference in text parts with balloons.

This means, that if You have a geometry less part, like paint, and like to write a text: "Paint marked surfaces with paint from position X" then even with this add-in it is still not possible.
0 Likes
Message 10 of 10

ABari3TGS5
Explorer
Explorer

Thanks for the helpful topic.
Does anyone encounter a situation where the associative balloon appears with an auto space in the text?
In the image below, you can see that on the right side, I wrote it without a space, and on the left, it appears automatically with a space, in relation to the associative balloon.
Does anyone know how to fix this?

ABari3TGS5_0-1704609647892.png

 

0 Likes