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

Similar Messages

  • REPLACING ORACLE LOGO WITH MY LOGO

    REPLACING ORACLE LOGO WITH MY LOGO
    hi i tried to replace the oracle logo with my custom logo......but still tht logo is not appearinmg........i followed the steps mentioned in the following note in metalink......can u tell me wht went wrong.i have also attached my config settings in formsweb.cfg.
    You can either replace the Oracle logo with your custom logo, or just
    delete the Oracle logo. Both of these options are described below.
    Replacing the Oracle Logo with a Custom Logo
    ============================================
    Forms 6i(6.0.8.8 or above), has a new look when using the Oracle
    lookAndFeel parameter. An Oracle logo appears in the menu when you run
    the form on web. The logo is visible, even if you use a default menu
    or custom menu.
    Follow this procedure to that logo with your custom logo:
    1) Backup the following files:
    oracle_home/forms60/java/f60all.jar
    oracle_home/forms60/java/forms/icons/oracle_logo.gif
    2) Create your custom logo in gif format and rename it to oracle_logo.gif
    3) Copy your gif to the oracle_home/forms60/java/forms/icons directory.
    4) Open the f60all.jar in WinZip.
    5) Find a file called oracle_logo.gif in the archive and delete it.
    6) Create the following directory structure:
    c:\oracle\forms\icons
    7) Copy your custom logo(renamed to oracle_logo.gif) to:
    c:\oracle\forms\icons.
    8) In WinZip, choose Add a file, then select the oracle_logo.gif from:
    c:\oracle\forms\icons
    9) Add the file to the f60all.jar archive and close the jar file.
    10) Stop and restart your forms server.
    11) Clear the cache from your browsers.
    Now when you run the form on the web, your custom logo will appear in
    place of the Default Oracle logo.
    Removing the Oracle Logo from the Menu
    ======================================
    Use one of the following methods to remove the Oracle logo from the
    menu:
    -- If you do not need to use the "Oracle" lookAndFeel, use the
    "generic" lookAndFeel. When you use the generic look and feel, you
    do not see the Oracle logo in the menu. However, you do see the
    canvas in the windows default gray color. Also, the menu toolbar
    icons are gray.
    -- If you want to retain the Oracle look and feel but remove the
    Oracle logo only, add the following parameter in your html file,
    or add it in your URL:
    Logo="no"
    For example, in Netscape:
    lookAndFeel="Oracle"
    Logo="no"
    For example, in IE:
    <PARAM NAME="lookAndFeel" VALUE="Oracle">
    <PARAM NAME="Logo" VALUE="no">
    This suppresses the Oracle logo at runtime on the web.
    Solution Explanation
    ====================
    With the oracle lookAndFeel parameter, the Oracle logo is always
    inserted in the menu. You must remove the logo or add another logo
    with the same name if you want to replace the Oracle logo.
    ---MY CONFIG FILE-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    [myconfig]
    serverURL=/forms90/l90servlet
    codebase=/forms90/java
    userid=sdbuser/sdb1@sdb
    form=C:\MYFORM.FMX
    imageBase=DocumentBase
    width=100%
    height=100%
    separateFrame=false
    splashScreen=no
    background=oracle_logo.gif
    #lookAndFeel=Oracle
    colorScheme=teal
    logo=oracle_logo.gif
    formsMessageListener=
    recordFileName=
    --------------------------------------------------------------------------------

    hey,
    u can try making your own .jar with your icons inside and put it on the3 forms60/java directory.
    Include also the following line in cfg file:
    archive_jini = f90all_jinit.jar, [youriconsarchive].jar
    and maybe you should change imagebase to 'codebase' instead of documentbase.
    I have it like this and works ok. I can use every icon in my jar as logo or anything else..
    hope this helps
    regards,
    teo

  • How to connect oracle forms 10g with oracle 10g express database?

    Hi all,
    I have downloaded and installed oracle forms 10g and oracle database 10g express, when I open net configuration assistant to test local net service, I tested the default service (EXTPROC_CONNECTION_DATA) BUT THE RESULT IS "ora-28547 connection to server failed probable oracle net admin error"
    How can I solve this issue?
    My tnsname.ora is located in c:\DevSuiteHome\network\admin\tnsnames.ora, and its contents is:
    # tnsnames.ora Network Configuration File: c:\DevSuiteHome\network\admin\tnsnames.ora
    # Generated by Oracle configuration tools.
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = nour-pc)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = PLSExtProc)
    Edited by: user10228498 on Jan 21, 2011 11:37 PM

    I copied the contents of C:\oraclexe\app\oracle\product\10.2.0\server\NETWORK\ADMIN\tnsnames.ora and appended it to C:\DevSuiteHome\NETWORK\ADMIN\tnsnames.ora
    and tried net configuration management to test local net service, the test was ok, thus the first problem resolved.
    but the login problem in forms developer still exist and it claims that: ora-12154 tns could not resolve the connect identifier specified.
    any ideas?

  • Replace Oracle Logo with client logo

    Oracle Forms wizard created a form with "Oracle" logo at the upper-right corner.
    How do I replace the "Oracle" logo with another logo?

    create your own menu in forms, save it as lety say MYMENU.mmb, generate it and then assign MYMENU in the menu-property of your form-module (the mmx-file of the menu must be in your forms-path)

  • How to use LDAP with Oracle forms 10g on Oracle application server

    Hi,
    I need some help on this. I have developed oracle forms 10g on application server 9iAS. The client want to use the existing LDAP authentication to the software we wrote. I do not know how I could configure to use the existing LDAP authentication . If anyone know how would I use the existing LDAP on different server to use when they logon to our menu in 10g to validate the user. Do I need to add any varibales in formweb.cfg or any other method. Please help.
    Thanks
    Luksh

    I am not quite sure if this works out of the box. According to an Oracle FAQ:
    4.2 Can I use LDAP to authenticate Forms Services?
    Not directly. However, Oracle Login Server is able to authenticate against a LDAP directory and thus a Forms application can take advantage of this in a SSO environment. But you cannot use access control information stored in a LDAP directory with Forms.

  • Is it possible to use Oracle Forms 10g with Oracle 10g Lite Database?

    Hi All,
    We are in process of migrating our forms from 6i to 10g environment.
    We have two kinds of applications, one set run on general Oracle 11g database and the other set of forms run at the client machine using Oracle lite database.
    We dont have any problem with Forms 6i to connect to Lite database as it allows to connect through ODBC:DSN names. When we try to connect to a lite database (10gR3) from Forms 10g through ODBC/DSN, it's not allowing and throwing the below error.
    ORA-03121 : no interface driver connected - function not performed
    Can someone tell me if there is something wrong in our approach? Also advise how to use Oracle Lite database with Forms 10G.
    Sincerely,
    Praveen Manthena

    Hi,
    I have experience with 6i with lite database 10g. There are two version of lite database one is multi language support and other one in english. There lang problem in connectivity with multi language 10g lite database. I done connectivity with single language connectivity of 6i with 10g lite database. You should try this one with forms 10g.
    Regards,
    Naveed Ali

  • Make a logo overlap menu bar

    I have a logo picture file that has a transparent background.  Below that I have a spry menu bar and then the main box with content.  The logo is my name in script.  I want the J of my logo to drop down below the top line of the menu bar, just like it would if you were writing on lined paper.
    Any help would be appreciated.

    Try absolutely positioning the logo,
    HTML
    Change line 96:
    <img src="Images/brown logo.png" width="587" height="195" />
    to
    <div class="logo"><img src="Images/brown logo.png" width="587" height="195" /></div>
    CSS
    Add a new rule
    .logo {
         position: absolute;
         top: 30px;
         left: 50px;
         z-index: 9999;
    Change (starts line 44)
    .container {
    width: 1260px;
    max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
    min-width: 780px; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    margin-top: 0;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    height: 550px;
    to
    .container {
    width: 1260px;
    max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
    min-width: 780px; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
    margin-top: 150px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    height: 550px;
    Play with the  values to get your preferred layout.
    NOTE ON THE LOGO: http://www.photosbyalecia.com/Images/brown%20logo.png
    Don't know if it's the final version or not but, as it stands, that logo is way too big for a web page. Needs optimizing.
    It's 3448px x 1301 px scaled down in the web code to 587px x 195px.
    Weighs in at 240KB. Should be 15KB max.
    Browsers must first download the fullsize file then resize the image.
    Suggest you resize it in Photoshop (or your favourite editor) to final size before uploading.

  • Forms 10g in Oracle Application Server.

    Dear All,
    We are now using OC4J in Oracle Application for our Java/J2EE application, we have now developed some forms screens in Oracle forms 10g.
    Can we integrate both these application such away that the user logins thru Java Application and uses Forms screens without entering the username & password two times.
    Help me in solving this issue.
    Regards,
    Anandh.B

    Yes, by using SSO you can achieve it. The partner applications should be registered with SSO.
    Method will depend on your version of OAS for the two applications.

  • What replaces the CS6 spry menu bar in dreamweaver creative cloud 2014?

    Hi,
    Previously I used Dreamweaver CS6 and the spry menu bar widget (horizontal).  I do not see this in Dreamweaver CC 2014.  I am looking around in the Insert Panel (jQuery UI) but don't think a spry menu bar equivalent is listed.
    Is there such an equivalent built into Dreamweaver CC 2014?

    Basic CSS drop-menu
    CSS Menu - JSFiddle
    Advanced drop-menu with CSS gradients & transitions
    CSS Horizontal Drop-Menu - JSFiddle
    PVII's Pop-Menu Magic3 (commercial DW extension)
    http://www.projectseven.com/products/menusystems/pmm3/index.htm
    jQuery Superfish
    http://users.tpg.com.au/j_birch/plugins/superfish/
    Responsive Iconic
    http://www.dynamicdrive.com/style/csslibrary/item/responsive_iconic_menu/
    Responsive Hybrid
    http://www.dynamicdrive.com/dynamicindex1/responsivehybridmenu/index.html
    Nancy O.

  • Integration problem between oracle forms 10g and oracle report 10g

    Hi!
    I've got any error message "Unable to connect to the report server "server name"" when a oracle report is run using run_report_object in the oracle form under oracle form developer 10g. Please advise any settings are required in order to run the report. Thank you very much.
    Best Regards
    Pinga

    The report server is running as the report can be run via URL in the brower. However, it prompts out the error when it is called by oracle form using the run_report_object.

  • Intergration between Oracle Forms 10g and Oracle Reports 10g

    Hi!
    I've got any error message "Unable to connect to the report server "server name"" when a oracle report is run using run_report_object in the oracle form under oracle form developer 10g. But, the report can be run via URL in brower. Please advise any settings are required in order to run the report. Thank you very much.
    Best Regards
    Pinga

    The report server is running as the report can be run via URL in the brower. However, it prompts out the error when it is called by oracle form using the run_report_object.

  • Slow Problems with Oracle Forms 10g and Oracle Database 11g

    Hi, I wonder if there is a compatibility problem between Version 10.1.2.0.2 32 Oracle Forms and Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production. This is because my application runs correctly on a version of Oracle Database 10g, and when we migrated the database to an Oracle Database 11g, slowness problems came out.
    Thanks.

    We have the same issue happening with our custom forms and with some of the standard forms in EBSO. So far we have found that the form invoking a view causes ridiculous slowness in opening the form (40 mins). Using a table access has shortened the open time significantly. At this time Oracle DBAs at OOD have no clear idea why it is happening.
    we are on 11.1 database with 11.5 EBSO
    Edited by: user3223867 on Feb 4, 2011 7:55 AM

  • Can VPD Virtual Private DB in 10g replace Oracle Apps security rules?

    I read the recent article in Oracle Magazine called 'Testing Database Security', especially the section on Virtual Private Database (VPD), caught my attention. Can this feature of the 10g database be used by the Oracle Apps to restrict access to data through the apps login? We just moved to 10g.
    Our current data security is enabled by leveraging security rules attached to responsibilities. Our security rules restrict by operating unit, of which there are 89. It would be great if VPD could be used, as it might replace the need to create 89 separate security rules. We would maintain just one set of policies.
    Does anyone know if this can be used on the applications level? If anyone has done this, do you know of a documentation link that would help?
    Thanks for your insight.

    Sebes,
    Thanks for the link...it sounds like it may be part of the Oracle future landscape, but for now, we will have to live with security rules.
    Sincerely,
    Brenda

  • Forms 10g to oracle 8i database

    hi database experts,
    i have a situation here...my senior programmer want me to conenct from oracle10gr1 forms to oracle8i database(8.1.7.0.0). but when i try to log in i received an error ORA-03134 : connection to this server version are no longer supported. I show him the error but he dont beleived me. I dont know why???????
    is it no longer supported. Please i need your reply. i will print your reply and showed it to him.
    thanks in advanced.

    If he does not believe the error message thrown by Oracle itself, what makes you think he will believe us?
    Anyway, you can show him the Oracle support (Metalink) note 207303.1 and ask him read himself.

  • Needed Custom logo to be displayed  in Form Menu bar

    How do you change the Oracle logo on the right hand side of the Oracle Applications
    menu(11.5.10)
    Needed Custom logo to be displayed in Form Menu bar

    Refer to the following notes:
    [Note: 119319.1 - How to Replace Oracle Logo with Company Logo on Applications 11i Sign-On Screen|https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=119319.1]
    [Note: 404381.1 - How To Make Simple Custom Changes To The JTFLOGIN Page|https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=404381.1]
    [Note: 395663.1 - How to change the Corporate Branding Image System Wide in the E-business Suite|https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=395663.1]

Maybe you are looking for

  • While invoice verification system calculating tax on delivery costs also

    hi Guru's    i am facing problem that , wile invoice verification system calculating tax on delivery costs also , and when i am removing tax code in front of dilivery costs , invoice is not posting , i can use zero tax code for delivery costs , but i

  • Adding field in structure

    hi all, i have to add one screen field in t-code 'CJ01', but problem is that how i can add the field in include 'CI_PROJ' of table 'PROJ'? can anyone plz. reply soon ?? its urgent. regards saurabh.

  • Migration of Unity users from MS Exchange server 2007 to 2010

    Hi, I am having Unity 7.0 with MS Exchange server 2007,now want to transfer the users and Unity mailboxes to MS Exchange server 2010. Want to know the procedure. Can anyone help me out?

  • Using BT mobile simm in a tablet computer

    Hi there. I am hoping that you might be able to help me. I have a BT dongle which works well on my laptop. I am thinking of buying an Android Tablet PC (possibly a Motorola Xoom) that can access 3G as well as wireless. My question is can I use the Si

  • Cross-component: Call method of using component from within used component?

    Hi, I began diving into cross-component programming. Meanwhile after having digged into some scenarios some questions came up to my mind that I am not able to answer myself. I would appreciate your help here! Say we have to components.  Comp A uses C