Refresh the Parent form of "Call_form" after Child form is closed in Oracle 10g
Posted
by DotNetDan
on Stack Overflow
See other posts from Stack Overflow
or by DotNetDan
Published on 2010-03-17T18:29:24Z
Indexed on
2010/03/17
18:31 UTC
Read the original article
Hit count: 190
oracle10g
What I need is: what trigger to use and where to put it.
I will give you an example of what I am doing.
I have a Contract form that is fully editable except the contract financial areas, which is read only. I want the user to press a button called, “change rates” and that will have a trigger “When-Button-Pressed” and call_form(UpdateFinancials);.
Now, in this screen, I have the user change the financial information such as increase the contract from 50k to 100k. Then the user saves and exits. This will then close the child form "UpdateFinancials" and show the parent form "ContractForm". The problem is, it still has all the old information on it. I need the information in the form to refresh when it gets back from the child form of the Call_Form function.
© Stack Overflow or respective owner