hi everyone
I'm new to oracle forms and building my first form. I have the Master/Detail working correctly. the form looks for Customer info and related detail data.
in order to query the data via customer idnumber you have the enter_query, execute_query icons on the toolbar.
I would like to create a custom button for users to press, then enter customerid then execute automatically.
my trigger code is something like this:
WHEN-BUTTON-PRESSED
enter_query;
GO_ITEM('CUSTOMER.IDNUMBER');
execute_query;
however this is not working, any help or tips on how I can get this to work would be greatly appreciated.
thanks in advance.