E9.2 checkbox not cooperating - Form Request

paul1204

Member
Hi

I am creating an Orchestration for the Address Book, P01012.

We want to simply check a CheckBox in the Form Request but does not want to cooperate

I've tried a few thing. See Screenshot

According to this, https://support.oracle.com/knowledge/JD Edwards EnterpriseOne/2915701_1.html
It has to be either "on" or "off"

I've even created a Groovy Script that returns the string "on" and pass that into the Form Request and that doesnt do it.

How can I check this CheckBox....

Everything else is working fine

1710338459065.png
1710338581982.png 1710338526931.png


Best,
Exit(0)
 
You can set the default value to off and remove the ${} from the input variable. When calling the orchestration if you pass a Y it will check the box. Anything else it will leave the box unchecked.

Hope this helps!


1710348891990.png
 
Not sure if you are still having the issue, but this is what worked for me: when Oracle says the form request should be either 'on' or 'off', it means to literally pass the value, along with the beginning and end quote (either double quote or single quotes work). So you would pass the value 'on' or "on", not on (without the quotes)
 
As above. Set to "on" or "off". No $ or curly brackets on your variable name which should just be something like employeeYN
 
Back
Top