steps creating custom form using template.fmb
(Before going to design form we need to change the forms_path
win+R------> regedit ------> HKEY_LOCAL_MACHINE -----> software ----->oracle -----> Devsuite Home(---) ----> form_path or form60_path --------->(right click) modify paste your resourse folder path
1) open the template.fmb ( hope u have done all the prerequisite required by coping necessary plls in right path)
2) create new datablock ( xx_block)
3) create canvas (xx_can)
4) block -> item attribute canvas property , select newly created canvas ( xx_can)
3) create new window (xx_win) change the defalut canvas property (xx_can)
4) form property , associate newly created block to first_navigation_block property
5) in pre_form trigger change then window name
app_window.set_window_position('XX_WIN', 'FIRST_WINDOW');
Note: You need to change the template name in "WHEN_NEW_FORM_INSTANCE"
6) custom package app_custom , change the window name for ---eg if (wnd = 'xx_win') then
for closing and opening of window
7) compile the form
8) In apps create form , function using application developer responsibility
9) attached form to the menu
10) try to open the form.
(Before going to design form we need to change the forms_path
win+R------> regedit ------> HKEY_LOCAL_MACHINE -----> software ----->oracle -----> Devsuite Home(---) ----> form_path or form60_path --------->(right click) modify paste your resourse folder path
1) open the template.fmb ( hope u have done all the prerequisite required by coping necessary plls in right path)
2) create new datablock ( xx_block)
3) create canvas (xx_can)
4) block -> item attribute canvas property , select newly created canvas ( xx_can)
3) create new window (xx_win) change the defalut canvas property (xx_can)
4) form property , associate newly created block to first_navigation_block property
5) in pre_form trigger change then window name
app_window.set_window_position('XX_WIN', 'FIRST_WINDOW');
Note: You need to change the template name in "WHEN_NEW_FORM_INSTANCE"
6) custom package app_custom , change the window name for ---eg if (wnd = 'xx_win') then
for closing and opening of window
7) compile the form
8) In apps create form , function using application developer responsibility
9) attached form to the menu
10) try to open the form.
No comments:
Post a Comment