Form Code Execution
431667Feb 18 2011 — edited Feb 23 2011Hi,
Is it possible that we can execute the Oracle Form code on the fly, like PL/SQL Code using the Execute Immediate.
Scenario
Declare
lv_block_name Varchar2(100);
lv_item_name Varchar2(100)
Begin
lv_block_name := :System.current_block;
IF lv_block_name = 'XYZ' Then
lv_item_name := :system.current_item;
.....
end;
I have store this sample code in the database, and I goona pass this code to the Oracle Form library and want it execute in the Library..... Any solution or idea...
Thanks,
Edited by: Mohsin on Feb 22, 2011 1:18 PM