How to create a Description of change in agile plm using groovy scripting

Hi frnd please help me out for this ASAP

Add Comment
3 Answer(s)

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

Agile User Answered on August 9, 2016.
Add Comment
Agile Angel Answered on September 21, 2016.
Add Comment

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

Agile Angel Answered on June 8, 2017.
Add Comment

Your Answer

By posting your answer, you agree to the privacy policy and terms of service.