<?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: Update Downtime Status and Part Count from Service - RTPPM in Mfg Solutions &amp; Apps</title>
    <link>https://www.ptcusercommunity.com/t5/Mfg-Solutions-Apps/Update-Downtime-Status-and-Part-Count-from-Service-RTPPM/m-p/992771#M2870</link>
    <description>&lt;P&gt;Hi Satishkumar&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes it's possible to make it work without using Kepware tags. The details depends on what the information source is and may require customization.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have other properties that can receive the information, this is the easiest method. Instead of binding a Kepware tag, you can have a property (it can even be on another Thing) that has the information. When setting the tag binding (on ProductRemoteTag for example), instead of using Remotely Bound, you can select Locally Bound instead and point to the Thing &amp;amp; property that contains the value. RTPPM should use this information the same way as if it was from Kepware.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your only source of information is manual (using the screens), there's also &lt;A href="https://community.ptc.com/t5/Mfg-Solutions-Apps/RTPPM-How-to-use-in-manual-mode/m-p/990164#M2840" target="_blank" rel="noopener"&gt;this other forum post&lt;/A&gt; with essentially the same question. For the most part you need to configure it exactly as if you were using tags, but you can just leave the tag names empty. Then you can use the screens (mostly the Operator Dashboard) to push data by clicking on the buttons. It's important that all the configurations (properties, subscriptions, etc.) exist just as if you were using tags, because the buttons in the screens will read &amp;amp; write information in those properties and activate the related subscriptions, some of the buttons are essentially simulating tag values. The only part I'm not sure about is that some of the Operator Dashboard buttons might not work well if there is no initial data. My guess is if we use joborders (PTC.FSU.CORE.GlobalConfiguration.GlobalConfiguration_TG -&amp;gt;&amp;nbsp;&lt;SPAN&gt;RunWithoutWorkOrderInformation = false) then we would need a workaround to create some joborders, as the UI can only resume existing ones but not create new ones. If the global setting is set to true (don't use joborders) then I think we don't need workarounds to push initial data, but I would need to test to confirm.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your source of information is something else in Thingworx that would send values into the equipment (services for example) this is a bit more complicated. In most cases you will need to push a value into the tag property's value and Valuestream. Here is an example of code that does it for ProductRemoteTag (the product) :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;var TheValue = ENTER_VALUE_HERE;
var TheDate = new Date(); //you can enter a specific time instead
me.ProductRemoteTag = TheValue;
me.AddStringValueStreamEntry({
    timestamp: TheDate,
    propertyName: 'ProductRemoteTag',
    value: TheValue
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These are the properties where normally you would link the tags and must now be targeted by your code :&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Downtime :&amp;nbsp;DowntimeByTag_DowntimeTag (and optionally&amp;nbsp;DowntimeByTag_DowntimeTagHistory)&lt;/P&gt;&lt;P&gt;- Product :&amp;nbsp;ProductRemoteTag&lt;/P&gt;&lt;P&gt;- Joborder :&amp;nbsp;JobOrderRemoteTag&lt;/P&gt;&lt;P&gt;- Production event (batch) :&amp;nbsp;ProductionEventRemoteTag, note that in most cases this is also required to activate the product and joborder changes&lt;/P&gt;&lt;P&gt;- Production event quantity : the property who's name is in&amp;nbsp;&lt;SPAN&gt;ProductionByTagAndTime_AttributeProperties -&amp;gt; TagPropertyName&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;- Waste event quantity :&amp;nbsp;the property who's name is in WasteByTagAndTime_AttributeProperties -&amp;gt; TagPropertyName&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;For your question about the update rate of the Operator Dashboard, I believe that all the items in that screen refresh once per minute. If you do a change (for example, add a downtime using the New Downtime button in that screen), it should update at least this section immediately afterwards.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Thu, 09 Jan 2025 20:20:58 GMT</pubDate>
    <dc:creator>mstarnaud</dc:creator>
    <dc:date>2025-01-09T20:20:58Z</dc:date>
    <item>
      <title>Update Downtime Status and Part Count from Service - RTPPM</title>
      <link>https://www.ptcusercommunity.com/t5/Mfg-Solutions-Apps/Update-Downtime-Status-and-Part-Count-from-Service-RTPPM/m-p/990373#M2843</link>
      <description>&lt;P&gt;I have configured RTPPM, the downtime status and production and waste counter are the remote properties which is expected from Kepware.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Can we keep those properties as "Binding: None" and update values from service?&lt;/P&gt;
&lt;P&gt;How frequently the downtime status and part count (total production, waste count) updated in operator dashboard?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;DIV class="lia-notification-feed-timestamp lia-component-time-stamp"&gt;&lt;SPAN class="DateTime"&gt;&lt;SPAN class="local-time"&gt;PM&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/DIV&gt;
&lt;P&gt;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/721110"&gt;@mstarnaud&lt;/a&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 21 Dec 2024 17:30:06 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mfg-Solutions-Apps/Update-Downtime-Status-and-Part-Count-from-Service-RTPPM/m-p/990373#M2843</guid>
      <dc:creator>Sathishkumar_C</dc:creator>
      <dc:date>2024-12-21T17:30:06Z</dc:date>
    </item>
    <item>
      <title>Re: Update Downtime Status and Part Count from Service - RTPPM</title>
      <link>https://www.ptcusercommunity.com/t5/Mfg-Solutions-Apps/Update-Downtime-Status-and-Part-Count-from-Service-RTPPM/m-p/991518#M2850</link>
      <description>&lt;P&gt;The RTPPM models are processing data from the&lt;STRONG&gt; value_stream&lt;/STRONG&gt;. Ensure that the model properties are set &lt;STRONG&gt;Logged-True &lt;/STRONG&gt;as referred in the PTC Help Center.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="HK_9040313_0-1735847114556.png" style="width: 400px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/116447i9874B9085FAB4C37/image-size/medium?v=v2&amp;amp;px=400" role="button" title="HK_9040313_0-1735847114556.png" alt="HK_9040313_0-1735847114556.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&lt;STRONG&gt;Binding - Remotely&lt;/STRONG&gt;&amp;nbsp;is the standard method for receiving data through the Kepware ThingWorx Connector.&amp;nbsp;It is possible to keep the&lt;STRONG&gt;&amp;nbsp;Binding-None&lt;/STRONG&gt; or &lt;STRONG&gt;Local&amp;nbsp;&lt;/STRONG&gt;depending on the data source.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 02 Jan 2025 19:58:27 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mfg-Solutions-Apps/Update-Downtime-Status-and-Part-Count-from-Service-RTPPM/m-p/991518#M2850</guid>
      <dc:creator>HK_9040313</dc:creator>
      <dc:date>2025-01-02T19:58:27Z</dc:date>
    </item>
    <item>
      <title>Re: Update Downtime Status and Part Count from Service - RTPPM</title>
      <link>https://www.ptcusercommunity.com/t5/Mfg-Solutions-Apps/Update-Downtime-Status-and-Part-Count-from-Service-RTPPM/m-p/991834#M2854</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/286088"&gt;@Sathishkumar_C&lt;/a&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If you found the previous response helpful, please mark it as the Accepted Solution for the benefit of others in the community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;--Sharon&lt;/P&gt;</description>
      <pubDate>Fri, 03 Jan 2025 18:51:20 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mfg-Solutions-Apps/Update-Downtime-Status-and-Part-Count-from-Service-RTPPM/m-p/991834#M2854</guid>
      <dc:creator>slangley</dc:creator>
      <dc:date>2025-01-03T18:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: Update Downtime Status and Part Count from Service - RTPPM</title>
      <link>https://www.ptcusercommunity.com/t5/Mfg-Solutions-Apps/Update-Downtime-Status-and-Part-Count-from-Service-RTPPM/m-p/992771#M2870</link>
      <description>&lt;P&gt;Hi Satishkumar&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Yes it's possible to make it work without using Kepware tags. The details depends on what the information source is and may require customization.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If you have other properties that can receive the information, this is the easiest method. Instead of binding a Kepware tag, you can have a property (it can even be on another Thing) that has the information. When setting the tag binding (on ProductRemoteTag for example), instead of using Remotely Bound, you can select Locally Bound instead and point to the Thing &amp;amp; property that contains the value. RTPPM should use this information the same way as if it was from Kepware.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your only source of information is manual (using the screens), there's also &lt;A href="https://community.ptc.com/t5/Mfg-Solutions-Apps/RTPPM-How-to-use-in-manual-mode/m-p/990164#M2840" target="_blank" rel="noopener"&gt;this other forum post&lt;/A&gt; with essentially the same question. For the most part you need to configure it exactly as if you were using tags, but you can just leave the tag names empty. Then you can use the screens (mostly the Operator Dashboard) to push data by clicking on the buttons. It's important that all the configurations (properties, subscriptions, etc.) exist just as if you were using tags, because the buttons in the screens will read &amp;amp; write information in those properties and activate the related subscriptions, some of the buttons are essentially simulating tag values. The only part I'm not sure about is that some of the Operator Dashboard buttons might not work well if there is no initial data. My guess is if we use joborders (PTC.FSU.CORE.GlobalConfiguration.GlobalConfiguration_TG -&amp;gt;&amp;nbsp;&lt;SPAN&gt;RunWithoutWorkOrderInformation = false) then we would need a workaround to create some joborders, as the UI can only resume existing ones but not create new ones. If the global setting is set to true (don't use joborders) then I think we don't need workarounds to push initial data, but I would need to test to confirm.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If your source of information is something else in Thingworx that would send values into the equipment (services for example) this is a bit more complicated. In most cases you will need to push a value into the tag property's value and Valuestream. Here is an example of code that does it for ProductRemoteTag (the product) :&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;var TheValue = ENTER_VALUE_HERE;
var TheDate = new Date(); //you can enter a specific time instead
me.ProductRemoteTag = TheValue;
me.AddStringValueStreamEntry({
    timestamp: TheDate,
    propertyName: 'ProductRemoteTag',
    value: TheValue
});&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;These are the properties where normally you would link the tags and must now be targeted by your code :&amp;nbsp;&lt;/P&gt;&lt;P&gt;- Downtime :&amp;nbsp;DowntimeByTag_DowntimeTag (and optionally&amp;nbsp;DowntimeByTag_DowntimeTagHistory)&lt;/P&gt;&lt;P&gt;- Product :&amp;nbsp;ProductRemoteTag&lt;/P&gt;&lt;P&gt;- Joborder :&amp;nbsp;JobOrderRemoteTag&lt;/P&gt;&lt;P&gt;- Production event (batch) :&amp;nbsp;ProductionEventRemoteTag, note that in most cases this is also required to activate the product and joborder changes&lt;/P&gt;&lt;P&gt;- Production event quantity : the property who's name is in&amp;nbsp;&lt;SPAN&gt;ProductionByTagAndTime_AttributeProperties -&amp;gt; TagPropertyName&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;- Waste event quantity :&amp;nbsp;the property who's name is in WasteByTagAndTime_AttributeProperties -&amp;gt; TagPropertyName&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;For your question about the update rate of the Operator Dashboard, I believe that all the items in that screen refresh once per minute. If you do a change (for example, add a downtime using the New Downtime button in that screen), it should update at least this section immediately afterwards.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 20:20:58 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mfg-Solutions-Apps/Update-Downtime-Status-and-Part-Count-from-Service-RTPPM/m-p/992771#M2870</guid>
      <dc:creator>mstarnaud</dc:creator>
      <dc:date>2025-01-09T20:20:58Z</dc:date>
    </item>
    <item>
      <title>Re: Update Downtime Status and Part Count from Service - RTPPM</title>
      <link>https://www.ptcusercommunity.com/t5/Mfg-Solutions-Apps/Update-Downtime-Status-and-Part-Count-from-Service-RTPPM/m-p/995574#M2899</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/286088"&gt;@Sathishkumar_C&lt;/a&gt;&lt;/SPAN&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If your question has been answered, please mark the appropriate response as the Accepted Solution for the benefit of others in the community.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;--Sharon&lt;/P&gt;</description>
      <pubDate>Mon, 27 Jan 2025 19:06:16 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mfg-Solutions-Apps/Update-Downtime-Status-and-Part-Count-from-Service-RTPPM/m-p/995574#M2899</guid>
      <dc:creator>slangley</dc:creator>
      <dc:date>2025-01-27T19:06:16Z</dc:date>
    </item>
    <item>
      <title>Re: Update Downtime Status and Part Count from Service - RTPPM</title>
      <link>https://www.ptcusercommunity.com/t5/Mfg-Solutions-Apps/Update-Downtime-Status-and-Part-Count-from-Service-RTPPM/m-p/995828#M2903</link>
      <description>&lt;P&gt;Used following services to log downtime and parts from services.&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;SPAN&gt;PTC.SCA.SCO.MnfgCommonDowntimeUtils -&amp;nbsp;SaveDowntimeEvent_DWT()&lt;/SPAN&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;SPAN&gt;PTC.SCA.SCO.MnfgCommonProductionUtilsThing - AdjustProductionQuantity_PRD()&lt;/SPAN&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Wed, 29 Jan 2025 06:47:37 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Mfg-Solutions-Apps/Update-Downtime-Status-and-Part-Count-from-Service-RTPPM/m-p/995828#M2903</guid>
      <dc:creator>Sathishkumar_C</dc:creator>
      <dc:date>2025-01-29T06:47:37Z</dc:date>
    </item>
  </channel>
</rss>

