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

Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X

How to remove the user picker requirement

OnurNalbantoglu
13-Aquamarine

How to remove the user picker requirement

In Windchill, I can't leave the new fields I created blank, it has made it mandatory to be filled automatically. How to remove the user picker requirement

ACCEPTED SOLUTION

Accepted Solutions

The requirement for picking items in an entry form in Windchill is controlled by the OIR for that object. You will need to redefine the OIR so it does not require an entry for your fields or populate those fields with an auto-generated number or a fixed value.

View solution in original post

2 REPLIES 2

The requirement for picking items in an entry form in Windchill is controlled by the OIR for that object. You will need to redefine the OIR so it does not require an entry for your fields or populate those fields with an auto-generated number or a fixed value.

I noticed a code for this in the build part, I fixed it.

 

I added the following to the xml file, changed the "true" part to "false" and it was fixed.

 

               void setRequired(String component_id, Object object, PickerInputComponent pickerComponent, ModelContext mc) throws WTException {

                              boolean isRequired = true;

                              pickerComponent.setRequired(isRequired); m

Announcements

Top Tags