Skip to Main Content

Java Development Tools

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.

Calling Jdeveloper ADF Application from Oracle Forms

640822Aug 27 2008 — edited Aug 28 2008
Hallo All,

i want to call an ADF Application from Jdeveloper in Oracle Forms. I followed the exapmple here(http://www.oracle.com/technology/obe/obe11jdev/11/dvt/gant_chart_pivot_table.htm) and created the master-detail page, guage,gantts chart,pivot table . Now i am looking at the opportunity of calling this application in Forms Builder, so that when i click on a buttoun i can see the Gantt chart or Map or Pivot table i created in Jdeveloper.
Does anyone have any idea? Pls can you give me a step by step know-how of the solution?

Thanks..

Comments

ORASCN

Hi ,
Check the below,

macro #ggexception
params (#source_schema, #table_name, #target_schema, #exception_table)
begin
map #source_schema.#table_name, TARGET #target_schema.#excception_table,
exceptionsonly, insertallrecords
colmap
(usedefaults,
gg_hostname = @getenv('ggenvironment','hostname'),
gg_db_name = @getenv('ggfileheader','dbname'));
end;

Regards,
Veera

1 - 1
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Sep 25 2008
Added on Aug 27 2008
3 comments
441 views