Recently active
Hi, I tried doing the same and was able to reset the password and user. But it still does not do anything and does not let me access the settings to activate the "Interactive" mode. My intention is to do DDE from/to an Excel sheet as well. I must say that my Kepserver install is still a DEMO. Is this the reason why it won't let me? In addition, Can you provide DETAILED instructions to use the Excel RTD function? ProgID name, Server Name (location), and the nomenclature for the specific items. An example would be very nice to have. All the above is me testing with the DEMO before deciding to License. Thanks in advance
Hi all, I am using Thingworx 8.4.3 and Kepware 6.6. I have established the connectiving between Thingworx and Kepware successfully. But somethime there is an error on Kepware "Device is not Responding", but I don't see any change in my signals. The quality of signals is good. I want to raise an alert/ alarms whenever this error occurs. Is there any way where I can store this error into some Tags on kepware and then fetch that tag to thingworx and then raise an alarm or from kepware itself an alram can be generated ? Thank you!
Hello! Currently I'm working on a custom widget that is supposed to take up the full width of the mashup it's contained in, but add certain amounts of scrolling. Unfortunately, default CSS values seems to have come into conflict. There are two parts that caused concern, one which is now solved.I can get the desired visual results I want by editting the CSS the page directly post render on the web browser. The two divs below both need to have a css tag of width:100% to be functional. To do so on the parent was relatively easy using jquery's parent function on the name of my widget "widget-costestimatetile" in the afterRender function. However, when trying to set the css of "widget-costestimatetile" directly, as shown in the image below, a static width is appended, overriding this. I've used the step-through function in firefox debugging to confirm my suspicion that this was being over-written after the afterRender function was executed.Upon further investigation we realized that this nu
Hi, I would like to ask for suggestion to embed Google Analytics or Microsoft Clarity into ThingWorx. Is it possible to do it via HTMLTextArea?
Hello,Can anyone tell me how Things["ptc-windchill-integration-connector "].GetProxyURL() is functionning. I must replace this service by a customized service in thingworx but I don't know how it works Thank you in Advance Anass
I am trying to figure out an easy way to find all User Groups for a Given User. I know how to find User Groups for the logged in User, just not for other Users. Someone had mentioned using a GetGroups service for a specific user but I don't know where that is located in Composer. Any help here will be appreciated.
Hello Everyone, Can you please attach if there is any Service that could return the total number of properties of a particular Thing entity ? Thanks in advance! Regards,Anjali
Hello All, Hope to seek advice on TWX Foundation - MSSQL v9.3.5.i am not to sure what mistake i made. In my previous installation for v9.2.0, after installation, i will have some ThingsTemplate, and i have the Database Things Template to configure and test the MSSQL connection. But in this installation v9.3.5, i am not able to locate any things template. Can anyone provide me with some guidance?Please do let me know the changes in V9.3.5? is there additional extension require? Thank you in advanceBest regardsNewbie Kek
Hi, I have created a Custom UI extension using an External Library -Plotly. JS.When I first load the mashup using View Mashup from mashup, the widget doesn't load properly, and when I click reload( not Tab reload, its the Reload button which shows up when we click on view mashup), it works perfectly. And if I reload the tab completely, again for the first time it doesn't work properly Another Scenario- I have added a contained Mashup and One of the mashups which loads in contained Mashup has the new widget. The first time I load the contained mashup with the UI widget, it does load properly. If I change the contained mashup and then change it back to the contained mashup( I have 2 buttons to load different mashups with different graphs in contained mashups) with the UI widget, it works perfectly.Can someone help me how resolve this issue? Thanks in advance. I am using Thingworx 9.1.6 version
Hi all,is it possible to block specific IPs when a thing wants to communicate with the server? Thanks in Advance
Hello all,is it possible to temporarily share a thing with its parent tenant.Thanks in advance
Hi all,is it possible to generate new tennants via API? Thanks in Advance
Hi Team, Suppose I want to export all the device things belonging to one template in one shot so that we can import those device things in other environment.How can we achieve this? Note:- We are not using model tags and hence can we do export on the basis of ThingTemplates? (Using TWX v9.3.3) Thanks in advance.
Hi, I am not able to find the guides and learning path of Developer portal in PTC Community. I need it very badly. Please help. Regards,Anjali
Hi all, All is in the title. Thanks.
Hi Experts, I have Azure AD integrated with Thingworx using ThingworxSSOAuthenticator and I have added Administrator and one thingworx created local user in the exclusion list. But having SSO Authenticator enabled, Administrator/Other user doesn't login. I am using Thingworx 9.3.
Hi all,I have a requirement that i need to name a column in a infotable as a blank space. I could not able to add a space in it . It throws a error in the grid. Is there any possible way to do that ?
Hi everyone, I keep getting this error when running my service: Index 500 out of bounds for length 500 How do I go about fixing this?Regards,
For developers who are developing Analytics Manager agents using the .NET agent SDK, this SDK will no longer be supported after the ThingWorx 9.4 release. The JAVA SDK for Analytics Manager agents will continue to be available and you should look to move to that version for custom Analytics Manager agents going forward. (Please note that this is specific to the Analytics Manager .NET agent SDK) Please reach out if you have any questions or have existing .NET analytics manager agents in use. Reference the following support article: Article - CS379478 - ThingWorx Analytics - End of .NET SDK support for ThingWorx Analytics Manager (ptc.com)
Digital Performance Management customers who are installing the version 1.2 of the solution within their environment ("on prem") are now able to configure and use the Time Loss Analytics functionality. Previously, only customers of DPM v1.2 that were running in the PTC Cloud were able to utilize this feature. For customers that have already installed DPM version 1.2, you do not need to install any updates to DPM or the ThingWorx platform. You only need to perform a few additional configuration steps to enable Time Loss Analytics. Please note that this functionality does require the installation of Analytics Server before configuring the functionality. Below are links to deployment and configuration required to enable the Time Loss Analytics functionality:Deploying DPM Using Solution CentralDeploying DPM Using the PTC Software Downloads PageUpgrading DPM Using Solution CentralUpgrading DPM Using the PTC Software Downloads PageInitial DPM Administ
I have doubts how to solve a certain problem.I have big table of numbers in DATATABLE.- Each row may have a different date- I need to sum the numbers in the rows- Then take the arithmetic average of the numbers in the row- Then I need to be able to select the date (range) to calculate the average of all days(rows) in the selected range.I am wondering how I should go about this.How to divide the whole task into services?
I am creating one generic service to return the infotable values as HTML codes in the format of string output. But unable to fetch the column values dynamically, for ex: my column names are stored in the array as ['col1', 'col2'], etc... If I pass these values in for loop(row.array[0]) to iterate the column values, the service returns undefined for the values. code: const table = me.testTable; // columns: count, name let fieldNameArr = [];function createMainTable() {var fields = table.dataShape.fields;for (let fieldName in fields) {fieldNameArr.push(fieldName);}var cols = table.getFieldCount();var rows = table.rows.length;var drawTable = '<table>';for (var i = 0; i < rows; i++) {let row = table.rows[i];drawTable += '<tr>';for (var j = 0; j < cols; j++) {let fieldName = fieldNameArr[j];columnValue = row.fieldName;drawTable += '<td>' + columnValue + '</td>';}drawTable += '</tr>';}drawTable += '</table>';return drawT
Hi all,is it possible to access the SSO (Single sign on) configuration via REST? Thanks in advance.
Hi community, hoping you are well, I am writing to ask you about the capabilities of Thingworx Analytics.In the field of predictive maintenance, one of the key objectives is the detection of failure conditions before they present themselves. Concerning that, we'd like to know how that can be implemented in Thingworx Analytics.For example, say you want to predict a pump failure. Failure conditions are known (e.g. zero pressure), and past data is labeled with a boolean "ok/fail" for each timestep. The main objective is not to know the status of the pump given the current conditions, but to predict whether the pump will fail in the short term, given the current trends in the data.We've previously developed a model which can give an estimate of the current condition of a machine. The model was trained using historical time-series data. However, we're unsure of the way forward for developing a predictive model, which can give an estimate of the probability of a failure condition in the futu
Hi all,The goal is to be able to shutdown and restart the application or the server through a internal service. Is it possible ? Thanks.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.