cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - When posting, your subject should be specific and summarize your question. Here are some additional tips on asking a great question. X

How to read Attribute value using form processor and perform further process

RS_10128209
10-Marble

How to read Attribute value using form processor and perform further process

RS_10128209_0-1715170649302.png

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.

 

2 REPLIES 2

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

Top Tags