GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Oracle  >  D2K

 Print  |  
Question:  Open Form Example

Answer: Give an example for open_form with parameter passing from one form to another form?


January 01, 2009 09:09:01 #1
 Liton   Member Since: January 2009    Total Comments: 1 

RE: Open Form Example
 
sample code:

BEGIN
       CALL_FORM('FORM2',
              NO_HIDE,
              DO_REPLACE,          -- replace menu
              NO_QUERY_ONLY,
              SHARE_LIBRARY_DATA);
END;

look at the forms help for the differences between OPEN_FORM and CALL_FORM.
     

 

Back To Question