Set Date Attribute Blank or null using agile sdk

Hi All.
I need to set date attribute as blank or null is there any sdk method so that i can nullify this attribute.
Please let me know.
Thanks in advance

Agile User Asked on September 6, 2018 in Agile PLM (v9),   Product Collaboration.
Add Comment
1 Answer(s)

A sample piece of SDK code:

IChange change = (IChange)session.getObject(IChange.OBJECT_TYPE, “C00011”);
change.setValue(ChangeConstants.ATT_PAGE_THREE_DATE01, null);

Agile Expert Answered on September 6, 2018.
Add Comment

Your Answer

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