How to create a Description of change in agile plm using groovy scripting
Hi Manideep.
You can set value to the description attribute. Value of Description of change depends on business what hey want. If they want any attribute information in the description thn fetch that attribute value and add into description.
Let us know if you are still not clear.
~ Kaustubh
I had just made it work using groovy script PX for Design objects.ย This is part of a script that creates a new Design file after an event.
IDesign des =
(IDesign)m_session.createObject(“Design Deliverable”, “DESIGN-0082”);
(IDesign)des.setValue(6174, “test 6/8 test”);
(IDesign)des.setValue(6390, “Concept”);
Whereย line 2ย is the new number to create (“Design Deliverable” is my subclass”); line 3 is the new description to be added; line 4 is the starting lifecycle.ย Those numbers are the base ID found on the class tab next to the attribute ID column.
Perhaps this advice helps anyone in the future