Hello Experts,
Apex 5.1
I have a report with check box on id column
apex_item.checkbox(2, DED_ID, decode(DED_STATUS_FLAG, 1, 'CHECKED', 'UNCHECKED')) "SELECT",
the check box shows based on status flag.
I have two requirement.
1. I want to update the DED_STATUS_FLAG column with the value (0/1) based on (checked/unchecked)
If user checked 3 rows then only that 3 rows will update with value 1
2. Again if user remove the check then DED_STATUS_FLAG also updated with value 0
How can I do this ?
Ask2Learn