<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic 回复： &amp;quot;Component Designation&amp;quot; Column value as Custom or Parametric are not working on customize valve. in AutoCAD Plant 3D Forum</title>
    <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9922895#M25661</link>
    <description>&lt;P&gt;Dear Sir &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7246310"&gt;@李榕华|Ronghua.LI&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards to your question no. 1, hope this helps.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CompDesignationValue.PNG" style="width: 636px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/853381i17C0FD95C0B854C7/image-size/large?v=v2&amp;amp;px=999" role="button" title="CompDesignationValue.PNG" alt="CompDesignationValue.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 08 Dec 2020 08:10:00 GMT</pubDate>
    <dc:creator>hyrro_velasquez</dc:creator>
    <dc:date>2020-12-08T08:10:00Z</dc:date>
    <item>
      <title>"Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9917237#M25653</link>
      <description>&lt;P&gt;Hi Sir/Ma'am,&lt;/P&gt;&lt;P&gt;Good day,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've been on this issue for a long time now, and still I really cant find any solutions to this.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've already tried to export and import&amp;nbsp;an excel file via "Full spec data export" so I can change the "Component Designation" column value as "Custom" or "Parametric", hoping that it will solve my problem for the part geometry not showing&amp;nbsp;under the part property of my custom component created via python script, when placed on the plant 3D workspace. But unfortunately it still does not show on part property.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="PartProperties.PNG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/852476iAD86FEC5E28F4A99/image-size/large?v=v2&amp;amp;px=999" role="button" title="PartProperties.PNG" alt="PartProperties.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I also tried to change the "Component Designation" column value via Edit parts window on Part List tab,&amp;nbsp;setting it's value to&amp;nbsp;Custom, but unfortunately when placed on Plant 3D workspace, still the part geometry/Dimensions under Part Properties still does not show, and still there is no way for me to edit it's dimensions once its placed on the workspace. I'm really on a dead end here, is there any one encountered this issue?, please if you could give me some information regards to this issue I'll appreciate it sooooo muuuuuuuuuccchhhhh.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="EditParts.PNG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/852478iE5CD9CCB1E3D686F/image-size/large?v=v2&amp;amp;px=999" role="button" title="EditParts.PNG" alt="EditParts.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;Also this is my python script, may be there is something that I'm doing wrong or I'm missing something, that cause the dimensions not to show on my parts geometry that others might know about, please correct me. thank you so much in advance.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;from aqa.math import *&lt;BR /&gt;from varmain.primitiv import *&lt;BR /&gt;from varmain.custom import *&lt;BR /&gt;@Anonymous(Group="Valve", TooltipShort="BALLVALVE999", TooltipLong="BALLVALVE999", LengthUnit="mm", Ports=2)&lt;BR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/8108781"&gt;@group&lt;/a&gt;("MainDimensions")&lt;BR /&gt;@param(PIPE_OD=LENGTH, TooltipLong="Outside diameter of the flange")&lt;BR /&gt;@param(PIPESIZE=LENGTH, TooltipLong="Outside diameter of the flange")&lt;BR /&gt;@param(L=LENGTH, TooltipLong="Graphics flange Diameter")&lt;BR /&gt;@param(H=LENGTH, TooltipLong="Graphics flange Diameter")&lt;BR /&gt;@param(D=LENGTH, TooltipLong="Graphics flange thickness")&lt;BR /&gt;@param(H1=LENGTH, TooltipLong="Graphics flange thickness")&lt;BR /&gt;def BALLVALVE999(s, PIPE_OD = 60.3, PIPESIZE = 50, L = 178, H = 143, D = 230,H1 = 165,ID = 'BALLVALVE999',**kw):&lt;BR /&gt;#VALVE&lt;BR /&gt;&amp;nbsp; B = CYLINDER(s, R=PIPE_OD/2,H=L,O=0).rotateX(0).rotateX(270).translate((0,0,0))&lt;BR /&gt;&amp;nbsp; B1 = CYLINDER(s, R=PIPE_OD/2+H1/10,H=L,O=0).rotateX(0).rotateX(270).translate((0,0,0))&lt;BR /&gt;&amp;nbsp; B2 = CYLINDER(s, R=H1/2,H=L/9,O=0).rotateX(0).rotateX(270).translate((0,0,0))&lt;BR /&gt;&amp;nbsp; B3 = CYLINDER(s, R=H1/2,H=L/9,O=0).rotateX(0).rotateX(270).translate((0,L/2,0))&lt;BR /&gt;&amp;nbsp; B4 = CYLINDER(s, R=H1/2,H=L/9,O=0).rotateX(0).rotateX(270).translate((0,L/2 + L/9 + 1,0))&lt;BR /&gt;&amp;nbsp; B5 = CYLINDER(s, R=H1/2,H=L/9,O=0).rotateX(0).rotateX(270).translate((0,L - L/9,0))&lt;BR /&gt;&amp;nbsp; B6 = CYLINDER(s, R=H1/2.5,H=L/2 - L/9,O=0).rotateX(0).rotateX(90).translate((0,L/2 + L/9,0))&lt;BR /&gt;&amp;nbsp; B7 = CYLINDER(s, R=L/6,H=(H+H/2.5)-(H/7)*2,O=0).rotateX(0).rotateX(0).translate((0,L/2-(L/6)/2,-H/2.5))&lt;BR /&gt;&amp;nbsp; B8 = CYLINDER(s, R=L/3,H=(H/7),O=0).rotateX(0).rotateX(0).translate((0,L/2-(L/6)/2,((H)-(H/7)*2)))&lt;BR /&gt;&amp;nbsp; B9 = CYLINDER(s, R=L/7.5,H=(H/7),O=0).rotateX(0).rotateX(0).translate((0,L/2-(L/6)/2,((H)-(H/7))))&lt;BR /&gt;#NUTS&amp;nbsp;&lt;BR /&gt;&amp;nbsp; B10 = CYLINDER(s, R=(H/6)/2,H=(L/9)/1.5,O=0).rotateX(0).rotateX(270).translate((0,L/2 + L/9*2 + 1,H1/3))&lt;BR /&gt;&amp;nbsp; B11 = CYLINDER(s, R=(H/6)/2,H=(L/9)/1.5,O=0).rotateX(0).rotateX(270).translate((0,L/2 + L/9*2 + 1,-H1/3))&lt;BR /&gt;&amp;nbsp; B12 = CYLINDER(s, R=(H/6)/2,H=(L/9)/1.5,O=0).rotateX(0).rotateX(270).translate((H1/3,L/2 + L/9*2 + 1,0))&lt;BR /&gt;&amp;nbsp; B13 = CYLINDER(s, R=(H/6)/2,H=(L/9)/1.5,O=0).rotateX(0).rotateX(270).translate((-H1/3,L/2 + L/9*2 + 1,0))&lt;BR /&gt;#HANDLE&amp;nbsp;&lt;BR /&gt;&amp;nbsp; B14 = BOX(s, L=D, W=H1/12, H=H1/10).rotateX(0).rotateX(0).translate((0,D/2 + (L/2-(L/6)/2),-(H1/12)/2+H))&amp;nbsp;&lt;BR /&gt;#port points&lt;BR /&gt;&amp;nbsp; s.setPoint((0, 0, 0),(0, -1, 0))&lt;BR /&gt;&amp;nbsp; s.setPoint((0, L, 0),(0, 1, 0))&lt;BR /&gt;&amp;nbsp; #s.setLinearDimension('Par_L',(0.0, 0.0, 0.0),(0.0, Par_L, 0.0))&lt;BR /&gt;&amp;nbsp; return&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 05 Dec 2020 08:51:52 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9917237#M25653</guid>
      <dc:creator>hyrro_velasquez</dc:creator>
      <dc:date>2020-12-05T08:51:52Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9919935#M25654</link>
      <description>&lt;P&gt;Yes, I have the same problem.&lt;/P&gt;</description>
      <pubDate>Mon, 07 Dec 2020 04:44:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9919935#M25654</guid>
      <dc:creator>李榕华|Ronghua.LI</dc:creator>
      <dc:date>2020-12-07T04:44:24Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9919997#M25655</link>
      <description>&lt;P&gt;We are two unfortunate people I guess&lt;span class="lia-unicode-emoji" title=":persevering_face:"&gt;😣&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Dec 2020 05:46:29 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9919997#M25655</guid>
      <dc:creator>hyrro_velasquez</dc:creator>
      <dc:date>2020-12-07T05:46:29Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9920575#M25656</link>
      <description>&lt;P&gt;Dear &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7002121"&gt;@hyrro_velasquez&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7246310"&gt;@李榕华|Ronghua.LI&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-12-07_13-20-51.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/853025i841D548C65374B6B/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-12-07_13-20-51.jpg" alt="2020-12-07_13-20-51.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2020-12-07_13-30-05.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/853026i73FAD7BF3BE0A9B2/image-size/large?v=v2&amp;amp;px=999" role="button" title="2020-12-07_13-30-05.jpg" alt="2020-12-07_13-30-05.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 07 Dec 2020 12:30:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9920575#M25656</guid>
      <dc:creator>h_eger</dc:creator>
      <dc:date>2020-12-07T12:30:36Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9922736#M25657</link>
      <description>&lt;P&gt;Look at &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593421"&gt;@h_eger&lt;/a&gt;&amp;nbsp;&amp;nbsp;reply.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's a little cumbersome to operate, but it's really useful.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2020 06:25:57 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9922736#M25657</guid>
      <dc:creator>李榕华|Ronghua.LI</dc:creator>
      <dc:date>2020-12-08T06:25:57Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9922738#M25658</link>
      <description>&lt;P&gt;Thank you for your reply, which solved the problem that has puzzled me for a long time.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2020 06:27:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9922738#M25658</guid>
      <dc:creator>李榕华|Ronghua.LI</dc:creator>
      <dc:date>2020-12-08T06:27:25Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9922756#M25659</link>
      <description>&lt;P&gt;I have two more questions. Please help me to answer them when you are free.&lt;/P&gt;
&lt;P&gt;1、Does the “ComponentDesignation” attribute have other values besides Custom and Placeholder?&lt;/P&gt;
&lt;P&gt;2、How should I query the PnPID of a valve so that I can quickly find it in Piping.dcf.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2020 06:38:32 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9922756#M25659</guid>
      <dc:creator>李榕华|Ronghua.LI</dc:creator>
      <dc:date>2020-12-08T06:38:32Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9922887#M25660</link>
      <description>&lt;P&gt;Dear Sir &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593421"&gt;@h_eger&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sir thank you so much for your feedback,regards SQL for Plant 3D objects, I was able to convert my project SQLite to SQL Server using "PnPProjectMaintenance.exe". But I'm new to&amp;nbsp;this part&amp;nbsp;of Plant3D, that's why I just wanna ask about, how can I &lt;STRONG&gt;reflect/apply&lt;/STRONG&gt; the changes I made&amp;nbsp;from "dbo.EngineeringItems" table specifically on my custom valves Component Designation column, to my project model or spec?. Again thank you so much for your help on this forum. I'm forever grateful.&lt;span class="lia-unicode-emoji" title=":folded_hands:"&gt;🙏&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="SQLtableComponentDesignation.PNG" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/853380iFCA9A08CB04E0FB3/image-size/large?v=v2&amp;amp;px=999" role="button" title="SQLtableComponentDesignation.PNG" alt="SQLtableComponentDesignation.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2020 08:03:01 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9922887#M25660</guid>
      <dc:creator>hyrro_velasquez</dc:creator>
      <dc:date>2020-12-08T08:03:01Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9922895#M25661</link>
      <description>&lt;P&gt;Dear Sir &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7246310"&gt;@李榕华|Ronghua.LI&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;regards to your question no. 1, hope this helps.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="CompDesignationValue.PNG" style="width: 636px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/853381i17C0FD95C0B854C7/image-size/large?v=v2&amp;amp;px=999" role="button" title="CompDesignationValue.PNG" alt="CompDesignationValue.PNG" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 08 Dec 2020 08:10:00 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9922895#M25661</guid>
      <dc:creator>hyrro_velasquez</dc:creator>
      <dc:date>2020-12-08T08:10:00Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9925553#M25662</link>
      <description>&lt;P&gt;Changes in SQL server are reflected in the project model.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2020 03:26:33 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9925553#M25662</guid>
      <dc:creator>李榕华|Ronghua.LI</dc:creator>
      <dc:date>2020-12-09T03:26:33Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9926278#M25663</link>
      <description>&lt;P&gt;Sir &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7246310"&gt;@李榕华|Ronghua.LI&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Does the project model automatically update after you made changes to SQL server?&lt;/P&gt;&lt;P&gt;in my case, it still does not make my parts geometry appear in my valve properties after I update the "ComponentDesignation" column. Even if I placed a new valve model in the plant 3D workspace still does not do any changes in the property. hope you can help me in this one, can you give me some simple procedure, like what to do next after I updated the value?. thank you so much.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2020 11:09:41 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9926278#M25663</guid>
      <dc:creator>hyrro_velasquez</dc:creator>
      <dc:date>2020-12-09T11:09:41Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9926390#M25664</link>
      <description>&lt;P&gt;Sir &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7246310"&gt;@李榕华|Ronghua.LI&lt;/a&gt;&amp;nbsp; Sir &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593421"&gt;@h_eger&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I just wanna ask also, before converting from SQLite to SQLserver, I copied my project folder from my local drive to our server e.g. &amp;nbsp;"asa10099\plant3d" then I convert, then all the database are created on the SQL server after convertion.&amp;nbsp;Do I need also to copy my python files from "C:\AutoCAD Plant 3D 2021 Content\CPak Common\CustomScripts", on the server? does this will make any difference? sorry for so many question, I just cant seem to find the answers I'm looking for. but then again thank you very much for you feedbacks.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Dec 2020 12:14:42 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9926390#M25664</guid>
      <dc:creator>hyrro_velasquez</dc:creator>
      <dc:date>2020-12-09T12:14:42Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9937405#M25665</link>
      <description>&lt;P&gt;What you have changed will be updated in time, but what you put later needs to be changed.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Dec 2020 04:30:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9937405#M25665</guid>
      <dc:creator>李榕华|Ronghua.LI</dc:creator>
      <dc:date>2020-12-14T04:30:49Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9937790#M25666</link>
      <description>&lt;P&gt;Dear &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/7002121"&gt;@hyrro_velasquez&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It makes sense to copy the content folder on the server as well, since all Plant 3D project employees can then access the same content.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Dec 2020 08:30:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/9937790#M25666</guid>
      <dc:creator>h_eger</dc:creator>
      <dc:date>2020-12-14T08:30:49Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/10388394#M25667</link>
      <description>&lt;P&gt;I created a python custom valve with Component Designation set to "Custom" in both Catalog and Spec. It also shown on Piping.dcf(EngineeringItems) as "Custom"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am not sure why the valve parameters not shown on the Properties tab. I tried also&amp;nbsp;Component Designation set to "Parametric". Where did I do wrong?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Gate Valve Pup.png" style="width: 160px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/930115iFCFC38FDF130F7D9/image-size/small?v=v2&amp;amp;px=200" role="button" title="Gate Valve Pup.png" alt="Gate Valve Pup.png" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 11:03:10 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/10388394#M25667</guid>
      <dc:creator>Ray_K</dc:creator>
      <dc:date>2021-06-14T11:03:10Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/10388404#M25668</link>
      <description>&lt;P&gt;Dear &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9215414"&gt;@Ray_K&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This post should provide information about your problem&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://in-the-pipes.typepad.com/in_the_pipes/2017/12/sunnyside-up-secrets-in-plant-3d-201811.html?utm_source=feedburner&amp;amp;utm_medium=feed&amp;amp;utm_campaign=Feed%3A+typepad%2FmYGm+%28In+the+Pipes%29" target="_blank" rel="noopener"&gt;https://in-the-pipes.typepad.com/in_the_pipes/2017/12/sunnyside-up-secrets-in-plant-3d-201811.html?utm_source=feedburner&amp;amp;utm_medium=feed&amp;amp;utm_campaign=Feed%3A+typepad%2FmYGm+%28In+the+Pipes%29&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 11:08:26 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/10388404#M25668</guid>
      <dc:creator>h_eger</dc:creator>
      <dc:date>2021-06-14T11:08:26Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/10388586#M25669</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/593421"&gt;@h_eger&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes, I followed the approach mentioned on that article. I tried "Custom" and "Parametric" but the parameters of my custom valve that I created using python is not working.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I specified "Custom" both on Catalog and Spec. I even check the Piping.dcl(EngineeringItems) sqllite database. I used the same manner on my Custom Pipe Supports and it works as expected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is the "component designation" applicable to all catalog components?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 12:24:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/10388586#M25669</guid>
      <dc:creator>Ray_K</dc:creator>
      <dc:date>2021-06-14T12:24:56Z</dc:date>
    </item>
    <item>
      <title>回复： "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/10389030#M25670</link>
      <description>&lt;P&gt;Dear &lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/9215414"&gt;@Ray_K&lt;/a&gt; ,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I can only test parametric valves and they work with "Custom" and "Parametric"&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-06-14_16-50-03.jpg" style="width: 364px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/930189i2CBB11C2E640C8B1/image-size/large?v=v2&amp;amp;px=999" role="button" title="2021-06-14_16-50-03.jpg" alt="2021-06-14_16-50-03.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-06-14_16-51-41.jpg" style="width: 714px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/930191iD79750B32AA17213/image-size/large?v=v2&amp;amp;px=999" role="button" title="2021-06-14_16-51-41.jpg" alt="2021-06-14_16-51-41.jpg" /&gt;&lt;/span&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="2021-06-14_16-52-13.jpg" style="width: 790px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/930192i907D1B94697B6648/image-size/large?v=v2&amp;amp;px=999" role="button" title="2021-06-14_16-52-13.jpg" alt="2021-06-14_16-52-13.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 14 Jun 2021 15:21:22 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/10389030#M25670</guid>
      <dc:creator>h_eger</dc:creator>
      <dc:date>2021-06-14T15:21:22Z</dc:date>
    </item>
    <item>
      <title>Re: "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/13740408#M61144</link>
      <description>&lt;P&gt;Hello, for "Supports" in the plant3D supports catalog, is there a way to fix the dimensions so users cannot change them?&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2025 18:19:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/13740408#M61144</guid>
      <dc:creator>Pranav_KapoorERAJN</dc:creator>
      <dc:date>2025-07-25T18:19:50Z</dc:date>
    </item>
    <item>
      <title>Betreff: "Component Designation" Column value as Custom or Parametric are not working on customize valve.</title>
      <link>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/13740415#M61146</link>
      <description>&lt;P&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/17172419"&gt;@Pranav_KapoorERAJN&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;No, this is not possible because it was introduced in Plant 3D 2016 at the request of the users.&lt;/P&gt;</description>
      <pubDate>Fri, 25 Jul 2025 18:25:40 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/autocad-plant-3d-forum/quot-component-designation-quot-column-value-as-custom-or/m-p/13740415#M61146</guid>
      <dc:creator>h_eger</dc:creator>
      <dc:date>2025-07-25T18:25:40Z</dc:date>
    </item>
  </channel>
</rss>

