Autodesk PLM 360
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
String cannot be cast to com.dms.sc ripting.wr appers.Par tWrapper
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
What does this script error mean?
[WorkPack_Calcs_Create] java.lang.ClassCastException: java.lang.String cannot be cast to com.dms.scripting.wrappers.PartWrapper
this is the code:
//=========== sets the related product's Work Allocations ======================//
setLists();
//=========== sets the current Items Number ======================//
item.NUMBER = item.RELATED.CONTRACT_NUMBER + "-" + item.DECK + "-" + item.AREA;
if (item.AREA <= 9)
{item.WORK_PACK_NUMBER = item.DECK + "0" + item.AREA;}
else
{item.WORK_PACK_NUMBER = item.DECK + item.AREA;}
setLists code is:
function setLists(){
var desc = item.descriptor.descriptor;
var tempProduct = null;
if(item.RELATED_TEMP === null){
item.RELATED_TEMP = item.RELATED.descriptor.descriptor;
}
else if (item.RELATED === null && item.RELATED_TEMP !== null){
tempProduct = new parentObject(item.RELATED_TEMP.descriptor.dmsID);
tempProduct.removeItem(desc);
item.RELATED_TEMP = null;
}
else if(item.RELATED.descriptor.descriptor !== item.RELATED_TEMP.descriptor.descriptor){
tempProduct = new parentObject(item.RELATED_TEMP.descriptor.dmsID);
tempProduct.removeItem(desc);
//item.RELATED_TEMP.RELATED_WORK_ALLOCATIONS = removeItem(item.RELATED_TEMP.RELATED_WORK_ALLOCATI
item.RELATED_TEMP = item.RELATED.descriptor.descriptor;
}//end if
if(item.RELATED !== null){
var product = new parentObject(item.RELATED.descriptor.dmsID);
product.addItem(desc);
}//end if
}
function parentObject(dmsID){
this.myObject = loadItem(dmsID);
this.addItem = function(descriptor){
if(this.itemExists(descriptor) === false){
var currentValues = this.returnItems(descriptor);
currentValues.push(descriptor);
this.myObject.RELATED_ITEMS = currentValues;
}
};
this.itemExists = function(descriptor){
if(this.myObject.RELATED_ITEMS === null){return false;}
for (var i = 0; i < this.myObject.RELATED_ITEMS.length; i++) {
if(descriptor === this.myObject.RELATED_ITEMS[i].descriptor.descript
return true;
}
}
return false;
};
this.returnItems = function(){
var currentValues = [];
if(this.myObject.RELATED_ITEMS === null){return currentValues;}
for (var i = 0; i < this.myObject.RELATED_ITEMS.length; i++) {
currentValues.push(this.myObject.RELATED_ITEMS[i].
}
return currentValues;
};
this.removeItem = function(descriptor){
var currentValues = [];
for (var i = 0; i < this.myObject.RELATED_ITEMS.length; i++) {
if(descriptor !== this.myObject.RELATED_ITEMS[i].descriptor.descript
currentValues.push(this.myObject.RELATED_ITEMS[i].
}
}
this.myObject.RELATED_ITEMS = currentValues;
};
}
But the error is within the first set of code.
actually the error is within the setlists library code....
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Re: actually the error is within the setlists library code....
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Scott - which line did you comment out?
Thanks,
Michelle

Michelle Stone
PLM Product Manager
Autodesk, Inc.
Re: actually the error is within the setlists library code....
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
//=========== sets the related product's Work Allocations ======================//
setLists();
//=========== sets the current Items Number ======================//
I stopped the call to the setLists library script


