Forms 9i in oracle 11 i details .. required

hi
It would really helpful if the details regarding
forms 9i in oracle 11i could be mailed to me
at
[email protected]
[email protected]
regards
susmitha

HI
Check the Technica Note 256550.1 on Metalink
Good Luck
Mario

Similar Messages

  • Oracle version detaila required

    Hi,
    Would like to known the support end life for the below versions of oracle.
    10.2.0.2.0 ORACLE
    10.2.0.3.0 ORACLE
    Rgds,

    See page 4 in http://www.oracle.com/us/support/library/lifetime-support-technology-069183.pdf:
    Premier support has ended Jul 2010.
    Extended support will end Jul 2013.
    Sustaining supprt has no end.
    Edited by: P. Forstmann on 9 nov. 2010 09:06

  • Forms 10G – Replacing Oracle Logo in Menu Bar

    Hello:
    Forms 10G – Replacing Oracle Logo in Menu Bar
    We use “lookAndFeel=oracle” which gives Oracle Logo in the Manu Bar at top right corner.
    What is the simplest way to replace this with our own logo?
    Thanks

    Here you go. (foroms.conf, formsweb.cfg)
    Forms.conf
    # $Id: forms.conf 22-nov-2004.03:29:38 osingh Exp $
    # Name
    # forms.conf
    # Purpose
    # Apache mod_oc4j and mod_jserv configuration file for Forms Services.
    # This file should be included into the Oracle Apache HTTP Listener
    # configuration file (typically by adding an include statement to the
    # oracle_apache.conf file)
    # Remarks
    # If Forms is to be used with JServ, the jserv.properties file needs editing
    # to add the "forms" servlet zone with properties file forms.properties
    # Notes
    # Virtual paths: We use AliasMatch when defining virtual paths for
    # security reasons (prevents directory browsing).
    # Virtual path mapping for Forms Java jar and class files (codebase)
    AliasMatch ^/forms/java/(..*) "E:\oracle\FRHome_1/forms/java/$1"
    # Virtual path for JInitiator downloadable executable and download page
    AliasMatch ^/forms/jinitiator/(..*) "E:\oracle\FRHome_1/jinit/$1"
    # Virtual path for runform.htm (used to run a form for testing purposes)
    AliasMatch ^/forms/html/(..*) "E:\oracle\FRHome_1/tools/web/html/$1"
    # Virtual path for webutil
    AliasMatch ^/forms/webutil/(..*) "E:\oracle\FRHome_1/forms/webutil/$1"
    # Configuration for JServ (if mod_jserv.c is available and not mod_oc4j.c)
    <IfModule mod_jserv.c>
    # Only configure for JServ if mod_oc4j is NOT available:
    <IfModule !mod_oc4j.c>
    # Virtual path mapping for FormsServlet and ListenerServlet.
    # Purpose: paths to invoke the servlets should be /forms/frmservlet
    # and /forms/lservlet respectively.
    # We map frmservlet to servlet.frm, and lservlet to servlet.frml.
    # The apJServAction directives (below) will then remap those.
    AliasMatch ^/forms/frmservlet(.*) "/servlet.frm"
    AliasMatch ^/forms/lservlet(.*) "/servlet.frml"
    ApJServMount /forms/servlet /forms
    # Let the servlets be called by file extension (e.g /servlet.frm)
    ApJServAction .frm /forms/servlet/frmservlet
    ApJServAction .frml /forms/servlet/lservlet
    # Prevent access to the Forms Servlets by paths other than
    # /forms/frmservlet and /forms/lservlet.
    # 1. Prevent access via the .frm and .frml file extensions:
    <LocationMatch ^.*\.frm.*>
    order deny,allow
    deny from all
    </LocationMatch>
    # 2. Stop access by class (by paths like
    # /forms/servlet/oracle.forms.servlet.FormsServlet)
    <LocationMatch ^/forms/servlet/oracle\.forms.*>
    order deny,allow
    deny from all
    </LocationMatch>
    </IfModule>
    </IfModule>
    # Config. for OC4J
    <IfModule mod_oc4j.c>
    Oc4jMount /forms OC4J_BI_Forms
    Oc4jMount /forms/frmservlet OC4J_BI_Forms
    Oc4jMount /forms/frmservlet/* OC4J_BI_Forms
    Oc4jMount /forms/lservlet OC4J_BI_Forms
    Oc4jMount /forms/lservlet/* OC4J_BI_Forms
    </IfModule>
    formsweb.cfg
    # $Id: formsweb.cfg 15-apr-2005.13:17:30 pkuhn Exp $
    # formsweb.cfg defines parameter values used by the FormsServlet (frmservlet)
    # This section defines the Default settings. Any of them may be overridden in the
    # following Named Configuration sections. If they are not overridden, then the
    # values here will be used.
    # The default settings comprise two types of parameters: System parameters,
    # which cannot be overridden in the URL, and User Parameters, which can.
    # Parameters which are not marked as System parameters are User parameters.
    # SYSTEM PARAMETERS
    # These have fixed names and give information required by the Forms
    # Servlet in order to function. They cannot be specified in the URL query
    # string. But they can be overridden in a named configuration (see below).
    # Some parameters specify file names: if the full path is not given,
    # they are assumed to be in the same directory as this file. If a path
    # is given, then it should be a physical path, not a URL.
    # USER PARAMETERS
    # These match variables (e.g. %form%) in the baseHTML file. Their values
    # may be overridden by specifying them in the URL query string
    # (e.g. "http://myhost.mydomain.com/forms/frmservlet?form=myform&width=700")
    # or by overriding them in a specific, named configuration (see below)
    [default]
    # System parameter: default base HTML file
    baseHTML=base.htm
    # System parameter: base HTML file for use with JInitiator client
    baseHTMLjinitiator=basejini.htm
    # System parameter: base HTML file for use with Sun's Java Plug-In
    baseHTMLjpi=basejpi.htm
    # System parameter: delimiter for parameters in the base HTML files
    HTMLdelimiter=%
    # System parameter: working directory for Forms runtime processes
    # WorkingDirectory defaults to <oracle_home>/forms if unset.
    workingDirectory=
    # System parameter: file setting environment variables for the Forms runtime processes
    envFile=default.env
    # Forms runtime argument: whether to escape certain special characters
    # in values extracted from the URL for other runtime arguments
    escapeparams=true
    # Forms runtime argument: which form module to run
    form=test.fmx
    # Forms runtime argument: database connection details
    userid=
    # Forms runtime argument: whether to run in debug mode
    debug=no
    # Forms runtime argument: host for debugging
    host=
    # Forms runtime argument: port for debugging
    port=
    # Other Forms runtime arguments: grouped together as one parameter.
    # These settings support running and debugging a form from the Builder:
    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%
    # Sub argument for otherparams
    buffer=no
    # Sub argument for otherparams
    debug_messages=no
    # Sub argument for otherparams
    array=no
    # Sub argument for otherparams
    obr=no
    # Sub argument for otherparams
    query_only=no
    # Sub argument for otherparams
    quiet=yes
    # Sub argument for otherparams
    render=no
    # Sub argument for otherparams
    record=
    # Sub argument for otherparams
    tracegroup=
    # Sub argument for otherparams
    log=
    # Sub argument for otherparams
    term=
    # HTML page title
    # HTML attributes for the BODY tag
    HTMLbodyAttrs=
    # HTML to add before the form
    HTMLbeforeForm=
    # HTML to add after the form
    HTMLafterForm=
    # Forms applet parameter: URL path to Forms ListenerServlet
    serverURL=/forms/lservlet
    # Forms applet parameter
    codebase=/forms/java
    # Forms applet parameter
    imageBase=DocumentBase
    # Forms applet parameter
    width=750
    # Forms applet parameter
    height=600
    # Forms applet parameter
    separateFrame=false
    # Forms applet parameter
    splashScreen=
    # Forms applet parameter
    background=
    # Forms applet parameter
    lookAndFeel=Oracle
    # Forms applet parameter
    colorScheme=teal
    # Forms applet parameter
    logo=
    # Forms applet parameter
    restrictedURLparams=HTMLbodyAttrs,HTMLbeforeForm,HTMLafterForm,log,allow_debug,allowNewConnections
    # Forms applet parameter
    formsMessageListener=
    # Forms applet parameter
    recordFileName=
    # Forms applet parameter
    serverApp=default
    # Forms applet archive setting for JInitiator
    archive_jini=frmall_jinit.jar
    # Forms applet archive setting for other clients (Sun Java Plugin, Appletviewer, etc)
    archive=frmall.jar
    # Number of times client should retry if a network failure occurs. You should
    # only change this after reading the documentation.
    networkRetries=0
    # Page displayed to Netscape users to allow them to download Oracle JInitiator.
    # Oracle JInitiator is used with Windows clients.
    # If you create your own page, you should set this parameter to point to it.
    jinit_download_page=/forms/jinitiator/us/jinit_download.htm
    # Parameter related to the version of JInitiator
    jinit_classid=clsid:CAFECAFE-0013-0001-0022-ABCDEFABCDEF
    # Parameter related to the version of JInitiator
    jinit_exename=jinit.exe#Version=1,3,1,22
    # Parameter related to the version of JInitiator
    jinit_mimetype=application/x-jinit-applet;version=1.3.1.22
    # Page displayed to users to allow them to download Sun's Java Plugin.
    # Sun's Java Plugin is typically used for non-Windows clients.
    # (NOTE: you should check this page and possibly change the settings)
    jpi_download_page=http://java.sun.com/products/archive/j2se/1.4.2_06/index.html
    # Parameter related to the version of the Java Plugin
    jpi_classid=clsid:CAFEEFAC-0014-0002-0006-ABCDEFFEDCBA
    # Parameter related to the version of the Java Plugin
    jpi_codebase=http://java.sun.com/products/plugin/autodl/jinstall-1_4_2-windows-i586.cab#Version=1,4,2,06
    # Parameter related to the version of the Java Plugin
    jpi_mimetype=application/x-java-applet;jpi-version=1.4.2_06
    # EM config parameter
    # Set this to "1" to enable Enterprise Manager to track Forms processes
    em_mode=1
    # Single Sign-On OID configuration parameter
    oid_formsid=%OID_FORMSID%
    # Single Sign-On OID configuration parameter
    oracle_home=E:\oracle\FRHome_1
    # Single Sign-On OID configuration parameter
    formsid_group_dn=%GROUP_DN%
    # Single Sign-On OID configuration parameter: indicates whether we allow
    # dynamic resource creation if the resource is not yet created in the OID.
    ssoDynamicResourceCreate=true
    # Single Sign-On parameter: URL to redirect to if ssoDynamicResourceCreate=false
    ssoErrorUrl=
    # Single Sign-On parameter: Cancel URL for the dynamic resource creation DAS page.
    ssoCancelUrl=
    # Single Sign-On parameter: indicates whether the url is protected in which
    # case mod_osso will be given control for authentication or continue in
    # the FormsServlet if not. It is false by default. Set it to true in an
    # application-specific section to enable Single Sign-On for that application.
    ssoMode=false
    # The parameter allow_debug determines whether debugging is permitted.
    # Administrators should set allow_debug to "true" if servlet
    # debugging is required, or to provide access to the Forms Trace Xlate utility.
    # Otherwise these activities will not be allowed (for security reasons).
    allow_debug=false
    # Parameter which determines whether new Forms sessions are allowed.
    # This is also read by the Forms EM Overview page to show the
    # current Forms status.
    allowNewConnections=true
    # EndUserMonitoring
    # EndUserMonitoringEnabled parameter
    # Indicates whether EUM/Chronos integration is enabled
    EndUserMonitoringEnabled=
    # EndUserMonitoringURL
    # indicates where to record EUM/Chronos data
    EndUserMonitoringURL=
    # Example Named Configuration Section
    # Example 1: configuration to run forms in a separate browser window with
    # "generic" look and feel (include "config=sepwin" in the URL)
    # You may define your own specific, named configurations (sets of parameters)
    # by adding special sections as illustrated in the following examples.
    # Note that you need only specify the parameters you want to change. The
    # default values (defined above) will be used for all other parameters.
    # Use of a specific configuration can be requested by including the text
    # "config=<your_config_name>" in the query string of the URL used to run
    # a form. For example, to use the sepwin configuration, your could issue
    # a URL like "http://myhost.mydomain.com/forms/frmservlet?config=sepwin".
    [sepwin]
    separateFrame=True
    lookandfeel=Generic
    # Example Named Configuration Section
    # Example 2: configuration forcing use of the Java Plugin in all cases (even if
    # the client browser is on Windows)
    [jpi]
    baseHTMLJInitiator=basejpi.htm
    # Example Named Configuration Section
    # Example 3: configuration running the Forms ListenerServlet in debug mode
    # (debug messages will be written to the servlet engine's log file).
    [debug]
    serverURL=/forms/lservlet/debug
    # Sample configuration for deploying WebUtil. Note that WebUtil is shipped with
    # DS but not AS and is also available for download from OTN.
    [webutil]
    WebUtilArchive=frmwebutil.jar,jacob.jar
    WebUtilLogging=off
    WebUtilLoggingDetail=normal
    WebUtilErrorMode=Alert
    WebUtilDispatchMonitorInterval=5
    WebUtilTrustInternal=true
    WebUtilMaxTransferSize=16384
    baseHTMLjinitiator=webutiljini.htm
    baseHTMLjpi=webutiljpi.htm
    archive_jini=frmall_jinit.jar
    archive=frmall.jar
    lookAndFeel=oracle
    [devBala]
    envFile=E:\Khamel\conf\devBala.env
    WIDTH=832
    HEIGHT=662
    pageTitle=Khameleon DEV-Bala Environment
    separateFrame=True
    splashScreen=No
    Background=No
    #lookAndFeel=oracle
    colorScheme=BLAF
    form=sylogin.fmx
    logo=/ksfiles/kham_log.gif
    [devBala1]
    envFile=E:\Khamel\conf\devBala.env
    WIDTH=1000
    HEIGHT=850
    #pageTitle=Khameleon DEV-Bala1 Environment
    separateFrame=True
    splashScreen=/ksfiles/Khameleon.gif
    Background=/ksfiles/Khameleon1.gif
    #lookAndFeel=oracle
    colorScheme=BLAF
    form=sylogin.fmx
    logo=/icons/kham_log.gif

  • Portal Master-detail form how to auto assign detail record sequence number

    Portal Master-detail form how to auto assign detail record sequence number.Please help me?

    You can just read the following section
    Can I specify a sequence number generator as the default value for a form column?
    Yes. Enter the following in the "default value" field for the column:
    #<schema name>.<sequence name>.nextval
    where <schema name> is the name of the schema containing the sequence, and <sequence name> is the name of the sequence. The entry is preceded by a "#".
    For example, if the schema name is "SCOTT", and the sequence name is "CUSTOMER_SEQ", the default value entry is:
    #SCOTT.CUSTOMER_SEQ.NEXTVAL
    same way you can do for master - detail form.
    for more information on forms please refer the following URL.
    http://otn.oracle.com/products/iportal/htdocs/portal_faq.htm#BuildingApplications
    hope it helps.

  • Forms 6i and Oracle 9i DB Server

    Hi,
    I have an application in Forms 6i (6.0.8.8.0) running on Oracle 8i (8.1.6) server. When I try to port the application to Oracle 9i (9.2.0.1.0) db server, I am facing some problems.
    a. When I enter the login information in the application and click the 'Connect' button, the application terminates.
    b. To double check I tried to connect to the Database with the SQL* Plus which comes with Forms, it also closes abnormally.
    c. I am able to connect to the Database using 8i Client.
    1. Is there any knows issues for Forms 6i in Oracle 9i ?
    2. Is there any patches available which will solve this problem ??
    Kindly Help
    Regards,
    AJ

    Hi,
    Thanks a lot for the reply.
    More details of the error,
    - I am able to connect to the database from 9i client SQL * Plus
    - I am not able to connect to the database from SQL * Plus which comes with Forms 6i installation.
    - The Forms application is crashing when I try to connect to the database and the following dump file is created
    =======================================================
    [09/01/03 18:19:02::Client Status [ConnId=0, PID=2120]
    ERROR: Abnormal termination, Error Code: C0000005 ACCESS_VIOLATION ======================= STACK DUMP =======================
    Fault address: 67614564 01:000B3564
    Module: D:\oracle\orant\BIN\ORA805.dll
    System Information:
    Operating System: Windows NT Version 5.0 Build 2195 Service Pack 4
    Command line: "D:\orant\BIN\ifrun60.EXE" prg_home.fmx
    FORM/BLOCK/FIELD: :.
    Last Trigger: - (No error number)
    Last Builtin: - (No error number)
    Registers:
    EAX:00000000
    EBX:02D50674
    ECX:00000000
    EDX:00000160
    ESI:02D5052C
    EDI:02D4FF58
    CS:EIP:001B:67614564
    SS:ESP:0023:0012F4BC EBP:0012F4E0
    DS:0023 ES:0023 FS:0038 GS:0000
    Flags:00010202
    ------------------- Call Stack Trace ---------------------
    Frameptr RetAddr Param#1 Param#2 Param#3 Param#4 Function Name
    0x0012f4e0 67613ce8 00000004 02d50040 02d4ff58 00000001 0x67614564
    0x0012f510 675615fe 02d50674 02d50040 02d4ff58 00000001 0x67613ce8
    0x0012f530 5d1089ce 02d50674 02d50040 02d4ff58 00000001 0x675615fe
    0x0012f560 5d10857a 02cf27a8 02d504c4 02d50674 02d50040 0x5d1089ce
    0x0012f59c 5df0d72b 02d50040 0012fa80 02d034f8 02cf27a8 0x5d10857a
    0x0012f92c 5df0d58c 02cfd8c8 0012fa80 00000000 02d034f8 0x5df0d72b
    0x0012fa28 5df1bae3 02cf27a8 0012fa80 00000001 00000000 0x5df0d58c
    0x0012fa84 5def9ff3 00000000 00000001 0012fabc 00000001 0x5df1bae3
    0x0012faf0 5def9a46 031e3b3c 02d013a0 00000000 00000001 0x5def9ff3
    0x0012fc0c 5def2c03 00000000 02d01820 0000000c 02d015b0 0x5def9a46
    0x0012fd68 5def19e9 00000014 00000000 00000002 018809f0 0x5def2c03
    0x0012fd8c 5def18be 01872090 00000000 00000000 00000002 0x5def19e9
    0x0012fdac 67948963 01872090 00000000 00000000 00000002 0x5def18be
    0x0012fdfc 6794a3a1 01873544 00403010 00000000 00000002 0x67948963
    ------------------- End of Stack Trace -------------------
    =======================================================
    I am totally stuck. Any help would be appreciated..
    Thanks and Regards,
    AJ

  • Oracle host details given a service name

    Hi,
    I have requirement of obtaining Oracle host details( IP, Port, SID) given a service naming (tnsname). I want to do it programmatically in VB/VC++ (Windows).
    How can I do this?
    One approach that I tried is reading the Oracle_Home from registry, then locating the tnsnames.ora file in the Oracle_Home, and reading the information from the file.
    This works fine when user has tnsnames.ora file at the default location. But we are facing problem when user has multiple oracle homes or when the tnsnames.ora file is not at the default location.
    I would like to know if there is a better approach than this to solve this problem.
    Can some oracle API help in solving this problem.
    Please help me in this regard as I am stuck for more than week on this problem. I did search in google but could not find anything relavant so far. So please help me.
    Thanks a ton,
    Subrahmanyam.

    This works fine when user has tnsnames.ora file at
    the default location. But we are facing problem when
    user has multiple oracle homes or when the
    tnsnames.ora file is not at the default location.Hi,
    Set up a TNS_ADMIN environment variable that points to the directory where tnsnames.ora file is.
    Into this file, you can have multiple database in different version.
    Nicolas.

  • Is there a way to create forms where certain fields would become required only if there was a certain choice made in a dropdown box in another field?

    Is there a way to create forms where certain fields would become required only if there was a certain choice made in a dropdown box in another field?

    Yes but you will have to create some custom JavaScript to do this.
    Also you should be aware that the "Required" property is only processed when the form is submitted to a scripted web page or "mailto:" process.

  • Forms 5 on Oracle 9i migrated from 8i: some experiences ?

    Hello,
    I would like to hear some experiences from some Forms gurus here,
    concerning to Forms 5/6i (C/S) on Oracle 8i when migrating to Oracle 9i.
    I know, Forms 5 has been looong desupported, but this is the situation I have to deal with and to which I am restricted now:
    Infrastructure:
    1 AIX5 server as production database server for OEE 8.1.7.3 (1 instance),
    1 AIX5 server as test database server for OEE 9.2.0.6. (1 instance, data are from prod server),
    Internal Company Network connecting 20 shops in the near local area,
    Client/Server Forms 5.0.6.18.1 / Reports 3.0.5.15.0 used for company applications, that is, about 150 Forms and 300 Reports.
    No plans at all to migrate to iAS for some reasons beyond this topic, they will keep C/S with Forms 6i. The Upgrade to Forms 6i will be made after DB migration.
    They have 200 users, all only company members, no access from outside.
    Known problems so far:
    * Implicit datatype conversion between NUMBER and VARCHAR2 is handled more restrictive in 9i DB, there are some
    hints in the papers. So I dagged through all stored prcedures and made the necessary changes (TO_NUMBER ...).
    * Problems with CHAR returning stored procedured, or CHAR parameter taking procedures when
    connecting with Forms 5. I had NO hints in this case ... OK, replacing CHAR with VARCHAR2 does the job,
    but that was a pritty surprise ...
    * All Form Modules have to be recompiled for 9i DB, and then those modules cannot be run against the
    old 8i DB (because of different time stamps of the packages).
    Remaining questions:
    1) Just for my own curiousness, I would like to know
    why CHAR is becoming a problem when recompiling a Form 5
    for Oracle 9i; the problem is likely to be valid for more actual version, too.
    I mean AFAIK, Oracle has not deprecated CHAR as a datatype ?
    2) Concerning Forms 5 for Oracle 8i / 9i,
    are there some more hidden "riffs in the shallow water"
    to be aware of besides implicit conversion and CHAR difficulties ?
    Thank You in advance,
    Jan Gelbrich

    ThanX to many people viewing this thread. Many may already know,
    many may not, and I did not know also:
    Metalink confirmed that Forms 5 is not certified on Oracle 9i,
    and trying this is doomed
    to see many ORA-03114 / ORA-03113 errors. No way.
    I recompiled the same modules with Forms 6i without any changes
    and it worked.
    HTH others, too.

  • [b]How to deploy forms 6i on Oracle 9iAS[/b]

    Hello,
    Anybody knows hot to deploy forms 6i on Oracle 9iAS (WEB).
    Oracle 9i Application contains several options
    1. Oracle9iAS installation.
    1.1 J2EE and Web Cache.
    1.2 Portal and Wireless.
    1.3 Business Intelligence and Forms.
    2. Oracle9iAS Infrastructure installation.
    3. Oracle9iAS Developer Kits installation.
    I want to know , Which option should i select in order to deploy the forms on web.
    Thank You.
    Rahul

    I'm not sure if you can deploy Forms6i on 9iAS. Anyway, this is not the right forum for this question. Please repost your question in the 9iAS General forum or in one of the Forms-related iDS forums.

  • How  To Deploy  Forms 6i on Oracle 9iAS (WEB)

    Hello,
    Anybody knows hot to deploy forms 6i on Oracle 9iAS (WEB).
    Oracle 9i Application contains several options
    1. Oracle9iAS installation.
    1.1 J2EE and Web Cache.
    1.2 Portal and Wireless.
    1.3 Business Intelligence and Forms.
    2. Oracle9iAS Infrastructure installation.
    3. Oracle9iAS Developer Kits installation.
    I want to know , Which option should i select in order to deploy the forms on web.
    Thank You.
    Rahul

    1.3 Business Intelligence and Forms.
    Please post Forms questions in the Forms Forum.
    More info in the Forms Upgrade Center:
    http://otn.oracle.com/products/forms/htdocs/upgrade

  • How to Deploy forms 6i on Oracle 9iAS

    Hello,
    Anybody knows hot to deploy forms 6i on Oracle 9iAS (WEB).
    Oracle 9i Application contains several options
    1. Oracle9iAS installation.
    1.1 J2EE and Web Cache.
    1.2 Portal and Wireless.
    1.3 Business Intelligence and Forms.
    2. Oracle9iAS Infrastructure installation.
    3. Oracle9iAS Developer Kits installation.
    I want to know , Which option should i select in order to deploy the forms on web.
    Thank You.
    Rahul

    1.3 Business Intelligence and Forms.
    Please post Forms questions in the Forms Forum.
    More info in the Forms Upgrade Center:
    http://otn.oracle.com/products/forms/htdocs/upgrade

  • FRM-40654 error in master-detail form while deleting record in detail block

    Hi,
    I am facing an issue in a custom form which is a Master-detail form while deleting a record in detail block. It is giving an error "FRM-40654 Record has been Updated by another user. Re-query to see change". I have checked the record is matching with that in database.
    Can anyone help on this.
    Thanks In Advance,
    Midhun

    Hi jan,
    master block is based on Table "A" and detail block is based on a View "X".
    View "X" definitions includes the tables "A","B","C" etc..
    Now I have tried removing table"A" from view "X", even then the same error is ocuuring but the lock is happening on table "B" instead of "A"
    Thanks,
    Midhun

  • Installation of forms reports and oracle application server 10g

    Hi,
    I have been using client server till now, now planning to move to 10g. Got the developer suite 10g.
    Tell me how and where to install forms/reports and Oracle application server... I mean forms reports should be on developer PC then what about application server? should it be on a different dedicated server? or can i have it on database server?
    in case, if I install application server on one server and database is on another server then what about forms and reports?
    please tell me which is the right option?

    cypdon99 wrote:
    Hi,
    I have been using client server till now, now planning to move to 10g. Got the developer suite 10g.
    Tell me how and where to install forms/reports and Oracle application server... I mean forms reports should be on developer PC then what about application server? should it be on a different dedicated server? or can i have it on database server?
    in case, if I install application server on one server and database is on another server then what about forms and reports?
    please tell me which is the right option?Ideally, you should have two separate server machines.
    One for the database server.
    One for the Application Server.
    The Application Server is basically used for hosting your forms and reports, so you dont have to place the forms and reports on the developer PC or at any other server.
    best regards
    http://fahdmirza.blogspot.com

  • Free Forms Modernization and Oracle ADF event running June 6th 2011

    Oracle partner iAdvise are running a full day workshop on Forms modernization and Oracle ADF in Belgium on the 6th June 2011. For those interested in JDeveloper and ADF, there is a full afternoon of ADF training, as well as a copy of the Quick Start Guide to Fusion Development JDeveloper and Oracle ADF.
    You can register here:https://www.iadvise-hosting.be/pls/apexsaas2/f?p=eev:104:4479387178760612%20
    So, if you have any investment in Oracle Forms and are looking at ADF, you need to attend!

    bump

  • How to find the invalid form session in oracle Apps

    Oracle Apps R12
    Hai All
    How to find the invalid form session in oracle Apps R12 and How to Kill the that.
    Thanks & Regards
    Srikkanth.M

    Hi,
    Please refer to these docs (for 11i and R12).
    How to Kill Inactive Sessions Based on the Information in the Monitor User Form [ID 103516.1]
    Script: How To Identify The apps User Using The O/S PID For Forms Users In 11i [ID 185762.1]
    Thanks,
    Hussein

Maybe you are looking for

  • How do I insert my Edge Animation into Wordpress as an animated/interactive graphic

    How do I insert my Edge Animation into Wordpress as an animated/interactive graphic?

  • Automatic video sync with Ipod

    My downloadet (and podcast downloadet) quicktime.mov files doesn't automtic convert to my Ipod. (the mark is checked in preferences). I have more than 200 .mov files in Itunes and it is horrible to do this manually. Is there a way to do it automaticl

  • Error while production planning run

    Hi, I got this error "No gap for activity ||| found within the planning horizon" during production planning run.  Diagnosis     There is not a large enough gap for the activity ||| on the mode     1- in the planning period specified in the time profi

  • Interactive Adobe Forms error while execution....

    Hi, <b>I am working on Adobe Forms & developed one application "Online Interactive Form" . After deploying when i try to Run the Appln i am getting following error..</b> com.sap.tc.webdynpro.clientserver.adobe.pdfdocument.base.core.PDFDocumentRuntime

  • How to build and burn a dual layer disc

    I know that this is probably a amateur question, but this is my first time trying to build and burn a dual layer disc in DVD studio pro 4. Any feedback would be appreciated. Thanks....Chadwick