Recently active
Hello Expert, I have a menu defined in the master mashup and i am wondering is there any way so i can instead of having teh menu there all time having it hidden and when clicking on button the menu shows up again. Regards, Yous
I list all the data i need in the advanced grid and i would like to have a button or other widget so i can export it to cvs or excel file. Thanks, Yous
Hi community, We will be using the C-SDK in a upcoming project and there are some concerns which GCC version to use. We are aiming to use GCC version 6.3.0 to port existing system to ThingWorx. In the CMakeFile C99 is mentione menaing GCC version > 4.5 should be used according to my knowledge.A bit futher down C11 is mentioned whne compiling for UWP platform. Question, do anyone know from which GCC version is recommended to run with ThingWorx C-SDK? Kind regards //JD
Hello experts, I have an infotable called XXX for example, the infotable has a datashape that has only one attribute called element, so if a add one element, from Prperties and services the infotable appears like XXX(1), if i add other element, it changes to XXX(2).... i want a service to update the number of element based on the number i will give, i mean if i give 5 the number of elements in my infotable it changes to XXX(5). Thanks, Youssef
CPU memory utilization for Apache is very very high when the Thingworx Industrial Thing is connected. It's closed to 12 Giga Byte when ThingWorx Industrial Thing is connected. CPU memory utization is near about 3 Giga Byte only when ThingWorx Industrial Thing is not connected. When I am going through application logs I can see this below log appearing multiple times. How to fix this below error? [T: TWEventProcessor-11] Error Executing Event Handler 'RunScheduler' for event Type.Thing:Entity.PTC.SCA.SCO.KPIScheduler:Event.ScheduledEvent Also is there any suggestions which we can do to lower down the memory utilization for Tomcat
I made an extension to read excel data in java. It works well. However, running this extension the next day results in a null. I don't know if this is a bug or what causes it.Please let me know if there is any opinion or solution to this phenomenon. For reference, I used thingworx 8.5.4
I have a list of entities prepared in an infotable. Looks like "Things[entityname].SetTags(params);" this code works only for things but not for media and style definition entities. Please help. try{ var selectedTags = INFOTABLE; \\(list of entities); var tableLength = selectedTags.rows.length;for (var x = 0; x < tableLength; x++) {var row = selectedTags.rows[x]; var tags = new Array();var params = {tags: "TagName:Voc"};var entityname = row.name;Things[entityname].SetTags(params); }}catch(err) {logger.error("Error @ Thing -"+me.name+", Myservice, @ line " + err.lineNumber + ": " + err);}
I am getting error origin from S.c.t.d.e.DSLProcessor. what does this error means?
In thingworx 8.4.2-b2151, the selected date in datepicker widget is not showing in grid advanced widget when passing through services. In grid advanced the date is coming like this " ??? ". How to resolve it.
Sometimes in normal window or in incognito tab of chrome browser, after loggedout the organization if we clicked browser's back button it is taking to organization's previous page. How to avoid this?
Hi All, I am using a Back Button widget in Mashup and when the common list url ends. It is redirecting to PTC Factory Console Mashup. Instead of that Can It be redirected to some other Mashup? Please let me know.
Hi team, I tried to delete entry using built-in service DeleteStreamEntry given the entry id, but it looks like this service did not delete successfully, the entry is still there. Is this an issue or any workaround to resolve this problem? Thanks.
In mozilla firefox browser of computer moniter, thingworx composer is showing in mobile view in mozilla firefox browser of computer moniter. How to change it. I attached screenshot of it.
I am writing a custom service to a Data Table to update the data table with the count and summation data from another data table. Input to the service is an infotable DowntimeData which is the infotable from QueryDataTableEntries service of another data table and below is the javascript code. When executed the Error message as in the subject is displayed. // result: INFOTABLE dataShape: ""var Category = Things["DowntimeCategoryDataTable"].GetDataTableEntries(); for(index = 0; index < Category.rows.length; index++) { DowntimeCategory = Category.rows[index].DowntimeCategory; // Provide your filter using the format as described in the help topic "Query Parameter for Query Services"let query = {"filters": {"type": "EQ","fieldName": "DowntimeCategory","value": DowntimeCategory}};var params = {t: DowntimeData /* INFOTABLE */,query: query};var result1 = Resources["InfoTableFunctions"].Query(params); DowntimeCount = result1.rows.length;DowntimeDuration = 0;for(x = 0; x < res
in organization page, how to disable copy & pasting functionality in password textbox.
Hi Team, I want to insert entire data from csv to Table using Bulk Insert, so that entire data from CSV goes to Table by connecting one time to database , please suggest is there any option in PTC Thingworx Regards, Datta
Hi all, I want to get rid of manual import/export from dev to qa/pro. Is there any way by which I can complete these kind of migration automatically? Thank you!!
I need to return a string of words without using comma and in output every word should come in a new line. Is this doable? For example, "äpple mango strawberry guava"
I face the same issue but I don't know how to resolve it. the Thingworx is installed in my computer: http://localhost:8443/Thingworx/Composer below is Kepware and Thingworx configuration:
Hello, quick installation question. I am installing Thingworx 9.2 for Windows / MSSQL / and I want to know what the main difference / benefit is between the Platform and Foundation Version of Thingworx for MSSQL Most Recent Datecode installation version? I have downloaded and installed the Platform version and working through the Java / Tomcat / SQL configurations using the PTC guide for manual installation Method, and I am wondering if using the Foundation Installer <ThingWorx-Foundation-Installer-mssql-windows-9-2-1>would simplify the installation? This is my first time installing Thingworx and wondering if anyone has some tutorials or updated documentation on the process. Thanks again,
I have several lists of things that I want to assign visibility permission to a certain level of my organization In this case MyOrganization->Root->Th->TT 1 and console user group to the runtime permission: How can I do it programatically? There is a snipet for run time: var params = {principal: undefined /* STRING */,allow: undefined /* BOOLEAN */,resource: undefined /* STRING */,type: undefined /* STRING */,principalType: undefined /* STRING */,collectionName: undefined /* STRING */}; // no returnResources["CollectionFunctions"].AddCollectionRunTimePermission(params); And a snippet for visibility var params = {principal: undefined /* STRING */,principalType: undefined /* STRING */,collectionName: undefined /* STRING */}; // no returnResources["CollectionFunctions"].AddCollectionVisibilityPermission(params); How do I change the parameters to set these permissions to a list of things? I ha
I am using autorefresh in mashup for every 15 mins & idle session timeout set to 25 mins. To handle rare case scenario, the navigation also set to organisation page if session timed out. Unfortunately the internet connection turned off for 20 mins. Now what will happen? 1. Autorefresh will work even if internet disconnected? 2. Or the duration 20 mins will be considered as idle time?? 3. If session variables loosing data, will it navigate to organisation page? 4. Or auto refresh will start work after 20 mins?
I'm using a Trial version for training, as it contains PTCDefaultProject, which has been encouraging good results in other trainings. However in developer training https://developer.thingworx.com/en/resources/guides/connect-adafruit-feather/run-arduino-demo in step 3, the tutorial asks to create a Thing called ESP8266, this thing contains abstractions for this microcontroller. In Set-03, apparently a PTC removed this thing from their base, according to the same. I would like guidance on how to proceed, in this situation, if it is possible to download a mod or even the Thing itself to continue the training. Or even if there are other training for the same microcontroller and or ESP32.
Hey guys I have an application which logs in all Users as TVUsers and uses its own authentication system. I was hoping for there to be a way to switch languages on demand without setting the language preference for TVUser. If that's confusing feel free to ask below. Thanks!
Hi, I have an prod env. I decided to have staging environment. So, cloned prod instance including the cred. certificates and access keys. If I start my clone environment is that will impact/influence my prod instance ?
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.