How do I access parameters passed to an Oracle form through a URL. For example, given the URL:
http://example.com/forms90/f90servlet?config=cust&form= 'a_form' & p1 = something & p2 = else
This will launch the "a_form" form using the "cust" configuration, but I cannot work (or even if it is possible) to access p1 (with the value "something") p2 (with the value 'else')
Does anyone know how I can do this? (Or even if it is / impossible?
thank
Inside the forms, you can access the parameters p1 a p2 as follows:
eg.
if :PARAMETER.p1 = 'something' then do_something; end if;
.
, oracle.com, URL. form90 (config ..) "otherparams", . ( "+": ,
http://server.com/forms90/f90servlet?config=test&otherparams=param1=something+param2=else
Source: https://habr.com/ru/post/1697306/More articles:Is it possible for one of the applications to support multiple context paths in Tomcat? - javaHow to use genshi.builder to programmatically build an HTML document? - pythonRestoring a SQL Server database from a single instance to a cluster - sql-server-2005How to avoid the dangers of optimization when designing for the unknown? - optimizationWhat services did you use for design work for your programming on the website? - designAccessing files over a Windows network with a maximum length of MAX_PATH - c ++CI Code Reviews - continuous-integrationInternet Explorer 8 beta 2 and standards - standardsHow to use one object method to update another object attribute? - c ++Internal elements of selenium - .netAll Articles