Ipart = Publish Part = Part - Data

Ipart = Publish Part = Part - Data

iva.btblan
Advocate Advocate
883 Views
12 Replies
Message 1 of 13

Ipart = Publish Part = Part - Data

iva.btblan
Advocate
Advocate

Can anyone help me to solve this link between files problem.

I don't know how to do it.

I want to keep the ipart information: Material, Espessura, and code the same in the part.

Extracted: Publish part.

At the end ipart = publish part = part.

0 Likes
Accepted solutions (1)
884 Views
12 Replies
Replies (12)
Message 2 of 13

A.Acheson
Mentor
Mentor

Hi @iva.btblan 

Could you give some screenshots of what you want to achieve? List out the operations in bullet points and include any code if this is needed.  I cannot open the file due to inventor version. 

If this solved a problem, please click (accept) as solution.‌‌‌‌
Or if this helped you, please, click (like)‌‌
Regards
Alan
0 Likes
Message 3 of 13

iva.btblan
Advocate
Advocate

Sorry, I'm looking for an older version in the company to send you the subject, please wait. thanks.

0 Likes
Message 4 of 13

iva.btblan
Advocate
Advocate

Here is the file in a previous version.

I can't keep the link between the ipt and iam files.

I don't know how to do that!

Keep the changes in iam and ipt. Equal.

 

0 Likes
Message 5 of 13

A.Acheson
Mentor
Mentor

Is it possible to explain the issue with images? What code are you using and what are the steps to produce the error? I am not near a computer now to open the zipped files. I think you will get more help if you can explain the situation  

If this solved a problem, please click (accept) as solution.‌‌‌‌
Or if this helped you, please, click (like)‌‌
Regards
Alan
0 Likes
Message 6 of 13

iva.btblan
Advocate
Advocate

I attach the explanatory figures. and the IPT file

0 Likes
Message 7 of 13

A.Acheson
Mentor
Mentor

I had a look at you images, unfortunately the images are a little difficult to read. I can see that you publish the part to content center and now the descriptions do not match when you change size, correct? This could be the interaction between content center and change size command. Is their ilogic being used to create the description or are you using description expression? Can you please post images of the description for the initial place from content center and then the next change in size that is wrongly shown in the description?

If this solved a problem, please click (accept) as solution.‌‌‌‌
Or if this helped you, please, click (like)‌‌
Regards
Alan
0 Likes
Message 8 of 13

iva.btblan
Advocate
Advocate

Here is a new explanation. Was I able to explain?

0 Likes
Message 9 of 13

A.Acheson
Mentor
Mentor

Is the issue that the fraction imperial thickness "3/16" is displayed as decimal mm ? You could change this to a text unit to avoid this conversion. Or alternatively open the content center and change the unit of the column to inch and fraction. 

AAcheson_0-1710041100959.png

AAcheson_1-1710041188160.png

 

If this solved a problem, please click (accept) as solution.‌‌‌‌
Or if this helped you, please, click (like)‌‌
Regards
Alan
0 Likes
Message 10 of 13

iva.btblan
Advocate
Advocate

Here's a new PDF file.

0 Likes
Message 11 of 13

iva.btblan
Advocate
Advocate

Can anyone help with this problem?

0 Likes
Message 12 of 13

A.Acheson
Mentor
Mentor

Hi @iva.btblan 

I'm not sure I understand the information being displayed. A video of the issue might explain the issue further. Can you provide that? I don't entirely see the relevance of showing the ipart table referencing because the custom publish part reacts in a different way because the iproperties are now controlled from the content center table and then can be edited manually in the custom part itself.

 

Have you ilogic code running in the part that you haven't shown or is the information only coming from the built in iproperties?

If this solved a problem, please click (accept) as solution.‌‌‌‌
Or if this helped you, please, click (like)‌‌
Regards
Alan
0 Likes
Message 13 of 13

A.Acheson
Mentor
Mentor
Accepted solution

I think I understand your issue. You would like several parameters/iproperties to change based on thickness and material change in the form correct? You would like ipart functionality in the custom format. I assume trying to change the material from the content center will erase your custom parameter sizes correct?

This rule will automatically change the CODIGO parameter based on conditions being true. The down side of this method is the code is in each file. 

If Espessura = "3/8" AndAlso iProperties.Material = "ASTM A36" Then
	CODIGO = "05.022.01.003.0005"
ElseIf Espessura = "1/2" AndAlso iProperties.Material = "ASTM A36" Then
	CODIGO = "05.022.01.003.0004"
End IF

 This rule here will allow you to change the  CODIGO parameter from external rule. The down side of this method is that it needs to be manually run on the document to update the parameter

If Parameter("Espessura") = "3/8" AndAlso iProperties.Material = "ASTM A36" Then
	Parameter("CODIGO") = "05.022.01.003.0005"
ElseIf Parameter("Espessura") = "1/2" AndAlso iProperties.Material = "ASTM A36" Then
	Parameter("CODIGO") = "05.022.01.003.0004"
End IF

 

If this solved a problem, please click (accept) as solution.‌‌‌‌
Or if this helped you, please, click (like)‌‌
Regards
Alan
0 Likes