Oracle forms 6i question
Hello,
I have a need where based on the contact method the time zone field needs to remain grayed out.
For e.g. in the code snippet below, if user select pref_method as 'EMAIL' then the TIME_ZONE field needs to be UPDATE NOT ALLOWED.
If the user selects "PHONE" then time_zone method can be updateable.
The problem is; following code is not working. It grays out the timezone field when user selects EMAIL, but still user can navigate to the TIME_ZONE field and update.
What am I missing?
currec number := SYSTEM.CUSROSR_RECORD;
if :block_account_contact.pref_method != 'PHONE' then
I have a need where based on the contact method the time zone field needs to remain grayed out.
For e.g. in the code snippet below, if user select pref_method as 'EMAIL' then the TIME_ZONE field needs to be UPDATE NOT ALLOWED.
If the user selects "PHONE" then time_zone method can be updateable.
The problem is; following code is not working. It grays out the timezone field when user selects EMAIL, but still user can navigate to the TIME_ZONE field and update.
What am I missing?
currec number := SYSTEM.CUSROSR_RECORD;
if :block_account_contact.pref_method != 'PHONE' then
0