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

Community Tip - You can change your system assigned username to something more personal in your community settings. 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.

 

1 REPLY 1

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

Top Tags