Hello everyone,
I just got started with PAM, and I do have a little problem and can't find the solution. I do have a Interaction Request Form with 3 radio buttons.
On the process, in a Assign_User_Task operator that is calling that IRF, I want to know which of the 3 radio's was pressed, so in a post-execution code I done this:
Like previously said, you can only use the ca_pam_isSelectRadio function inside the script of the IRF. So what I have done was using what Tom_Kouhsari explained. On my IRF, I added to each radio a value (for example: on the problem radio added the value "pr", incident radio added the value "in" and so on), then... on the operator, in the post-execution code you simply need to use this: Process.picked = Process[OpName].Var_0; (where Var_0 is the name of the form group). Process.picked will return the value of the selected radio.