Get URL value [message #442720] |
Wed, 10 February 2010 03:26 ![Go to next message Go to next message](/forum/theme/orafaq/images/down.png) |
tamzidulamin
Messages: 132 Registered: October 2009 Location: Dhaka
|
Senior Member |
|
|
How can i get URL value from Developer10gR1? Have any idea?
Tamzid.
|
|
|
Re: Get URL value [message #442758 is a reply to message #442720] |
Wed, 10 February 2010 07:04 ![Go to previous message Go to previous message](/forum/theme/orafaq/images/up.png) |
halim
Messages: 100 Registered: September 2008
|
Senior Member |
![infohalimdba@gmail.com](/forum/theme/orafaq/images/google.png)
|
|
I think you can do it in altenative way.
directly you can pass parameter in your developer 10g.
first you need to add to to otherparams in formsweb.cfg then
create same things in your Forms as parameter, so that when
you pass it with URL that will be capture in your parameters ..
there will be otherparams in formsweb.cfg
something like this
otherparams=buffer_records=%buffer% debug_messages=%debug_messages% array=%array% obr=%obr% query_only=%query_only% quiet=%quiet% render=%render% record=%record% tracegroup=%tracegroup% log=%log% term=%term%
samle three parameters to this like this
otherparams=buffer_records=%buffer% debug_messages=%debug_messages% array=%array% obr=%obr% query_only=%query_only% quiet=%quiet% render=%render% record=%record% tracegroup=%tracegroup% log=%log% term=%term% param1=%param1% param2=%param2% param3=%param3%
add the same three parameters in your form which you call from URL
now when you want to pass the values to these url
like
http://machine:port/forms/frmservlet?your existing¶m1=value¶m2=value¶m3=value
|
|
|