Community Tip - Want the oppurtunity to discuss enhancements to PTC products? Join a working group! X
嘿,
我想通过服务删除DataShape字段。我找到了使用Json和mathod创建DataShape来创建字段的代码片段。但是我找不到片段来删除服务中的DataShape字段。
请告诉我。
Solved! Go to Solution.
You can delete a DataShape Field using RemoveFieldDefinition.
You can follow below steps to delete DataShape field through service:
1. Create a Thing
2. Add a service
3. Provide the name.
4. Click on Other entities and search for the datashape where you want to delete the field definition.
5. Click on the service and use RemoveFieldDefinition and execute.
eg: DataShapes["testDatashape"].RemoveFieldDefinition({
name: "empName" /* STRING */
});
You can delete a DataShape Field using RemoveFieldDefinition.
You can follow below steps to delete DataShape field through service:
1. Create a Thing
2. Add a service
3. Provide the name.
4. Click on Other entities and search for the datashape where you want to delete the field definition.
5. Click on the service and use RemoveFieldDefinition and execute.
eg: DataShapes["testDatashape"].RemoveFieldDefinition({
name: "empName" /* STRING */
});
I test the snippets. It's helpful. Thanks a lot.