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

We are happy to announce the new Windchill Customization board! Learn more.

How to get the iteration history by Java code

BernardWielfaer
6-Contributor

How to get the iteration history by Java code

Hi,

I like to know what was the status of the previous iteration of a EPMDocument via Java code. Can someone shed a light on this please ?

Regards, Bernard

1 ACCEPTED SOLUTION

Accepted Solutions

something like following will work

for example -

QueryResult epmDocQueryResult = VersionControlHelper.service.allIterationsFrom((Iterated) myEPMDocument);

while(epmDocQueryResult.hasMoreElements()){

            final EPMDocument epmDoc = (EPMDocument) epmDocQueryResult.nextElement();

            final String epmDocumentState = epmDoc.getState().toString();

}

View solution in original post

2 REPLIES 2

something like following will work

for example -

QueryResult epmDocQueryResult = VersionControlHelper.service.allIterationsFrom((Iterated) myEPMDocument);

while(epmDocQueryResult.hasMoreElements()){

            final EPMDocument epmDoc = (EPMDocument) epmDocQueryResult.nextElement();

            final String epmDocumentState = epmDoc.getState().toString();

}

thanx

Top Tags