Hi Experts,
I’m working with VBS in Oracle Fusion and have two LOV fields: Sales Method and Sales Stage, where the values in Sales Stage depend on the selected Sales Method.
I have a requirement where, if the Sales Stage is set to "Submission", then 3 other fields should become required.
I wrote the required condition as:
[[ $fields.SalesStage.value() == 'Submission' ]]
The issue is that the fields only become required after saving the record. When I change the Sales Stage to "Submission" in the UI, the fields do not immediately turn required (no sudden refresh).
Is there a way to make these fields required dynamically, right when the Sales Stage value is changed, instead of only after saving the opportunity?
Thanks in advance!