cancel
Showing results for 
Search instead for 
Did you mean: 

retrieve the status in the contract document tab in master agreement

Former Member
0 Kudos

Hi,

I am unable to retrieve the status in the contract document tab in master agreement. Please help me if you know the code.

Regards

Swastik

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

contractsColl=doc.getContractDocuments();

contractBean =contractsColl.get(0);//retrieve the First document

phase=contractBean.getCurrentPhase().getDisplayName(session);

Phase gives the status of the contract document. in this case the Status of the first contract document.

iterate through the collection to get the individual contract documents and perform a similar operation to retrieve the respective status.

Regards

Immanuel