Recently active
Hi,i have created mashup and using collection widget. In base mashup i used bar chart and gave some state definition according to the values and color code. but after binding the base mashup with collection widget it's not showing data according to state definition. Below sharing screenshots of color code and collection mashup:-1:- color codes according to values2:- collection widget screenshot
It seems that when I combine infotables with "union" their meta data do not get combined. Is there a way to combine the meta data as well? Meta data are fields such as source, timestamp, tags, location, etc. The infotables are query results from a data table. When I set the output of the service as "INFOTABLE" and "infotable type" to "is Data Table", I still do not get the meta data. let tableLength = someInfoT.rows.length; for (let x = 0; x < tableLength; x++) { let row = someInfoT.rows[x]; //Your code here let query = { "filters": { "type": "And", "filters": [{ "type": "EQ", "fieldName": "SomeID", "value": row.SomeID }, { "type": "LT", "fieldName": "SomeDate", "value": oneYearAgo } ] } }; let queryResult = Things["SomeDataTable"].QueryDataTableEntries({ maxItems: undefined /* NUMBER */ , values: undefined /* INFOT
Hello,I have 10 things(eg.) which has a common service called fun1() which outputs Infotable as result by making an external API call.I would like to union the infotable results from all the 10things fun1() call finally.Instead of looping through each thing and waiting for the output, I would like to run them in parallel as the output is independent of each other and finally once we get the result of all i have to union them to give one result. What is the best approach in Thingworx. Thank You!!
This is so sad news for iOS user's including me. are you sure there is no iOS version of this app is available on Apple App store or any extension for the apple. gb whatsapp
Hi Team,I'd like to check whether KB5004442 impact on all connections between TW(9.2.3) tools and other servers or not.
Hi All,There was an error while creating things with the service as a non-administrator user. (I also granted permissions in to the EntityServices for user and Usergroup. In theThingWorx version : 9.1I'm getting this error: JavaException: com.thingworx.common.exceptions.InvalidRequestException: Not authorized for Create.>>Concerning the issue, I need assistance.regards,hareef
Hi everyone, I want to migrate data from postgres to influx db. I followed This Link and was able to migrate the data. The data available in postgres is around 16.34 MB. When I tried to migrate the whole data, it gave me an error "Import failed com.thingworx.common.exceptions.DataAccessException: [2,000] Error occurred while accessing the data provider. {}". So I tried to import approx. 1MB of data, and it worked successfully. Now I am trying to migrate the data using SQL queries, is there any article which gives what steps has to be followed. @VladimirN @AnnaAn @paic @slangley @CarlesColl @c_lowy Thank you!!
Hi All,I'm trying to use the free trial for Thingsworx, my main aim is to collect data from end device and display in Thingworx dashboard.I'm using this link to download Thingsworx platform:http://support.ptc.com/help/servigistics/remote_service_72/index.html#page/Servigistics_Remote_Service_Help_Center/rs_install_config_installing_tw_platform.htmlHowever, I'm getting Access Denied - Insufficient Privileges screenshot page is attached with this ticket. Is thingsworx platform only for licensed users?
Hello everyone, I am working with GitBackup Extension with Thingworx to push and pull entities from DevOps. I want to push some csv files which are stored in FileRepositories of Thingworx to DevOps and vice-versa. Please let me know, if anybody know anything about it. Thanks,Meghna
MachNation Podcast Replay: Enterprise-Specific Implementation Testinga podcast, by Mike Jasperson, VP of the IoT EDC MachNation, a company exclusively dedicated to testing and benchmarking Internet of Things (IoT) platforms, end-to-end solutions, and services, has conducted a recent podcast series featuring our very own Mike Jasperson, Vice President of the IoT Enterprise Deployment Center here at PTC. Performance IoT is a podcast series that brings together experts who make IoT performance testing and high-resiliency IoT part of their IoT journey. Mike Jasperson's podcast is episode 5 in the series, titled: Enterprise-Specific Implementation Testing . Enjoy!
As per this thread - same problem: I get the same issue, any update on this???
Hi, Can you please upload progress gauge extension. Related post
Hi Thingworx Community, Has this been achieved by someone via Thingworx? A few different approaches have already been tested, for example:1. Using directly the PostImage snippet to generate a POST request to the SharePoint API2. Uploading a file via Repository, converting to Binary (via snippet service) and using POST service snippet Those approaches didn't yield results as the SharePoint API doesn't return anything meaningful in the RestAPI responses. I wanted to know if someone has achieved that use case and what might be failing in my approach. Regards
Hi,i want to set influxdb for my streams and value streams however i dont know how to get previous data from postgres. the current method of importing and importing thing is quite tedious as i have 100gb of data and no of facilities. is there any other method. thanksAdarsh
As per this thread - same issue Hi @slangley and @newieKek I'm trying to do the same and I'm stuck at the same point with the same error, can someone clarify me the solution? Do I need to create a different database manually? Or just need to use a user with rights for creating a new database? Please let me know if you need more clarifications on my end to help me. Regards, Gerard
Hello,we are experimenting with the retrieval of pvz resources from windchill for AR purposes using thingworx Flow. In particular, the "get viewable" routine is capable of getting pvz files except for positioning assemblies. In this case, the pvz file has a 0 KB size. How to build a proper pvz also for this type of structure?
Hi Team,I have to create a ML Model in TWX Analytics using an external PMML file. Can I get some relevant guides or articles most suited to start my job?PS: I am using TWX 9.3 Thanks & Regards,Ankit
When I get the current time with,var currentTime = new Date();I get a datetime in UTC, which is fine, and the correct UTC time. But I need to convert that time to local New Zealand time is order to submit a correct request to the Process Historian API. How can a JavaScript Date be converted to a local time string?
Hi All,We are trying to add functionality to the advanced grid widget where double clicking a cell would copy to clipboard whatever is contained in the cell.What would be the security risk of adding javascript to the page if that code is not being run on the server side, and only on the client side.How would this be any different from someone running code through the inspect tool of their browser?Other useful scenarios would be to do client-side processing for manipulating the DOM without constant calls back to the server to run services.Thanks in Advance.Thanks,Sakshi Sikarwar
We was using 10 datetime remote properties in Thing from Thingtemplate in all services. Hereafter those properties wont receive data from device. So we planned to pass new Date() time in all services. Is there any option to set current time in all those properties directly instead of editing all services. ??
So, I've had a problem with data table keys for a while now. When I set a number field as the primary key for a Data Shape and it gets used by a data table, the "key" field gets type-casted in a weird way. Whereas the data shape's field, say "Item", is filled with the number "10", the key field is stored as a string and the "Item" field gets type-casted that way and the resulting string ends up being "10.0". This results in problems when you try to search by the number "10", it will say that there is no such key. I've been programming around this problem, but I'm starting to get worried about future upgrades to ThingWorx causing problems for me. Is this going to be a problem for me in the future? Has it been fixed since ThingWorx 8.5? Is there a way to stop ThingWorx from adding the extra ".0"? Any help would be greatly appreciated.
Tried this but didn't work. ptcs-chart-line>.ptcs-chart-layout>.ptcs-chart-zoom-slider>.slider-container>.zoom-slider>.ptcs-slider>.grid::track{height: 15px;top: calc(50% - 7px);} Can somebody tell me how to target a particular element and add css styling?
Hello , I want to add a background image to the advanced grid , or make it transparent .So is it possible to do so. I have tried it , but the background is applied to only empty part of the grid , but not to the rows filled with data.
Hi,I'm trying to connect thingworx to influxdb but getting an error saying: Unable to update PersistenceProvider: Unable to connect to the PersistenceProvider: testInfluxcan anyone tell where i'm going wrong. ThanksAdarsh
Hi,I am trying to make connectivity with remote industrial connection thing and PostgreSQL database, any guide or steps to follow to insert the remote thing industrial connection data into the Postgres SQL database.could you please help me with this connectivity and data insertion of streaming data, I am using the Thingworx 9 version and Postgres sql database?
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.