What is ZOOM?How it works?

Showing Answers 1 - 2 of 2 Answers

sameer

  • Jan 14th, 2006
 

zoom is a function provided by apps which can be used to call another form from a form.for making zoom available for ur form u have to customize the custom.pll. u hav to add a branch stating if form name(specify form name) and blockname(specify blockname)then amke zoom available.

  Was this answer useful?  Yes

Zoom allows the addition of user-invoked logic on a per-block basis. For example, you may want to allow access to the Vendors form from within the Enter Purchase Order form while the user is in the PO Header block of that form. You can enable Zoom for just that block, and when the user invokes it, you can open the Vendors form. Example code here:--function zoom_available return boolean is form_name varchar2(30) := name_in('system.current_form'); block_name varchar2(30) := name_in('system.cursor_block'); begin if (form_name = 'DEMXXEOR' and block_name = 'ORDERS') then return TRUE; else return FALSE; end if; end zoom_available; Cheers Madhu.

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions