Script to create a Change Request is no longer working for me...
I have some script that has been working for months...
String varName = <some text>;
String varDesc = <some text>;
<some code>
wt.change2.WTChangeRequest2 cr = wt.change2.WTChangeRequest2.newWTChangeRequest2();
cr.setName(varName);
cr.setDescription(varDesc);
<more code>
cr = (wt.change2.WTChangeRequest2) wt.fc.PersistenceHelper.manager.save(cr);
The result was a new Change Request with my preset field values for my business case. As of today, this code fails on the cr.setDescription() call with the following message:
Message: Resource bundle/Message key = wt.introspection.introspectionResource/21
I haven't found any reason or solution yet... but I am assuming someone has. Anyone have some ideas?



