Method clearValue on mandatory checkbox field does not let submit Catalog ItemDescriptionUsing the method clearValue on a mandatory checkbox field will not allow to submit the Catalog Item.Steps to Reproduce 1. Create a new Maintain item through sc_cat_item.do:- Name: Test checkbox- Save2. Create the following variables:a1. Type: Select Boxa2. Mandatory: Truea3. Active: Truea4. Order: 100a5. Question: testa6. Name: testa7. Create two question choices:a7.1. Text: TEST1a7.2. Value: TEST1a7.3. Order: 100a7.4. Text: TEST2a7.5. Value: TEST2a7.6. Order: 200b1. Type: Labelb2. Order: 200b3. Question: labelb4. Name: labelc1. Type: CheckBoxc2. Active: Truec3. Order: 300c4. Question: checkbox1c5. Name: checkbox1d1. Type: CheckBoxd2. Active: Trued3. Order: 400d4. Question: checkbox2d5. Name: checkbox23. Create a Catalog Ui Policies for the Maintain Item:- Short description: test- Active: True- Catalog Conditions: test is TEST2- On load: True- Reverse if false: True - Applies on Requested Items: True- Run scripts: True:Execute if false:function onCondition() {g_form.clearValue('checkbox1');g_form.clearValue('checkbox2');}4. Create the following Catalog UI Policy Actions:a.1. Variable name: checkbox1a.2. Mandatory: Truea.3. Visible: Truea.4. Read only: Leave alone b.1. Variable name: checkbox2b.2. Mandatory: Trueb.3. Visible: Trueb.4. Read only: Leave alone 5. Try the Maintain Item.6. Select TEST2 for the Select Box test.7. Select checkbox2.8. Click on Order Now. The Request is not submitted and a popup message shows: "The following mandatory fields are not filled in: label".WorkaroundAfter carefully considering the severity and frequency of the issue, and the cost and risk of attempting a fix, it has been decided to not address this issue in any current or near future releases. We do not make this decision lightly, and we apologise for any inconvenience. As a workaround, in the Catalog UI Policy, use the following code in 'Execute if false':function onCondition() { g_form.setValue('checkbox1', false); g_form.setValue('checkbox2', false);}Related Problem: PRB1111173