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!

Interested in getting your voice heard by members of the Developer Marketing team at Oracle? Check out this post for AppDev or this post for AI focus group information.

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
478 views