How to access promotion target comments from a workflow
Does anyone know the syntax required to access the comments entered for each promotion object line on a promotion request?

I have the syntax necessary to loop through each object in the baseline, but these are the actual EPMDocuments and don't contain the comments that are part of the promotion request (as far as I can tell.)
wt.maturity.StandardMaturityService p = new wt.maturity.StandardMaturityService();
wt.maturity.PromotionNotice pn =(wt.maturity.PromotionNotice)primaryBusinessObject;
wt.fc.QueryResult pn_targets;
pn_targets = (wt.fc.QueryResult) p.getBaselineItems(pn);
wt.epm.EPMDocument epmDoc = new wt.epm.EPMDocument();
while (pn_targets.hasMoreElements())
{
Object obj =pn_targets.nextElement();
String objType =obj.getClass().getName();
if (objType.equals("wt.epm.EPMDocument"))
{
epmDoc = (wt.epm.EPMDocument)obj;
String epmNumber = epmDoc.getNumber().toString();
String epmName = epmDoc.getName();
String epmCADName = epmDoc.getCADName();
String epmVersion = epmDoc.getVersionIdentifier().getValue();
String epmIteration = epmDoc.getIterationIdentifier().getValue();
...
What is the syntax necessary to get each row in the promotion request itself instead of just the objects on the baseline?

