Call Forms And Reports through node [message #557392] |
Tue, 12 June 2012 07:20 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
![](//www.gravatar.com/avatar/ff1041a3e38a2191ee6f89ff12a10c81?s=64&d=mm&r=g) |
xxubi
Messages: 2 Registered: June 2012
|
Junior Member |
|
|
Dear All,
i have a hierarchy tree menu look like this
+GL
Accounts
Inform
+Export
Export Entry Form
+Security
New User Entry
when i click Gl==>Accounts, accounts form opens
and i want call my forms and reports through nodes
Kindly can any one tell me how i call my forms and reports.
thnks
regards,
zubair saleem.
|
|
|
Re: Call Forms And Reports through node [message #557947 is a reply to message #557392] |
Mon, 18 June 2012 04:08 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
![](//www.gravatar.com/avatar/23c5ca4907abe6baaaa8ab845749b7a9?s=64&d=mm&r=g) |
praveenpraj
Messages: 21 Registered: October 2011 Location: India
|
Junior Member |
|
|
1. While populating the tree, you will be specifying the label & data(value) for each node.
2. During that time, assign the name of the oracle form or report in data(value) portion.
For ex:- Label : "Export Entry Form". Value : "MYFORM_EXPENTRY.fmx"
3. Finaly while double clicking the tree node, if the form has to be opened, give the below code
in the "WHEN-TREE-NODE-ACTIVATED" trigger under the tree Item
v_frm_name:=ftree.GET_TREE_NODE_PROPERTY('mytree',Ftree.GET_TREE_SELECTION('mytree',1),ftree.node_value);
open_form('C:\myforms\'||v_frm_name,activate,session);
[Updated on: Mon, 18 June 2012 04:16] Report message to a moderator
|
|
|