Bypass QUERY_ONLY inheritance when using CALL_FORM
My company currently maintains a customer's application built on Oracle Forms 11gR2.
And we face the following issue:
- Logged user has
- QUERY_ONLY rights on Form_1
- NO_QUERY_ONLY rights on Form_2
- When they navigate from Form_1 to Form_2, CALL_FORM is being used
- Thus, Form_2 inherits the QUERY_ONLY mode from Form_1 (as specified by Oracle Forms Documentation)
But we want to:
- Keep the navigation (with CALL_FORM)
- Have Form_2 be opened in NO_QUERY_ONLY mode anyway
Is there any known workaround for this usecase?
0