Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Form Code Execution

431667Feb 18 2011 — edited Feb 23 2011
Hi,
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
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 23 2011
Added on Feb 18 2011
15 comments
511 views