Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X
How to read attribute value named as, "Part Number" from the WTDocument creation page and perform further operation using form processor
expected - Read attribute value if it contains value then need to create WTPart with same number as passed in this attribute.
Hi @RS_10128209
In your processor, there is NmCommandBean input variable, this variable contains all what you need from the wizard
// NmCommandBean nmcb
public FormResult doOperation(NmCommandBean nmcb, List<ObjectBean> var2) throws WTException
{
nmcb.getChecked();
nmcb.getText();
nmcb.getTextArea();
}
PetrH
Hi @RS_10128209,
I wanted to follow up with you on your post to see if your question has been answered.
If so, please mark the appropriate reply as the Accepted Solution.
Of course, if you have more to share on your issue, please let the Community know so that we can continue to help you.
Thanks,
Anurag