Community login and other support tools will be unavailable Saturday May 3rd 9:00 am to 3:00 pm (EST) due to planned maintenance. Learn More
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
Solved! Go to Solution.
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();
}
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