Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

oracle forms

Status
Not open for further replies.

shammi

Programmer
Mar 12, 2002
1
US
how to make the form in oracle run in enter query mode by default---urgent
 
In WHEN-NEW-FORM-INSTANCE trigger:

BEGIN
Enter_Query;
END;
 
ALSO YOU CAN CALL THE FORM USING THE "CALL_FORM"
AND USE THE PARAMETER "QUERY ONLY' IN "QUERY_MODE" TO INVOKE FORMS IN ONLY QUERY MODE
CALL_FORM
(formmodule_name VARCHAR2,
display NUMBER,
switch_menu NUMBER,
query_mode NUMBER,
data_mode NUMBER,
paramlist_name VARCHAR2);

SO IT IS IMPOSSIBILE TO INSERT, DELETE OR UPDATE THE BLOCK
BYE
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top