Apex 18.2.
hi,
I have a page with a master-detail interactive grids.
master ig columns : (id pk, si_id, si_type_id).
detail ig columns : (....., qty).
- I created a validation on the detail ig with type of "function that returns an error text". My code is based on the value of si_type_id column in the master ig but unfortunately, it does not see the if statement.
If TO_NUMBER(:SI_TYPE_ID) = 1
then
............
return 'quantity is greater than the original quantity';
end if;
Is it normal for Apex not to see a column in another ig other than the one I am validating?