Complete login procedure in ORACLE APPS.

Hi...
I am appearing for the interview and in one of the interview, i was asked to explain complete details about the login procedure. like what are the configuration files it will use and profile etc....
Please give me the possible detailed contents, if possible flow as well. thanks a lot for your help.
Regards
NEW APPS-DBA.

Hi,
See this thread.
Full cycle ...
Re: Full cycle ...
Thanks,
Hussein

Similar Messages

  • How to change header and footer in login page in oracle apps r12

    Hi all,
    how to change header and footer in login page in oracle apps r12 and login button background color, please help me
    thanks
    saran

    how to change header and footer in login page in oracle apps r12 and login button background color, please help meTips For Personalizing The E-Business Suite R12 Login Page (MainLoginPG) [ID 741459.1]
    How to Personalize Login page in R12? [ID 579917.1]
    R12 Login Page: How to Personalize the Logo ? [ID 849752.1]
    Thanks,
    Hussein

  • How to enable 'login assitance' in oracle apps login screen?

    Hi experts,
    I want to enable the login assitance option in oracle apps Initial screen(User login screen). Please guide me
    Thanks & Regards,
    Kanish

    Kanish wrote:
    It can be done through personalization for my version 12.1.1
    Thanks
    kanishYes.
    Tips For Personalizing The E-Business Suite R12 Login Page (MainLoginPG) [ID 741459.1]
    How to change text of "Login Assistance" link in login page for Oracle Applications R12 [ID 561403.1]
    Thanks,
    Hussein

  • URGENT: Need Applcore for OAF Jdeveloper - Oracle Apps 11.5.10 and R12

    Hi
    Please tell from where can I download the complete Jdeveloper Studio for Oracle Apps 11.5.10 and R12 which has Applcore.
    We need this Oracle JDeveloper for Oracle Apps 11i and R12 development.
    I downloaded Oracle Developer Suite10g (9.0.4.0.0) from :
    http://www.oracle.com/technology/software/products/ids/htdocs/904winsoft.html
    and
    Oracle Developer Suite 10g (10.1.2.0.2) from
    http://www.oracle.com/technology/software/products/ids/htdocs/101202winsoft.html
    but neither of them is having Applcore for 11i and R12
    Thanks
    Rahul
    Edited by: RahulD on Dec 2, 2008 2:53 PM

    RahulD,
    What you want is the OAF download (Oracle Application Framework). The only place to get this is on metalink; you will search based upon the specific version of apps that you have to find the appropriate "patch" to download.
    John

  • Creating security similar to Oracle Apps

    We have an application that has security similar to Oracle Apps. i.e. maintaining the users and roles (responsibilities) within our application. Discoverer has a special login mechanism for Oracle Apps users. Is there a way to configure Discoverer to work with other application which has similar secuirity mechanism?

    Hi Maruthi
    I'm afraid I have no documentation to point you at because this was done for a specific client and I have just not had the time to put together some generic documents. I can't use the client's documents because that would be unethical and has pictures of their data.
    Nevertheless, here is an overview.
    1. Look at all of the Oracle base tables and determine which ones have one of the following: ORG_ID, Set of Books ID (SOB_ID) or Chart of Accounts ID (COA_ID).
    2. Look at the same tables and run some scripts such as this: SELECT COUNT(*) FROM TABLE
    3. For all such tables that have more than say 200,000 rows add one partition for each ORG_ID, SOB_ID or COD_ID
    4. As you know, when a user logs in using an Apps account, the system sets a SYS_CONTEXT variable identifying the ORG_ID that user has access to. This is fine for tables that have an ORG_ID, but for those which only have a SOB_ID or COA_ID you can't use the ORG_ID. Therefore, what you do is create a new table, let's call it ORG_ORGANIZATIONS, that links an ORG_ID with its associated SOB_ID and COA_ID. The table is indexed on the ORG_ID.
    5. Create one function per type, thus one for ORG_ID, SOB_ID and COA_ID.
    For ORG_ID - function named 'DP_ORG_SECFUNC, the heart of the function is:
    select substr(userenv('CLIENT_INFO'),1,5) into x_org_id from dual;
    v_statement := 'ORG_ID = '||x_org_id;
    return (v_statement);
    For SOB_ID - function named 'DP_SOB_SECFUNC, the heart of the function is:
    select substr(userenv('CLIENT_INFO'),1,5) into x_org_id from dual;
    SELECT SET_OF_BOOKS_ID INTO v_set_of_books_id
    FROM ORG_ORGANIZATIONS WHERE ORG_ID = x_org_id;
    v_statement := 'SET_OF_BOOKS_ID = '||v_set_of_books_id;
    return (v_statement);
    For COA_ID - function named 'DP_COA_SECFUNC, the heart of the function is:
    select substr(userenv('CLIENT_INFO'),1,5) into x_org_id from dual;
    SELECT SET_OF_BOOKS_ID INTO v_chart_of_accounts_id
    FROM ORG_ORGANIZATIONS WHERE ORG_ID = x_org_id;
    v_statement :='CHART_OF_ACCOUNTS_ID = '||v_chart_of_accounts_id;
    return (v_statement);
    6. Create a view for each table you want to protect. For example, here is the code that creates a view for AP_INVOICES_ALL
    CREATE OR REPLACE VIEW DV_AP_INVOICES_ALL
    AS SELECT * FROM AP_INVOICES_ALL ;
    SHOW ERRORS
    EXEC DBMS_RLS.ADD_POLICY('APPS', 'DV_AP_INVOICES_ALL', 'SecByOrg', 'APPS', 'DP_ORG_SECFUNC', 'SELECT');
    Notice how this view is being protected by a policy that when anyone runs a SELECT against this view a VPD policy kicks in and calls the ORG security function.
    7. Change all of your code that Discoverer is pointing at to use new views similar to the above.
    I hope this helps
    Best wishes
    Michael Armstrong-Smith
    URL: http://learndiscoverer.com
    Blog: http://learndiscoverer.blogspot.com

  • Oracle apps login issue

    When i login as 'apps' user and execute the following command it shows error like this
    set serveroutput on
    declare
    message varchar(20);
    begin
    message := 'hi';
    dbms_output.put_line(message);
    end;
    Error starting at line 28 in command:
    declare
    message varchar(20);
    begin
    message := 'hi';
    dbms_output.put_line(message);
    end;
    Error report:
    ORA-06550: line 5, column 13:
    PLS-00302: component 'PUT_LINE' must be declared
    ORA-06550: line 5, column 1:
    PL/SQL: Statement ignored
    06550. 00000 -  "line %s, column %s:\n%s"
    *Cause:    Usually a PL/SQL compilation error.
    *Action:
    This same plsql works fine in 'applsys' user.
    After executed in 'applsys' user it works in 'apps' user also.
    How to solve this issue.
    DB Version:
    VERSION
    11.1.0.7.0
    your prompt respond would be highly appreciated
    Thanks

    876943 wrote:
    immediately after login into the application we are getting this message
    Welcome to Sourcing! Before you can begin using this product, your profile needs to be completed. Please contact your System Administrator to correct your profile.
    We are on oracle apps 11.5.10.2Please see (Supplier Users With Long Job Titles And E-Mails See An Error Message When Login Into Sourcing. [ID 1276292.1]).
    Thanks,
    Hussein

  • How to Build Custom JSP Page to bypass Oracle Apps Login

    Hi All,
    Can some one guide me how to develop a custom jsp page to bypass Oracle Apps R12 Login.
    Actually Our requirement is some external user will enter the login details in some third party login page with the third party generated username and passwrod, that user's credentials are mapped to oracle system,so as soon as they enter credentials having validated it has to redirect that external user to Oracle Apps R12 Home Page, where responsibilities are shown. Currently that third Party login page is set to redirect to RF.jsp but that is not working and throws this error:
    "You are trying to access a page that is no longer active.
    - The referring page may have come from a previous session.Please select Home to Proceed"
    So I am planning to build a custom jsp page to resolve the error.
    As soon as user enter credentials in the third party login page, it will be redirected to my custom login page which in turn redirect external user to Oracle Apps R12 Home Page, where responsibilities are shown. Is it possible? If yes what JSP Page/Servlet I have to invoke from custom JSP Page and what all URL parameters or session parameters and cookies parameter I have to pass or set.
    Can anybody please help me...
    Its very urgent. We are running short of time. Its a sev 1 issue.
    Please reply soon.
    Thanks,
    Raja Dutta

    Hi,
    Thanks for the update.
    Sir its not about calling the JSP Page from OAF page.
    My requirement is what I have explained above.
    Please suggest its urgent.
    Thanks,
    Raja Dutta

  • Oracle.apps.fnd.cache.CacheException in login page

    Hi,
    i wrote one method in am and return that values to co and the following is the code in AM
    public String Status(String reqid){
        String Status2=null;
    String Status;
        while(Staus.equals("I")||Staus.equals("R")||Staus.equals("P"))
          try{
            try
               Thread.sleep(1000);
             } catch (InterruptedException e)
                System.out.println("eroor in am thread block");
            String Query ="select phase_code,status_code from fnd_concurrent_requests where request_id=?";
            PreparedStatement stmt = getOADBTransaction().createPreparedStatement(Query,1);
            stmt.setString(1,requestid);
            ResultSet resultset= stmt.executeQuery();
            if (resultset != null)
              while (resultset.next())
              if (resultset.getString(1) != null)
               Staus = resultset.getString(1); // here to fetch the column from the query
                Status2=resultset.getString(2);
          catch(SQLException exception)
          //Incase of any error while running the query throw an exception.
          throw new OAException("Error in  Query"+ exception, OAException.ERROR);
    return Status2;
    here iam checking phase code of the programe ,f it is C iam returning the status to variable in CO.it is taking one hour time to complete to get the status code :C
    in the application,program  is   runnig but after getting "C" also the progres is still running. i closed the session and opened again and it is giving following error:
    oracle.apps.fnd.cache.CacheException
    Please help me to solve this , i got the request id but while getting status only iam facing issue..

    Hi,
    1. Are you submitting this concurrent program from your code, if yes then you should issue commit immediately after submitting the request.
    OR
    2. Try using below PL/SQL block code in your AM (please convert to java call ).
    DECLARE
    l_request_id                               NUMBER;
    o_call_status                             BOOLEAN;
    o_request_phase                              VARCHAR2(200);
    o_request_status                             VARCHAR2(200);
    o_dev_request_phase                          VARCHAR2(200);
    o_dev_request_status                         VARCHAR2(200);
    o_request_status_mesg                        VARCHAR2(2000);
    BEGIN
               o_call_status := fnd_concurrent.wait_for_request(l_request_id,
                                                                 20,
                                                                 0,
                                                                 o_request_phase,
                                                                 o_request_status,
                                                                 o_dev_request_phase,
                                                                 o_dev_request_status,
                                                                 o_request_status_mesg);
    END;
    Regards,
    Sandeep M.

  • XML Report in Arabic login in Oracle apps

    Hi,
    I have created a XML report in Oracle apps, the data is coming properly from english login.
    But when we login from Arabic Login then report does not show any data.
    The data does not come even after hard coding the values.
    Any clue for the issue..
    Below is the main query in the report.
    SELECT
    PAC1.PAYROLL_ID ,
    PAC1.PAYROLL_ACTION_ID ,
    HR_PAYROLLS.DISPLAY_PERIOD_NAME(PAC1.PAYROLL_ACTION_ID) PERIOD_NAME,
    PRO.PAYROLL_NAME
    ,TO_CHAR(SYSDATE,'DD-MM-YYYY') REPORT_DATE1
    FROM pay_payrolls_f pro,
    pay_payroll_actions pac1
    ,PER_TIME_PERIODS_V V
    WHERE pac1.payroll_id = pro.payroll_id (+)
    AND pac1.effective_date BETWEEN pro.effective_start_date (+) AND pro.effective_end_date (+)
    AND DECODE( PAC1.ACTION_TYPE, 'H', NVL(pay_payroll_actions_pkg.decode_cheque_type(pac1.business_group_id), HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE', PAC1.ACTION_TYPE)), 'T', DECODE(instrb(PAC1.LEGISLATIVE_PARAMETERS,'SLA_MODE=Y'), 0, HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER', 'GL'), NULL, HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER', 'GL'), HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER', 'SLA')) , HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE', PAC1.ACTION_TYPE)) = 'Run'
    AND PAC1.Payroll_id = 61--:P_PAYROLL_ID
    AND PAC1.time_period_id = V.time_period_id
    AND to_char(v.start_date,'MM-YYYY') = '01-2013'--:P_MONTH

    in the next time use EBS related forums - https://forums.oracle.com/forums/category.jspa?categoryID=3
    BTW
    looks like that for Arabic language you haven't some data
    in your main query you have PER_TIME_PERIODS_V which based on HR_LOOKUPS which depend on session language
    CREATE OR REPLACE VIEW HR_LOOKUPS
    where FLV.LANGUAGE = userenv('LANG')
    ...so check data in HR_LOOKUPS for Arabic language
    you can check it by query without PER_TIME_PERIODS_V
    also you can modify your main query like
    select t.PAYROLL_ID,
           t.PAYROLL_ACTION_ID,
           t.PERIOD_NAME,
           t.PAYROLL_NAME,
           t.REPORT_DATE1
      from (SELECT PAC1.PAYROLL_ID,
                   PAC1.PAYROLL_ACTION_ID,
                   HR_PAYROLLS.DISPLAY_PERIOD_NAME(PAC1.PAYROLL_ACTION_ID) PERIOD_NAME,
                   PRO.PAYROLL_NAME,
                   TO_CHAR(SYSDATE, 'DD-MM-YYYY') REPORT_DATE1,
                   PAC1.time_period_id
              FROM pay_payrolls_f pro, pay_payroll_actions pac1
             WHERE pac1.payroll_id = pro.payroll_id(+)
               AND pac1.effective_date BETWEEN pro.effective_start_date(+) AND
                   pro.effective_end_date(+)
               AND DECODE(PAC1.ACTION_TYPE,
                          'H',
                          NVL(pay_payroll_actions_pkg.decode_cheque_type(pac1.business_group_id),
                              HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE',
                                                       PAC1.ACTION_TYPE)),
                          'T',
                          DECODE(instrb(PAC1.LEGISLATIVE_PARAMETERS, 'SLA_MODE=Y'),
                                 0,
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'GL'),
                                 NULL,
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'GL'),
                                 HR_GENERAL.DECODE_LOOKUP('TRANSFER_TO_LEDGER',
                                                          'SLA')),
                          HR_GENERAL.DECODE_LOOKUP('ACTION_TYPE',
                                                   PAC1.ACTION_TYPE)) = 'Run'
               AND PAC1.Payroll_id = 61 --:P_PAYROLL_ID
            ) t
      left outer join PER_TIME_PERIODS_V V
        on (t.time_period_id = V.time_period_id AND
           to_char(v.start_date, 'MM-YYYY') = '01-2013' --:P_MONTH
           )

  • Login in to OBIEE with Oracle Apps Credentials

    How can i connect to OBIEE repository and presentation services using Oracle Apps (ebusiness suite) user name and password the same way it can be done in discoverer.
    if anyone can point me to a link or give me his own opinion on how to do that please do.
    Thanks

    Hy Daan,
    You are the king of Ebs.
    A little search on google over ExternalLogon, return me on this page :
    http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/e10416/general_10134.htm#BEHJFJDD
    11.5.3.2 Specifying the External Login for Single Sign-On with EPM Workspace
    An external token (or ticket) can be passed to Oracle BI Presentation Services by another system, which facilitates the use of Single Sign-on with EPM Workspace and Oracle BI.
    To configure for a token to be passed from EPM Workspace to Oracle BI Presentation Services for Single Sign-on, you must add or modify the <ExternalLogon> element of the instanceconfig.xml file as follows:
    <Auth>
    <ExternalLogon enabled="true" logonPageAllowed=”true”>
       <ParamList>
          <Param name="UID" source="url" nameInSource="sso_token"/>
          <Param name="PWD" source="constant" value="obips.hss.ssotoken"/>
       </ParamList>
    </ExternalLogon>
    </Auth>Does it mean that you need Oracle SSO (the ldap of oracle) ?
    http://www.oracle.com/technology/products/id_mgmt/esso/index.html
    Cheers
    Nico

  • Do the shell script have to login into Oracle Apps

    I am calling the Document Processor Java API from a shell script. The problem I have that its unable to find the
    xdo://PO.POXPRPOLXMLRTF.en.US/?getSource=true
    file within the control file.
    Is this because somewhere a shell variable needs to be set, or a login need to be made into the Oracle Apps, so this template stored in XML Publisher is accessible.
    Please advise!

    Another things you can do is
    begin
    tmp_res := apps.fnd_web_sec.CHANGE_PASSWORD('TESTUSER','changeme',false);
    update fnd_user set password_date = null where user_name = 'TESTUSER'';
    end;
    Once you do this, when the TESTUSER logs in with the password=changeme, he/she will be redirected to the change password page.
    Hope this helps,
    Sandeep Gandhi

  • Oracle apps 12.1.3 login issue

    Hi ,
    The user has encounetered the below error when he logged into the oracle applications instance
    unable to generate forwarding URL.Exception: oracle.apps.fnd.common.AppsException:oracle.apps.fnd.common.PoolException:Exception creating new poolable object
    I checked with the below metalink ID but all the dns entries seem to be good and i can perform nslookup
    without any errors .So this ID is not helpfil
    Got Error "Exception: oracle.apps.fnd.common.AppsException: oracle.apps.fnd.common.PoolException: Exception creating new Poolable object" When Login EBS [ID 1485112.1]
    Can anyone help me on this as this is urgent issue for me?
    Thanks,
    Aram

    Is this error coming for only one user or all users are impacted?
    Have you tried bouncing apache if all users are impacted?
    Thanks,
    JD

  • I face  "oracle.apps.fnd.cache.cacheexception" after login to apps

    hi, ihave
    RDBMS:9.2.0.3.0
    oracle APPs: 11.5.9
    i face oracle.apps.fnd.cache.cacheexception after i restore the database (coz of acrash) and note that the apps is not restored.
    so now ihave apps older than the DB by 2days.
    i checked the GUEST_USER_PWD=GUEST/ORACLE in the DBC file its correct .
    The GUEST_USER_PWD is GUEST/ORACLE and the login test result is Y
    and GUEST user account is not end dated..
    any help?

    i did that and here is the logs again
    error_log
    [Tue May 12 14:17:40 2009] [notice] FastCGI: process manager initialized (pid 680072)
    [Tue May 12 14:17:41 2009] [notice] Oracle HTTP Server Powered by Apache/1.3.19 configured -- resuming normal operations
    [Tue May 12 14:17:51 2009] [error] [client 10.22.8.62] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:17:51 2009] [error] [client 10.22.8.62] File does not exist: /home01/oraprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Tue May 12 14:18:14 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/jdbc
    [Tue May 12 14:18:16 2009] [error] [client 10.20.2.74] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:18:16 2009] [error] [client 10.20.2.74] File does not exist: /home01/oraprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Tue May 12 14:18:18 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:18:18 2009] [error] [client 10.22.8.64] File does not exist: /home01/oraprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Tue May 12 14:18:37 2009] [error] [client 10.20.2.103] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:18:38 2009] [error] [client 10.20.2.103] File does not exist: /home01/oraprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Tue May 12 14:19:17 2009] [error] [client 10.20.2.80] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:19:17 2009] [error] [client 10.20.2.80] File does not exist: /home01/oraprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Tue May 12 14:19:41 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:19:41 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:19:41 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:19:41 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:19:41 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:19:42 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:19:42 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:19:42 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:19:42 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:19:55 2009] [error] [client 192.168.202.35] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:21:52 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:21:54 2009] [error] [client 10.22.8.74] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/jdbc
    [Tue May 12 14:21:55 2009] [error] [client 10.22.8.74] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:22:08 2009] [error] [client 10.4.1.165] File does not exist: /home01/oraprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Tue May 12 14:22:10 2009] [error] [client 10.4.1.166] File does not exist: /home01/oraprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Tue May 12 14:22:25 2009] [error] [client 10.1.10.58] File does not exist: /home01/oraprod/prodcomn/portal/PROD_jtsrv18/favicon.ico
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:22:54 2009] [error] [client 10.1.10.58] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:25:14 2009] [error] [client 10.1.13.45] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/jdbc
    [Tue May 12 14:25:15 2009] [error] [client 10.1.13.45] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:25:23 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:25:23 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:25:23 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:25:23 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:25:23 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:25:24 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:25:24 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:25:24 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:25:24 2009] [error] [client 10.20.2.69] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:26:17 2009] [error] [client 10.4.1.166] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/jdbc
    [Tue May 12 14:26:35 2009] [error] [client 10.22.8.67] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/jdbc
    [Tue May 12 14:26:36 2009] [error] [client 10.22.8.67] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:28:16 2009] [error] [client 10.22.8.72] File does not exist: /home01/oraprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:29:21 2009] [error] [client 10.4.1.165] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:25 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:30:25 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:30:25 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:25 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:30:25 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:25 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:30:25 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:26 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:30:27 2009] [error] [client 10.20.2.95] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:30:43 2009] [error] [client 10.4.1.164] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:31:46 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:31:47 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:31:47 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:31:47 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:31:47 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:31:47 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:31:47 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:31:48 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:31:48 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:34:24 2009] [error] [client 10.20.2.92] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:34:24 2009] [error] [client 10.20.2.92] File does not exist: /home01/oraprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Tue May 12 14:39:51 2009] [error] [client 10.22.8.74] File does not exist: /home01/oraprod/prodcomn/java/oracle/apps/media/oracle/apps/media/splash.gif
    [Tue May 12 14:39:51 2009] [error] [client 10.22.8.74] File does not exist: /home01/oraprod/prodcomn/java/oracle/forms/icons/bgnd.gif
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:41:35 2009] [error] [client 10.4.1.167] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:47:05 2009] [error] [client 10.20.2.105] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/jdbc
    [Tue May 12 14:47:06 2009] [error] [client 10.20.2.105] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:48:47 2009] [error] [client 10.22.8.64] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:48:47 2009] [error] [client 10.22.8.64] File does not exist: /home01/oraprod/prodcomn/java/oracle/ewt/alert/resource/AlertBundle_en_US.properties
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/ewt
    [Tue May 12 14:48:54 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/sun/beans
    [Tue May 12 14:48:55 2009] [error] [client 10.1.10.110] client denied by server configuration: /home01/oraprod/prodcomn/java/oracle/forms/engine
    [Tue May 12 14:48:55 2009] [error] [client 10.1.10.110] File does not exist: /home01/oraprod/prodcomn/java/oracle/forms/engine/RunformBundle_ar_JO.properties
    [Tue May 12 14:51:20 2009] [error] [client 10.20.2.68] client denied by server configuration: /home01/oraprod/prodcomn/java/java
    Edited by: user8006044 on May 12, 2009 5:40 AM

  • Issue with IE8, during login to Oracle Apps 11.5.9 front end

    Hi,
    One of the user is getting below error message window in IE8, when he tries to login to Oracle Apps 11.5.9 front end, with his username and password:
    "Errors on this webpage might cause it to work incorrectly.
    Element not found
    Common2_2_24_2.js Line 2722
    Code:0 Char:1
    URI:http://myserver.x.com:8020/OA_HTML/cabo/jsLibs/Common2_2_24_2.js"
    User tried deleting cookies and temporary internet files aslo, restore default as well nothing seemed to be worked.
    Please suggest.
    Regards,
    Purnima

    I assume you mean in the security settings screen of IE. There are several differences:
    Description     User's Computer     Other Computer
    Allow previously unused ActiveX controls to run without prompt     Enable     Disable
    Allow Scriptlets     Enable     Disable
    Automatic prompting for ActiveX controls     Enable     Disable
    Only allow approved domains to use ActiveX without prompt     Disable     Enable
    Automatic prompting for file downloads     Enable     Disable
    Access data sources across domains     Prompt     Disable
    Allow scripting of Microsoft web browser control     Enable     Disable
    Allow script-initiated windows without size or position constraints     Enable     Disable
    Allow websites to open windows without address or status bars Enable Disable
    Don’t prompt for client certificate selection when no certificates or only
    one certificate exists     Enable     Disable
    Include local directory path when uploading files to a server     Enable     Disable
    Launching applications and unsafe files     Enable     Prompt
    Software channel permissions     Medium safety     Does not have this option listed
    Use Pop-up Blocker     Disable     Enable
    Use SmartScreen Filter     Disable     Enable
    Allow status bar updated via script     Enable     Disable
    Allow websites to prompt for information using scripted windows     Enable     Disable
    Enable XSS filter     Disable     Enable
    User even changed above IE setting according to the other IE but he still gets the same error.
    Regards,
    Purnima

  • What all happens when we login to Oracle apps

    What all happens when we login to Oracle apps ? What all files are touched when we login to applications, like when DBC file is use, applsyspub/Guest user comes into picture ?
    Thanks

    Hi;
    Pelase check below thread i belive they will answer you:
    Login process
    Full cycle ...
    Re: Full cycle ...
    Regard
    Helios

Maybe you are looking for

  • HOW TO PASS VALUE TO STORED PROCEDURE through page

    Hi I want to create generate next number on base of type. I have created stored procedure with passing  three value input. If I am passing value manually through page then next number is generating. But I don't to pass value manually, I have to assig

  • Can a new iMac seve as a monitor for a PC?

    I just bought a new iMac. Can I use it as a monitor for a PC?

  • Data Compression in ColdFusion 9 for SQL Server 2008

    Hi, I need to store fairly large blocks of HTML text in SQL Server (I won't go into why, unless necessary). Unfortunately even after stripping out the white space, the text string gets so long that the INSERT/UPDATE query times out. I'm looking for a

  • DOMParser changing characters problem...

    Hi, I want to parse a String into an XMLDocument. Therefor I use this code:   StringReader sr = new StringReader(rset.getString(1));   DOMParser parser = new DOMParser();   parser.parse(sr);   xml = parser.getDocument();The String that will form the

  • An error occurred while scanning for security updates. (0x80004003)

    Has anyone seen this error:   An error occurred while scanning for security updates. (0x80004003)? This error occurs when I run the MBSA tool either locally or remote against a workstation.  I also thought that the firewall may be the issue, it is no