10g forms URL Portal

Please help............................
We are going to 10g using the following URL through portal
http://apphost1.univ-wea.com:7777/forms/frmservlet?form=jat_test&seperateframe=no
The issue is when you click on uRL twice and call forms it locks up each other.
I have created a shortcut with this URL. I open two forms by clikcing this URL twice.I press CTRL + F11 to query on one form. Then I go to second window to open another form. I cannot work on second form till first form is done processing.
This locking of forms does not happen when I paste this URL two times in internet explorer ( Not using the short cut I created) and initiate the form. We need this URL to be working through portal so each time you call this link it should start in new internet explorer.
Help please.....
thanks,
Anitha.

Hi,
post this thread to Oracle Forms!!!!
Simon

Similar Messages

  • How to change 10g forms url ?

    Hello,
    I developed forms in 10g forms developer and I can call my forms from web browser with default url like http://server:port/forms/frmservlet?config=myform.
    Is there anyway the change that url like http://myform.com or something?
    Thank you for your replies :)

    Well, the first thing to understand is that when you call the Forms Servlet (frmservlet) you are calling a java application and not static content like an html page. So, changing the URL isn't exactly as easy as it would be for a simple web page. On the other hand, hiding the the real URL or redirecting to the proper url can be done fairly easily.
    All of these assume you are using Application Server.
    OPTION 1 - Hide The URL +(more information can be found in MyOracleSupport note 300326.1)+
    <blockquote>There are several ways in which you can hide the real url, but probably the easiest will be to use an IFRAME. The only potential problem with this is that some security software or browser security settings may prevent this from working. So, here's what you do:
    1. Using an HTML or text editor, create a static html file with the following code. Replace my Forms url with your own.
    <HTML>
    <HEAD>
    <TITLE>My Application</TITLE>
    </HEAD>
    <FRAMESET  ROWS="100%,*" FRAMEBORDER=NO FRAMESPACING=0 BORDER=0>
    <FRAME SRC="http://someServer:port/forms/frmervlet?config=myconfg" NAME="redir_frame">
    </FRAMESET>
    <NOFRAMES>
    Sorry, your browser does not support frames.  Click <A HREF="http://someServer:port/forms/frmervlet?config=myconfg" TARGET=_top>here</A>
    </NOFRAMES>
    <BODY>
        <!-- ADD ANY EXTRA HTML CODE AS NEEDED -->
    </BODY>
    </HTML>2. In the Oracle home from where OHS is running, find the htdocs directory within the OHS (apache) directories.
    3. Rename "index.html", "index.html_original"
    4. Copy your html file to this directory and name it "index.html"
    It is possible that the html file being used is not "index.html". To determine the correct page, you may need to review your httpd.conf file as this is where the default page is set. Look for DirectoryIndex</blockquote>
    OPTION 2 - Redirect To The Proper URL
    <blockquote>1. Find and open httpd.conf
    2. Within the file, locate this: <Directory />
    3. Just below this line add the following. Use your own Forms url
    RedirectMatch ^/$ /forms/frmservlet?config=somewhere</blockquote>

  • Oracle 10g forms URL

    Hi All,
    When I launch forms application from forms builder, it uses automatically URL as http://administatror:8889/forms/frmservlet
    . Is there any way to change this URL name? Is this URL specified in any file?
    Oracle forms uses default browser to launch application. Is there any way to specify which browser it should take to launch application? I could see Edit -> Preferences - > Run time for Web browser location. In case if I use internet browser, what is the location I need to specify? Where exactly IE resides in Windows XP?
    Thanks,
    SK
    Edited by: SK on Jan 7, 2012 8:14 PM
    Edited by: SK on Jan 7, 2012 8:15 PM

    When I launch forms application from forms builder, it uses automatically URL as http://administatror:8889/forms/frmservlet
    . Is there any way to change this URL name? Is this URL specified in any file?Yes. you can. If you want to specify a configuration add you configuration at last of url like
    http://administatror:8889/forms/frmservlet?config=configuration_name
    Oracle forms uses default browser to launch application. Is there any way to specify which browser it should take to launch application? I could see Edit -> Preferences - > Run time for Web browser location. In case if I use internet browser, what is the location I need to specify? Where exactly IE resides in Windows XP?You can change default browser any time. You went at the right direction. Simply choose the browser.exe file. You can find this normally at C:\Program Files\Mozilla Firefox\firefox.exe.
    For Internet Explorer C:\Program Files\Internet Explorer\IEXPLORE
    Hope this will help you.

  • Iconic file in oracle 10g forms

    hii,,
    i am a new user in oracle 10g form,,,here i am running a form & placing all the icons in a folder,after that i changed the iconic file path in the default.env file,the path is same where the icons are kept,,but still i am unable to see the icons at the run time,,,,,
    do i need to modify some other file or the icons will be kept at some particaular place????
    plzzzz help.....

    hi
    1 How to Display Iconic Images Using Forms 9.0.x/ 10.x?
    When running an Oracle Forms 9i/10g application the icon files used must be in a web enabled
    format such as JPG or GIF (GIF is the default format) (This is unlike older versions of forms running in client-server mode when the file format is .ico.)
    Icon image files can either be retrieved by Forms as individual files on the filesystem or from a Java Archive (JAR file).
    If an application uses lots of icon images it is recommended that they are stored in a JAR file to reduce the number of HTTP round trips.
    Reference:Note 232413.1 How to Deploy Iconic Images via a JAR File in Forms 9i/10g?
    The example below details steps to configure iconic images as individual gif or jpeg files.
    It is a first approach recommended for initial testing and understanding.
    Example:
    ========
    This document has been written for use with both Windows and UNIX operating systems: Windows will use the "\" character to delimit directories and UNIX uses the "/" character. Any other differences are noted in the document.
    1) Determine the physical location of the icons on your web server. For this example, assume that the icons are stored in D:\Myfiles\icons.
    2) Create the virtual directory in the forms90.conf file that point to the location of your Forms 9i/10g icons. This file is located in:
    $ORACLE_HOME\forms90\server\forms90.conf
    To define a virtual directory forms90/icons, use the following syntax:
    # Virtual path for ICONS (used to show icons in a form ) AliasMatch ^/forms90/icons/(..*) "D:\Myfiles/icons/$1"
    Below is an example of the forms90.conf after it has been modified to include the /forms90/icons virtual directory.
    # Virtual path mapping for Forms Java jar and class files (codebase) AliasMatch ^/forms90/java/(..*) "E:\IASR2\APP/forms90/java/$1" # Virtual path for JInitiator downloadable executable and download page AliasMatch ^/forms90/jinitiator/(..*) "E:\IASR2\APP/jinit/$1" # Virtual path for runform.htm (used to run a form for testing purposes) AliasMatch ^/forms90/html/(..*) "E:\IASR2\APP/tools/web90/html/$1"
    # Virtual path for ICONS (used to show icons in a form ) AliasMatch ^/forms90/icons/(..*) "D:\Myfiles/icons/$1"
    ( For 10g use instead of "forms90" -> "forms")
    3) Direct forms to use the /forms90/icons or /forms/icons virtual directory when running on the web by modifying the Registry.dat file in the $ORACLE_HOME\forms90\java\oracle\forms\registry or $ORACLE_HOME\forms\java\oracle\forms\registry
    directory. Note that for UNIX, both the path name and file name are case sensitive. You must specify "Registry.dat".
    Modify the default.icons.iconpath entry as follows: default.icons.iconpath=http:///forms90/icons/ or default.icons.iconpath=http:///forms/icons/
    If the URL used to bring up forms on the web is: http://abc.oracle.com:7778/forms90/f90servlet or http://abc.oracle.com:7778/forms/frmservlet
    Then the entry required for the Registry.dat will be: default.icons.iconpath=http://abc.oracle.com:7778/forms90/icons or default.icons.iconpath=http://abc.oracle.com:7778/forms/icons default.icons.iconextension=gif
    4) Now use EM Website to: a) Restart the OC4J-BI-Forms Instance b) Restart the BI-FORMS HTTP Server Instance.
    5) Verify that the virtual directory has been defined properly and that the icons can be viewed in a browser.
    Assuming that exeqry.gif exists in the D:\Myfiles\icons directory, the following URL should show the icon:
    http://abc.oracle.com:7778/forms90/icons/exeqry.gif or http://abc.oracle.com:7778/forms/icons/exeqry.gif
    6) Check the form : http://abc.oracle.com:7778/forms90/f90servlet?form=D:\Testcases\F90\ICON_CHECK_IASR2.fmx or http://abc.oracle.com:7778/forms/frmservlet?form=D:\Testcases\F10g\ICON_CHECK_IASR2.fmx
    CHECKLISTS
    =============
    Icons do not appear in the browser using the URL:
    o Verify that you are using the correct machine name and port for the OC4J_BI_Forms object.
    o Check the virtual directory name to make sure that there are no typographical errors. o Check for typographical errors in the forms90.conf or forms.
    conf for the virtual directory. o Check the name of the icon on the file system. If the file is saved as Exeqry.gif, then it will not be found using the URL http://abc.oracle.com:7778/forms90/ Close all your browser sessions and open a new browser window.
    Execute the URL to bring up from the Form Builder runtime or from the browser.
    ( For 10G use "forms" instead of "forms90")USEFUL REFERENCES:==================
    [PDF] Oracle9iAS Forms Services Deployment Guide (P/N B10170-01)Configuring Oracle9iAS Forms Services ->
    Deploying Icons and Images Used by Oracle9iAS Forms Services http://otn.oracle.com/products/forms/pdf/B10170_01.pdf
    [PDF] Oracle9iForms Services - How to Deploy Iconshttp://otn.oracle.com/products/forms/pdf/webicons.pdf
    sarah

  • Can not configure Oracle 10g form  on oracle 11g client

    Hi
    I need to install oracle 10g form in my system .
    Here is my system
    1. OS --XP
    2. 32 Bit
    4. Already oracle 11g release client installed ( I think that create the problem )
    I tried to install oracle 10g form , it installed but can cont configure net manager for it , Always it point to 11g client and hence I could not configure .
    Also I tried install Oracle Forms first then 11g client , But  I got same issue .
    I think if  I created multiplr home one for 11g client and other for forms , it may work out .
    Please  help me
    Debashis

    While deploying the example 'VacationRequest' in the oracle complete guide for 11g, i got an exception like this
    "12:08:15 PM] Deploying Application...
    [12:11:16 PM] [Deployer:149191]Operation 'deploy' on application 'VacationRequestTaskFlow' is initializing on 'soa_server1'
    [12:11:24 PM] [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application VacationRequestTaskFlow on soa_server1.: [Deployer:149145]Unable to contact 'bam_server1'. Deployment is deferred until 'bam_server1' becomes available.; nested exception is:
         java.rmi.UnknownHostException: Could not discover administration URL for server 'bam_server1'.
    [12:11:24 PM] [Deployer:149193]Operation 'deploy' on application 'VacationRequestTaskFlow' has failed on 'soa_server1'
    [12:11:24 PM] [Deployer:149034]An exception occurred for task [Deployer:149026]deploy application VacationRequestTaskFlow on soa_server1.: Failed to load webapp: 'VacationRequestTaskFlow.war'.
    [12:11:24 PM] Weblogic Server Exception: weblogic.application.ModuleException: Failed to load webapp: 'VacationRequestTaskFlow.war'
    [12:11:24 PM] Caused by: java.lang.ClassNotFoundException: oracle.adf.library.webapp.ResourceServlet
    [12:11:24 PM] See server logs or server console for more details.
    [12:11:24 PM] weblogic.application.ModuleException: Failed to load webapp: 'VacationRequestTaskFlow.war'
    [12:11:24 PM] #### Deployment incomplete. ####
    [12:11:24 PM] Deployment Failed"
    Can anyone help in this.

  • Error while executing Form URL

    Dear Experts,
    Install and configure weblogic server 10.3.3.4.0 and then Oracle Portal, Forms, Report, Discoverer are successfully.
    But I have problem when executing Form URL such as HTTP://localhost:8090/forms/frmservlet.
    Failure of server APACHE bridge:
    No backend server available for connection: timed out after 10 seconds or idempotent set to OFF.
    Build date/time: Oct 27 2009 13:34:24
    Change Number: 1013
    Would you give me some advices how to solve this error.
    Greetings,
    -Ranubaya

    URL such as HTTP://localhost:8090/forms/frmservlet
    Is the port 8090? WebLogic server default HTTP port is 7001

  • Installing Oracle 10g Forms and Reports in Cluster Mode

    Dear All,
    My OS version is RHEL 4
    In our current setup we have oracle 10g database two node  cluster and Application Server 10g to node cluster.
    Currently our report server has been configured to run in standalone mode
    I have been asked to configure oracle 10g forms and report server in cluster mode.
    Please provide me with the documentation link to configure oracle 10g reports server in cluster mode.
    Thanks and Regards
    Monoj Das

    my main goal is load balancing only
    Then what I've done in 2007 might be what you need. In that thread there is a link to Web Cache Administrator's Guide : there you'll find everything you need to configure the web cache as a load balancer, particularly chapter 8 Setup and Configuration.
    Anyway, here briefly some configurations : we have two machines, say MachineA and MachineB. The DNS resolves MachineA to a virtual address, which is normally assigned to MachineA; if MachineA crashes, it gets assigned to MachineB.
    Users URL looks like this : http://MachineA:<port>/forms/frmservlet?config=<some config>
    MachineA's web cache distributes connection requests between MachineA and MachineB.
    Of course we're now using 11g as well, but that's another thing.

  • Display Images using READ_IMAGE_FILE in 10g forms

    Hello all, i have a simple question that I'm trying to resolve really quick.
    I've created a field on a form in 10g forms that is of IMAGE type. I've given it a name and has given it a FILE_TYPE of GIF.
    I've put some code in a POST-QUERY trigger of a block that calls the READ_IMAGE_FILE command, where I enter the filename, file_type, and block.item name. When I leave the path off the image name, forms runtime acts like it cannot find it. I get an FRM message displayed at runtime that says it "Cannot read image file". However, if I put the full path (like something pointing to a hard-coded directory on my C drive where the image file resides), the image displays fine at runtime.
    I added the images to my JAR file where I have other images stored so they get opened at runtime under the ORACLE_HOME/forms/java directory. I was thinking that when I gave the filename, runtime would know to pull it out of there. But obviously, that's not what is happening.
    Has anyone got ideas on what I could do to get the READ_IMAGE_FILE to display the image without hard-coding a path in?
    Any help is appreciated!
    Regards,
    Chris

    Here are some things to check:
    1) Alll the images in the JAR file should have the same extension
    2) In formsweb.cfg, include the JAR file in the ARCHIVE parameter and set imageBase=codebase
    3) In registry.dat, leave iconpath blank and set iconextension=gif
    4) In your READ_IMAGE_FILE call, use URL as the file type and don't use the extension on the file name. So if the image in your JAR is my_picture.gif, it would be something like READ_IMAGE_FILE('my_picture','URL','myblock.my_image_item');
    If it still doesn't work, enable the Java console and when it comes up, enter the number 5 in the console to enable the highest level of logging. Then have a look at the console to see if the JAR is getting downloaded and where it's attempting to read the image from.

  • Urgent: Provide a link to E-Business Suite 9i Form in Portal page

    Hi,
    I would like to provide a link to Oracle E-Business Suite 9i Form in portal page. I would also have to pass a parameter to that form. Can you throw some light on the url format for E-Business Suite 9i form??We are on 11.5.10 RUP4. Your help is much appreciated.
    Thanks in advance,
    Murari

    Duplicate post.
    Provide a link to E-Business Suite 9i Form in Portal page
    Re: Urgent: Provide a link to E-Business Suite 9i Form in Portal page

  • Session user when integrate Forms and Portal

    Hello!
    Iam working with Forms made in developer suite inside Portal and want to know how the session user (the user that is logged) is obteined to insert his login with another items in a table of my own db.
    i used
    portal.wwctx_api.get_user()
    and in another chance:
    get_application_property('sso_userid');
    but doesn't work....Somebody have another idea?

    Hello Everybody!
    i followed the steps in http://www.oracle.com/technology/products/forms/pdf/frm9isrw9i.pdf to configure forms to use SSO, and when i try to run the form from portal i obtain the following error message:
    FRM92050 failed to connect to the server /forms90/l90servlet:-1
    and in the details the first error show:
    User does not have proper credentials configured in OID.
    First, i think that "l90servlet" is wrong because the correct url is with "f90servlet" or this refer another thing?
    Second, my forms run excelent before i configure SSO, but i need this to use the get_application_property...
    Please, somebody can help me? :$

  • Oracle Forms and portal

    Does any one know how to integrate oracle forms into portal. I am using Oracle 10g?
    Thanks

    How do you want the integration to function? Do you just need a form to run on a page or do you need the form to interact with Portal functionality?
    The former is easy to accomplish with a frame portlet. The latter not so easy but doable. Using the database as the common denominator its possible to have Forms interact with Portal thru PLSQL and data tables acting as state repositories.

  • Cannot create new form in portal

    hello
    i have a problem creating a form in portal!
    i log in portal with the username orcladmin, then i click on builder -> navigator -> providers -> open(any provider) -> create new form (or report or chart)
    i get the error in internet explorer The page cannot be found (link =http://marpolas.marpol.si:7783/pls/portal/PORTAL.wwexp_api_engine.create_action)
    in netscape the error is a little different
    The requested URL /pls/portal/PORTAL.wwv_menu.menu was not found on this server.
    it is imposible for me to create new forms in portal.
    Any ideas?
    thanks in advance
    Marjan
    p.s
    i use portal on windows 2000 server, 1800mhz and 1gb ram

    Sounds like a problem with the privileges.
    Try creating a new user, say user_temp, and grant the user Manage privilege to All Portal DB Providers and Manage to All Schemas.
    Try creating a form after logging in as user_temp.
    The minimum privileges required to create a Portal DB provider component is Create privilege on the Portal DB Providers and Manage on the Portal DB Provider schema.

  • Replacement for 10g Forms&Reports standalone server in 11g?

    is there a replacement for the 10g Forms&Reports standalone server in 11g environment? Without the need to install Metadata Repository?
    thx, florian.
    Edited by: fschulze on Oct 16, 2009 1:12 PM

    I believe you can install the equivalent in Forms 11g.
    If you don't install Portal or Discoverer, then you are not required to install any Metadata repository.
    So the steps would be:
    1) Install Weblogic Server 11g
    2) Install Forms and Report Services 11g
    How will you call reports from forms though?

  • How to Enable Performance Collector in 10g forms ?

    Hi,
    I'm using 10g forms to collect performance data. I have followed the steps as said by Oracle by following this document "perf_collect.pdf". Though the document talks about Oracle forms 6i, I assume the same will work in Oracle 10g forms.
    I have tried the below approach.
    ===========================================
    The code added to the HTML file is as follows:-
    <html> <head> ORACLE FORMS.</head>
    <body onload="document.pform.submit();" >
    <form name="pform" action="http://chn-U100S77.CVNS.corp.covansys.com:8889/forms90/f90servlet/temp.html" method="POST">
    <input type="hidden" name="form" value="D:\DevSuiteHome\forms90\server\myapps\MODULE2.fmx">
    <input type="hidden" name="userid" value="SCOTT/TIGER@ppaprod">
    <input type="hidden" name="obr" value="yes">
    <input type="hidden" name="buffer_records" value="YES">
    <input type="hidden" name="debug_messages" value="YES">
    <input type="hidden" name="array" value="YES">
    <PARAM NAME=“serverArgs” value = "module=module2.fmx userid=scott record=all log=C:\perf_”>
    </form> </body></html>
    =============================
    I have change the following parameters in "formsweb" configuration file.
    # Sub argument for otherparams
    record=all
    ==============================
    Any early reply is highly appreciated.

    Hi,
    Thanks, it creates XML file right now..
    I have created tables etc. i was trying to write the same to an oracle table.
    =========================================
    D:\>java oracle.forms.diagnostics.Xlate datafile=d:\devsuitehome\forms90\trace\f
    orms\forms_1524.trc URL=10.3.144.249:1521:ppaprod UserName=system Password=system CollectionId=2
    Invalid Parameter: URL
    Exception in thread "main" java.lang.NoClassDefFoundError: oracle/forms/registry
    /MessageManager
    at oracle.forms.diagnostics.Xlate.printUsage(Unknown Source)
    at oracle.forms.diagnostics.Xlate.readArgs(Unknown Source)
    at oracle.forms.diagnostics.Xlate.<init>(Unknown Source)
    at oracle.forms.diagnostics.Xlate.main(Unknown Source)
    =============================================
    I gave hostname and IP address in the output parameter, it reports the sames error.

  • Un-embed applet on oracle 10g forms from web browser

    Hi all,
    I want to ask how can i seperately open my applet from web browser in oracle 10g forms. To be more precise to my question, i dont want to use my applet in web browser. It should be opened in new window i.e. applet window.
    Regards,
    Qasim Javaid Malik

    If you want to run forms without the IE browser (hidden)
    Try this
    To open web forms just like client server with a hidden IE window, I have invented two methods.
    ****** make seperateFrame = True on formsweb.cfg ******
    Method 1
    <job id="SYMA">
    <script language="VBScript">
    Const SW_HIDE = 0
    Const High = 128
    strComputer = "."
    strCommand = "C:\Program Files\Internet Explorer\IEXPLORE.EXE http://symphony-devl.atradiusnet.com/forms/frmservlet?config=syma"
    Set objWMIService = GetObject("winmgmts:" _
    & "{impersonationLevel=impersonate}!\\" _
    & strComputer & "\root\cimv2")
    ' Configure the Notepad process to show a window
    Set objStartup = objWMIService.Get("Win32_ProcessStartup")
    Set objConfig = objStartup.SpawnInstance_
    ' Create Notepad process
    Set objProcess = objWMIService.Get("Win32_Process")
    intReturn = objProcess.Create _
    (strCommand,Symphony, objConfig, intProcessID)
    If intReturn <> 0 Then
    Wscript.Echo "Process could not be created." & _
    vbNewLine & "Command line: " & strCommand & _
    vbNewLine & "Return value: " & intReturn
    Else
    Wscript.Echo "Process created." & _
    vbNewLine & "Command line: " & strCommand & _
    vbNewLine & "Process ID: " & intProcessID
    End If
    </script>
    </job>
    Method 2
    <job id="SYMA">
    <script language="VBScript">
    dim objShell
    set objShell = CreateObject("InternetExplorer.Application")
    objShell.ShellExecute "C:\Program Files\Internet Explorer\IEXPLORE.EXE", "http://ws-79767.atradiusnet.com:8890/forms/frmservlet?config=localJpi", "", "open",0
    </script>
    </job>
    Change the URL as appropriate, it's fantasitic .... !!!!!!
    Any questions let me know ...... !

Maybe you are looking for

  • How do I get the images to show up in bridge

    How do I get the cr2 thumbnails to go away so that I can view my images?

  • Windows cannot find device driver for my ipod mini

    Just got my new laptop and downloaded latest version of iTunes, but my iPod mini does not appear as a source. It appears in Device Manager but not My Computer. Any suggestions?

  • Asking only once for a parameter...

    Post Author: Nightcrawler CA Forum: Data Connectivity and SQL Hi, I have a report which need to select a list of items for a dynamic lookup for the report. I have created two stored procedure in SQL which work in QA. When I link them to a report I ge

  • Artwork on iPod Nano (3rd Gen)

    Hey everyone, I just got a new iPod nano and when I transfered songs from my computer over to my iPod only some of the artwork appears, does anyone know what the problem is? I even have changed the pictures to no avail.

  • WBS elements in Investment profiles

    Hi Experts, Is there any way we can check that to which all WBS element an investment profile is attached? Regards, Vijay