<?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 Re: Table parameter indexing by (1) on every insert in Customization</title>
    <link>https://www.ptcusercommunity.com/t5/Customization/Table-parameter-indexing-by-1-on-every-insert/m-p/1035713#M14498</link>
    <description>&lt;P&gt;Yes, you can. You only need to think about how edit should work. If you say that you never delete one id, you have only to deal with parameter search. Pagination should be done by the user, Without testing it I would assume, that pagination is possible for a none repeat table. Rather to insert a new table for each ID, increase the number of rows by one, and have a small interface for inserting the new parameter and value.&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 25 Sep 2025 02:05:27 GMT</pubDate>
    <dc:creator>RPN</dc:creator>
    <dc:date>2025-09-25T02:05:27Z</dc:date>
    <item>
      <title>Table parameter indexing by (1) on every insert</title>
      <link>https://www.ptcusercommunity.com/t5/Customization/Table-parameter-indexing-by-1-on-every-insert/m-p/1035700#M14497</link>
      <description>&lt;P&gt;I have an identification table (1 row) that I insert into a drawing and it contains &amp;amp;ID1:D.&lt;/P&gt;&lt;P&gt;When I insert the table I get flagged with the 'ADD PARAM' menu.&amp;nbsp;&lt;/P&gt;&lt;P&gt;From here I select string, type my new value, and &amp;amp;ID1 gets added as a parameter in my drawing.&lt;/P&gt;&lt;P&gt;I would like to be able to add a 2nd ID table that gets bumped to &amp;amp;ID2:D, so that on every table insert I get an additional parameter created in my drawing.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These id's can range to well over 100. So simply creating (2) different tables, one with ID1 and one with ID2, will not solve my problem.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is this even possible?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;</description>
      <pubDate>Wed, 24 Sep 2025 21:54:07 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Customization/Table-parameter-indexing-by-1-on-every-insert/m-p/1035700#M14497</guid>
      <dc:creator>MORECREO</dc:creator>
      <dc:date>2025-09-24T21:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: Table parameter indexing by (1) on every insert</title>
      <link>https://www.ptcusercommunity.com/t5/Customization/Table-parameter-indexing-by-1-on-every-insert/m-p/1035713#M14498</link>
      <description>&lt;P&gt;Yes, you can. You only need to think about how edit should work. If you say that you never delete one id, you have only to deal with parameter search. Pagination should be done by the user, Without testing it I would assume, that pagination is possible for a none repeat table. Rather to insert a new table for each ID, increase the number of rows by one, and have a small interface for inserting the new parameter and value.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 02:05:27 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Customization/Table-parameter-indexing-by-1-on-every-insert/m-p/1035713#M14498</guid>
      <dc:creator>RPN</dc:creator>
      <dc:date>2025-09-25T02:05:27Z</dc:date>
    </item>
    <item>
      <title>Re: Table parameter indexing by (1) on every insert</title>
      <link>https://www.ptcusercommunity.com/t5/Customization/Table-parameter-indexing-by-1-on-every-insert/m-p/1035728#M14499</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;it is not possible using OOTB Creo functionality.&amp;nbsp;It requires programming knowledge.&amp;nbsp;I can imagine that I would be able to add the required functionality using an AutoIT script (but I don't want to try it).&lt;/P&gt;</description>
      <pubDate>Thu, 25 Sep 2025 05:35:55 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Customization/Table-parameter-indexing-by-1-on-every-insert/m-p/1035728#M14499</guid>
      <dc:creator>MartinHanak</dc:creator>
      <dc:date>2025-09-25T05:35:55Z</dc:date>
    </item>
    <item>
      <title>Re: Table parameter indexing by (1) on every insert</title>
      <link>https://www.ptcusercommunity.com/t5/Customization/Table-parameter-indexing-by-1-on-every-insert/m-p/1036190#M14504</link>
      <description>&lt;P&gt;Yes I know, the request is &amp;amp;ID&lt;FONT color="#0000FF"&gt;* (of the drawing) &lt;/FONT&gt;but I would recommend a report table for the attached model. and this is possible without programming, and Martin, please use '&lt;FONT color="#FF0000"&gt;As far "I" know&lt;FONT color="#000000"&gt; it is not ... '&amp;nbsp;!&lt;/FONT&gt;&lt;/FONT&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;Create a Table&lt;/LI&gt;
&lt;LI&gt;Add a simple Repeat Region (I used 2 columns, for the correct sort)&lt;/LI&gt;
&lt;LI&gt;As repeat data enter:&amp;nbsp;mdl.param.name and mdl.param.value&lt;/LI&gt;
&lt;LI&gt;Add the filter&amp;nbsp;&amp;amp;mdl.param.name == id*&lt;/LI&gt;
&lt;LI&gt;Sort by&amp;nbsp;&amp;amp;mdl.param.name Forward (without it is sorting by creation order !, maybe you can sort&amp;nbsp;mdl.param.value by mdl.param.name for the single column)&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Now you only&lt;span class="lia-inline-image-display-wrapper lia-image-align-left" image-alt="Repeat Model Parameter of ID*" style="width: 999px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/128984iBFB382649643D0C0/image-size/large?v=v2&amp;amp;px=999" role="button" title="doc01034.png" alt="Repeat Model Parameter of ID*" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;Repeat Model Parameter of ID*&lt;/span&gt;&lt;/span&gt;&amp;nbsp;need to add a new parameter "ID*" in your model, and 'Voila' the table will report this.&lt;/P&gt;</description>
      <pubDate>Tue, 30 Sep 2025 04:24:34 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Customization/Table-parameter-indexing-by-1-on-every-insert/m-p/1036190#M14504</guid>
      <dc:creator>RPN</dc:creator>
      <dc:date>2025-09-30T04:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: Table parameter indexing by (1) on every insert</title>
      <link>https://www.ptcusercommunity.com/t5/Customization/Table-parameter-indexing-by-1-on-every-insert/m-p/1036500#M14512</link>
      <description>&lt;P&gt;Hi &lt;SPAN style="background: var(--ck-color-mention-background); color: var(--ck-color-mention-text);"&gt;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/726175"&gt;@MORECREO&lt;/a&gt;&lt;/SPAN&gt;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I wanted to see if you got the help you needed.&lt;/P&gt;
&lt;P&gt;If so, please mark the appropriate reply as the Accepted Solution. It will help other members who may have the same question.&lt;BR /&gt;Of course, if you have more to share on your issue, please pursue the conversation. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks,&lt;BR /&gt;Anurag&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 01 Oct 2025 13:44:27 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Customization/Table-parameter-indexing-by-1-on-every-insert/m-p/1036500#M14512</guid>
      <dc:creator>anursingh</dc:creator>
      <dc:date>2025-10-01T13:44:27Z</dc:date>
    </item>
  </channel>
</rss>

