This document instructs how to create a procedure via Command Manager to get expiration date of a subscription. Follow steps are performed with Tutorial project:


ResultSet list=executeCapture("LIST ALL PROPERTIES FOR SUBSCRIPTION GUID A3F7968A40E0357E302001B940118B99 FOR PROJECT 'Strategy Tutorial';");
list.moveFirst();
ResultSet oResultSetSubProps = (ResultSet)list.getResultCell(SUBSCRIPTION_RESULT_SET).getValue();
oResultSetSubProps.moveFirst();
String subscriptionType=oResultSetSubProps.getFieldValueString(DisplayPropertyEnum.EXPIRATIONDATE);
printOut(subscriptionType);
