cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. X

How to delete the primarycontent of teh Document using api.

saitha
1-Newbie

How to delete the primarycontent of teh Document using api.

Hi friends,

How to delete the primarycontent of teh Document using api can you help me out.

Regards,

Sandeep

ACCEPTED SOLUTION

Accepted Solutions
ybagul
1-Newbie
(To:saitha)

Following works with Windchill 10.2 M10

private boolean removePrimaryContent(final WTDocument wtDoc) {

boolean isSuccess = false;

ContentItem contentItem = null;

try {

contentItem = ContentHelper.service.getPrimary((FormatContentHolder)wtDoc);

if(contentItem != null){

System.out.println("deleting contentItem: " + contentItem.getDisplayIdentity());

PersistenceHelper.manager.delete(contentItem);

isSuccess = true;

}

} catch (WTException | PropertyVetoException e) {

isSuccess = false;

e.printStackTrace();

}

return isSuccess;

}

View solution in original post

2 REPLIES 2
ybagul
1-Newbie
(To:saitha)

Following works with Windchill 10.2 M10

private boolean removePrimaryContent(final WTDocument wtDoc) {

boolean isSuccess = false;

ContentItem contentItem = null;

try {

contentItem = ContentHelper.service.getPrimary((FormatContentHolder)wtDoc);

if(contentItem != null){

System.out.println("deleting contentItem: " + contentItem.getDisplayIdentity());

PersistenceHelper.manager.delete(contentItem);

isSuccess = true;

}

} catch (WTException | PropertyVetoException e) {

isSuccess = false;

e.printStackTrace();

}

return isSuccess;

}

saitha
1-Newbie
(To:ybagul)

Hi yogesh,

Thank you,It is Working.

regards,

Sandeep

Announcements

Top Tags