Community Tip - Did you get called away in the middle of writing a post? Don't worry you can find your unfinished post later in the Drafts section of your profile page. X
I'm trying to obtain the context that holds a document from a Workflow expression.
I have been studying Java Doc but actually havent found any way to do it.
Could anybody help me with a clue or a suggestion.
Regards
Solved! Go to Solution.
wt.doc.WTDocument document = (wt.doc.WTDocument)primaryBusinessObject;
wt.inf.container.WTContainer container = document.getContainer();
wt.doc.WTDocument document = (wt.doc.WTDocument)primaryBusinessObject;
wt.inf.container.WTContainer container = document.getContainer();
Thanks Matt, worked as a charm.