Calling From Oracle Forms 11g patch set 2(11.1.1.3.0) to  Oracle Reports 1

Hi
While calling From Oracle Forms 11g patch set 2(11.1.1.3.0) to Oracle Reports 11g patch set 2(11.1.1.3.0) I found unable to run report error
But its finely working in 10g. The Place of error is in find_report_object
Is any solution to resolve this problem like any registry setting or patches to solve this problem
Please guide me
Regards
Murali N S

I was able to download it from this link:
[http://download-llnw.oracle.com/otn/java/jdeveloper/11.1.1.3.0/jdevstudio11113install.exe]
on the general 11g Fusion download page at:
[http://www.oracle.com/technology/software/products/middleware/index.html]
Although the site does appear to be having problems. I got intermittent errors of the page/server not being available.

Similar Messages

  • Calling Report from Menu (Oracle Forms 11g)

    I'm trying to call a report from a menu item in a menu (that is attached to a form) in Oracle Forms 11g directly and I'm having some difficulty. I know how to call a report from a form and everything works perfectly.
    But since in a menu there is no item called "Report" to attach like there is in Forms, I followed on route which is to attach the "rp2rro" PL/SQL library on the menu file (mmb) and I also even did it on the form itself. Then when you convert a menu using the Forms Migration Assistant, it will comment out statements like "ADD_PARAMETER" and replace with calls to packaged procedures/functions from the package "rp2rro". I set all the parameters
    RP2RRO.SETOTHERS('PARAMFORM=YES');
    RP2RRO.SETDESTYPE('CACHE');
    RP2RRO.SETDESFORMAT('PDF');
    RP2RRO.SETCOMMUNICATIONMODE(SYNCHRONOUS);
    then made the call to the report:
    RP2RRO.RUN_PRODUCT(REPORTS, 'MYREPORT', SYNCHRONOUS, RUNTIME, FILESYSTEM, param_list_id, NULL);
    but all i get is the error "FRM-41219: Cannot find report: invalid ID."
    The Oracle documentation for integration reports in forms is for when you execute the report within a form not a menu item (that is attached to a form). Any clues?
    My environment is:
    Oracle (Database, Fusion Middleware) 11g - Red Hat Enterprise Linux 5
    Web Browser - Internet Explorer 7 on Windows XP Professional
    Thanks,

    Francois Degrelle wrote:
    Hello,
    One option is to use the Web.Show_Document() built-in, with the complete Report Server URL inside. Of course, you can hide some information (connection string for instance) by calling a section of the /reports/conf/cgicmd.dat configuration file.
    FrancoisI tried it using the code below
    DECLARE
    c_relative_path CONSTANT VARCHAR2(50) := '/reports/rwservlet/?server=';
    c_rep_srv_name CONSTANT VARCHAR2(50) := 'rep_wls_reports_calgf3_asinst_1';
    c_rep_name CONSTANT VARCHAR2(30) := 'copy_detail.rdf';
    c_desformat CONSTANT VARCHAR2(10) := 'htmlcss';
    c_destype CONSTANT VARCHAR2(10) := 'cache';
    v_username VARCHAR2(100);
    v_password VARCHAR2(100);
    v_db_instance VARCHAR2(40);
    v_connect_string VARCHAR2(300);
    v_rep_srv_params VARCHAR2(200);
    v_rep_url VARCHAR2(400);
    BEGIN
    v_username := LOWER(get_application_property(username));
    v_password := LOWER(get_application_property(password));
    v_db_instance := LOWER(get_application_property(connect_string));
    v_connect_string := v_username || '/' || v_password || '@' || v_db_instance;
    v_rep_srv_params := '&report=' || c_rep_name ||
    '&desformat=' || c_desformat ||
    '&destype=' || c_destype ||
    '&userid=' || v_connect_string ||
    '&paramform=yes';
    v_rep_url := c_relative_path || c_rep_srv_name || v_rep_srv_params;
    web.show_document(v_rep_url, '_blank');
    END;
    and I get a new tab in the browser opening up (which is good at least) with the Oracle Reports Services page saying:
    Error
    No such Web command ().
    Now I've tried putting a URL of a Oracle's website (http://www.oracle.com) and that works perfectly. Another question is, where would the default directory be if I wanted to say call an HTML file? Would it be in the directory of FORMS_PATH where all my fmb, fmx, rdf, pll, etc...files are stored?
    Thanks,

  • Calling Report from Oracle form 11g

    I am new to Forms 11g, trying to call report from Oracle forms 11g .
    I want to call report from oracle forms, but its giving error.
    Below is the code
    DECLARE
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := FIND_REPORT_OBJECT('empreport'); -- report node in forms builder
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_EXECUTION_MODE, BATCH);
    set_report_object_property ( repid, report_filename, 'empreport.rdf' ); -- report name
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,cache);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'PDF');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'RptSvr'); -- report server name
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    if
    rep_status = 'FINISHED'
    then
    WEB.SHOW_DOCUMENT('http://inorasrv-pc:7001/reports/dtd/rwservlet/getjobid='||v_rep||'?server='||'RptSvr','_blank');
    else
    message ( 'error while running reports-object ' || error_text );
    message ( ' ' );
    clear_message;
    end if;
    end;
    Above code giving following error :
    Unable to connect to report server RptSvr
    I think my report servername is wrong
    Where to find report server name in 11g.
    I am Using weblogic server, so can i give weblogic server name
    Thanks in advance.
    Edited by: parapr on Aug 17, 2012 1:52 AM
    Edited by: parapr on Aug 17, 2012 3:21 AM

    Hi,
    You have to have the report server
    a. Installed and configured
    b. Running.
    See
    http://docs.oracle.com/cd/E21764_01/bi.1111/b32121/pbr_strt001.htm
    http://docs.oracle.com/cd/E17904_01/bi.1111/b32121/pbr_verify004.htm
    http://docs.oracle.com/cd/E17904_01/bi.1111/b32121/pbr_conf003.htm#i1007341
    If you are using rwservlet then you will find the name from the Configuration file referred to in the last link.
    Cheers,

  • RE: Calling a Web service from Oracle Forms 11g

    I wonder if anyone could please help with the following
    We have a requirement for a real time communication between Oracles Forms (11g) and SAP over the RR LAN network.
    This would require the need to send info to and receive info from SAP as it will be an on-line validation of a Part from an Oracle FORM to SAP (response less than 1 second).
    What would be the best and easiest way to code this an Oracle FORMS trigger.
    Thanks very much
    Durjoy
    tel 07790 495 626

    Hello,
    <p>Did you read this paper ?</p>
    Francois

  • Does anyone know how Oracle Forms (11g) sets the V$SESSION.MODULE value?

    Hi,
    Older versions of forms required explicit calls to dbms_application_info package to set the name of the forms module (or other useful diagnostic info made visible on the database via v$session module, action and client_info).
    It seems that the application we currently manage (third party vendor) sets this, too. But I cannot find any call to DBMS_APPLICATION_INFO in the source fmb, pll, olb or any database package code called from the forms sessions.
    Can anybody confirm my suspicion that the V$SESSION.MODULE attribute is now being set by low-level Forms library code, independently of application code?
    If so, it's a great feature, I just want peace of mind! I've searched google, this forum and Oracle Support site for any reference to such a behaviour, but struck out.
    Thanks,
    Andrew

    Oops. Next time I'll take off the 90day limit on search history.
    For others: In 11G the MODULE column of V$SESSION is updated with the Forms module name. [Oracle Support ID 1413688.1]
    Cheers,
    Andrew

  • How to invoke crystal reports from Oracle forms 11g R2 along with passing p

    How to invoke crystal reports from Oracle forms 11g R2 along with passing parameter to it.
    how to pass parameters to crystal report, please help.

    how to pass parameters to crystal report, please help.This would entirely depend on crystal reports and you might find informations on crystal reports related communities more likely...I for one have seen crystal reports the last time about 12 years ago. And even back then I simply acknowledged it's existence instead of working with it.
    Maybe crystal reports can be invoked via a URL call which would make it simple as you'd need simply build an URL and show the report using web.show_document. But that's pure speculation. Also you might not be the first with this requirement, so the solution to your problem might be right under your nose and just a little google search away ;)
    cheers

  • To set access key for push button in oracle forms 11g

    Dear Team,
    I have following setup:-
    We are using oracle database 11gR2
    Oracle Forms & reports : 11.1.2
    O.S : Windows 7 Professional
    We have migrated oracle forms version from 6i to 11g
    In oracle forms 6i in save button's property palette we set access key as 'S', so when we press alt+S cursor move to save button, same is not working in oracle forms 11g.
    What changes I have to made in new version so that after pressing alt+S cursor will move to save button.
    Any help is appreciated.
    Thanks in Advance.

    You will need to define your custom key map in the key mapping file you use. Typically fmrweb.res or fmrpcweb.res. Edit the file in a text editor and take a look to figure out where you need to make the change.This is wrong! The OP is talking about the Access Key (key mnemonic's) of a button. This has nothing to do with the mapping of keys in the frmweb.res, etc., files.
    @parapr, You don't mention the Java version installed and you don't mention if your OS is 32-bit or 64-bit. Likely, this issue could be related to an incompatible Java version. We use Access Keys in our 11g R2 application and they work just fine. Our Java version is 1.6.0_31. If you are using Java 1.7.0 - this version is not yet certified with Oracle Forms and I would recommend you downgrade to 1.6.0 (latest version).
    Craig...
    Edited by: CraigB on Dec 3, 2012 9:09 AM

  • Is Oracle Identity Management 11g Patch Set 5 (11.1.1.6.0) reqd for Essbase

    In the Media pack Readme for parts required to be downloaded for different EPM products, Essbase has Oracle Identity Management 11g Patch Set 5 (11.1.1.6.0) for Microsoft Windows x86 (64-bit) listed. Can someone please tell me if this is a must have. If not under what conditions does one need to have this?
    Thanks,
    Ted.

    It is not a must have, if you don't know what OIM is then you probably dont need it :)
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • "Bad Applet class name" error while recording on Oracle Forms 11g through OpenScript (JRE 1.7.0_17)

    Hi,
    I am trying to record automation functional test script on Oracle Forms 11g using OpenScript.
    Able to open the browser, but after accessing application URL, getting application error as "Bad Applet class name"
    Java Plug-in 10.17.2.02
    Using JRE version 1.7.0_17-b02 Java HotSpot(TM) Client VM
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    SSV dialog is suppressed........
    cracked oracle.forms.engine.Main
    Loading cached Forms Jars ...
    Is this version (Oracle forms 11g, JRE 1.7.0_17) supported by OATS-OpenScript ?
    Please advise if there is any work around here.
    Thanks.

    From the last OATS release notes available in the C:\OracleATS\docs directory:
    4.1 Oracle Functional Testing/OpenScript
    Oracle Functional Testing’s OpenScript scripting platform has the following system
    requirements:
    ■ Operating System (32-bit and 64-bit versions): Windows XP, Windows Vista,
    Windows 2003, Windows 7, Windows 2008, Windows 2008 R2.
    ■ Memory: Minimum 1 GB
    ■ System: x86, 32-bit or 64-bit processor, 2.6 GHz or faster
    ■ Disk Space: 4 GB minimum
    ■ Browser: Internet Explorer 7.x, 8.x., 9.x; Firefox 3.5/3.6, 6.x, 10; Chrome 27+
    (playback only).
    ■ Java Runtime Environment: JRE 1.6 minimum (up to build 38), JRE 1.7 (up to build
    11) .
    So basically, it's not supported... Can you try with another JRE version?
    As always don't forget to run OpenScript as administrator on W7/8 or equivalent
    JB

  • Oracle forms 11g , mailmerge errors WUO-712 and WUO-707

    error
    client_ole2.set_property(mm_obj, 'Destination', 0);
    WUO-712 Unable to set Property: {0}; Exception: {1}.Type: UserDescription: WebUtil was unable to set the specified Property tothe specified value
    client_ole2.invoke(mm_obj, 'Execute');
    WUO-707 Unable to invoke Method: {0}; Exception: {1}.Type: UserDescription: WebUtil was unable to invoke the specifiedMethod
    I migrated oracle forms 10g application to Oracle forms 11g.
    One form uses mailmerge is failing. This options was working in previous 10g version using WinWord 2003.
    Failing in current version Oracle 11g and Winword 2007
    Three documents are invovled in the process
    mailmerge_data.docx --- datasource document -- have address attributes
    FOBSENT.docx -- template document
    output.docx -- using mail merge options address are populated from mailmeger_data.docx into FOBSENT.dox and created a new output word document which we send it to customer.
    ------------------------------------------------------- WUO-712 and WUO-707
    client_ole2.set_property(mm_obj, 'Destination', 0); -- 0 is value of constant wdSendToNewDocument
    client_ole2.invoke(mm_obj, 'Execute');
    Any help to resove this is apprciated.
    Thanks in Advance
    Raghav

    Sorry I was away,
    We migrated 10G forms to 11g also Winword 2003 to Winword 2007
    It's erroring at this point
    mm_obj := client_ole2.get_obj_property(template_doc, 'MailMerge');
    Failing ---> client_ole2.set_property(mm_obj, 'Destination', 0); -- 0 is value of constant wdSendToNewDocument
    Failing --->client_ole2.invoke(mm_obj, 'Execute');
    Not able to read or open document use to work in previous version.
    Raghav

  • Copy/Paste functionlity is not working in oracle forms 11g

    Hi All,
    We are using custom built big application (oracle 11g/forms 11g).
    1. And few user are not able to copy/paste from oracle forms 11g to winword.And its random sometime they can ,sometime they can't .
    2. If they have problem means they have copy/paste issue and (When we close application and run it again it is working fine)
    3.it's random we are not able to re-produce in development environment.
    What i noticed both user have problem and both are using left hand mouse ,generally we use left/right they are using right/left.
    Here the Environment Detail:
    Java runtime :1.6.0_26
    Weblogic server
    oracle forms 11g
    So just wondering is there any changes required. Seniors/Guru please advise.
    Thanks!

    It is very important to make clear which direction you are going. If you are not able to copy from Forms and paste to an external application, this could be any one or more of the following:
    1. There is a problem with the JRE. Consider uninstalling ALL currentlly installed JREs and install the latest supported version 1.6.0_33
    2. There may have been an issue with the Forms version you are using. Be sure you are using 11.1.1.6 or 11.1.2.0. If not, install the latest patch.
    3. The JRE was unable to properly identify or store the digitial signature in the Forms jar file or one which you included (custom code). If you are using any customer jar files, ensure that they have been properly signed. Also be sure that JRE cache is being stored on the local client machine and not a remote location as this is not supported. If you have not altered the default, the cache is stored in the user's home directory under Application Data (AppData for Win7)
    4. Could be a mouse driver issue. Go to the mouse vendor's web site and get the latest driver for that mouse. Do not use the MS drivers.
    Example:
    C:\Users\<USER NAME>\AppData\LocalLow\Sun\Java\Deployment\cache
    So, recommendations:
    1. Uninstall all JRE versions currently installed. Install 1.6.0_33
    2. Ensure that you are using 11.1.1.6 or 11.1.2.0
    3. Clear the JRE cache. To do this close ALL open browsers and open the Java Control Panel. Look on the General tab for Temporary Internet Files > Settings > Delete Files > Ok
    4. Install the latest mouse driver.
    5. Retest
    Edited by: Michael Ferrante (Oracle) on Jul 25, 2012 2:58 PM

  • Using jfreechart with oracle forms 11g

    Hi everybody,
    I'm using jfreechart with oracle forms 11g to continue having graphs in my application since i'm migrating from forms 6i. I've already got it working and it's great. Just have one problem left. I don't know how to change the axis labels. In Bar charts, it comes with "Values" in y axis and "Category" in x axis by default. I wanted to change that or make it dissapear. Anyone knows how to?

    I've never used the jFreeChart, but according to their website you can use the "setLabel" method to set the label for an axis. Check out Axis (JFreeChart Class Library) for more information.
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Oracle Forms 11g Installation. Create domain problem

    Hi,
    I am installing Oracle Forms 11g on Windows 7 32-bit system. Installation is done. Create domain is failing during the configuration process.
    I searched everywhere but cudnt find a solution specific to the problem.
    Only recognisable error message is 'CSF Entries will not be parsed since the AdminServer is unreachable'.
    I have checked Node Manager is not running.
    Please find below the snapshot of the last few lines of the log file
    [2014-05-23T13:43:22.554+05:30] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] [SRC_CLASS: oracle.as.install.template.screens.ConfigurationPage] [SRC_METHOD: onDescriptionChange]  [CONFIG PAGE] New Description: Application Configuration
    [2014-05-23T13:43:22.554+05:30] [as] [TRACE] [] [oracle.as.install.engine.modules.presentation] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] [SRC_CLASS: oracle.as.install.template.screens.ConfigurationPage] [SRC_METHOD: onDescriptionChange]  [CONFIG PAGE] Old Description: Application Configuration
    [2014-05-23T13:43:22.570+05:30] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Setting valueOf(DOMAIN_HOME_PATH) to:C:/Oracle/Middleware/user_projects/domains/ClassicDomain. Value obtained from:USER
    [2014-05-23T13:43:23.787+05:30] [as] [NOTIFICATION] [] [oracle.as.install.engine] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Setting valueOf(DOMAIN_PORT) to:7001. Value obtained from:USER
    [2014-05-23T13:43:27.297+05:30] [as] [NOTIFICATION] [] [oracle.as.install.engine.config] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Starting Action:Application Configuration
    [2014-05-23T13:43:27.297+05:30] [as] [TRACE:16] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] [SRC_CLASS: oracle.as.install.classic.ca.standard.ClassicConfigMain] [SRC_METHOD: doExecute] ENTRY
    [2014-05-23T13:43:35.117+05:30] [as] [WARNING] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] CSF Entries will not be parsed since the AdminServer is unreachable
    [2014-05-23T13:43:35.133+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Executing a Jaxb workflow ...
    [2014-05-23T13:43:35.133+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Begining Oracle Fusion Middleware Configuration ...
    [2014-05-23T13:43:35.133+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Begining Oracle Fusion Middleware Configuration ...
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] ENTRY ASDomain.createDomain
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] ENTRY ASDomain.createDomain
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: ENTRY........
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: eventStatus........oracle.as.provisioning.engine.ConfigEventStatus@180874
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: 2........
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: Set the Extion Id to START........
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: Did the assignment...
    [2014-05-23T13:43:35.180+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] reportStartConfigAction: EXIT........
    [2014-05-23T13:43:35.320+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Domain Home: C:/Oracle/Middleware/user_projects/domains/ClassicDomain
    [2014-05-23T13:43:35.320+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Oracle Home: C:/Oracle/Middleware/Oracle_FRHome2
    [2014-05-23T13:43:35.320+05:30] [as] [NOTIFICATION] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] Setting os object values in Python
    [2014-05-23T13:44:18.861+05:30] [as] [ERROR] [] [oracle.as.provisioning] [tid: 21] [ecid: 0000KOc8z4d1NeLqyOedMG1JVjlV00000C,0] [[
    oracle.as.provisioning.exception.ASProvWorkflowException: Error Executing workflow.
    at oracle.as.provisioning.engine.WorkFlowExecutor._createDomain(WorkFlowExecutor.java:686)
    at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:391)
    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
    at oracle.as.install.classic.ca.standard.StandardWorkFlowExecutor.execute(StandardWorkFlowExecutor.java:65)
    at oracle.as.install.classic.ca.standard.AbstractProvisioningTask.execute(AbstractProvisioningTask.java:26)
    at oracle.as.install.classic.ca.standard.StandardProvisionTaskList.execute(StandardProvisionTaskList.java:61)
    at oracle.as.install.classic.ca.ClassicConfigMain.doExecute(ClassicConfigMain.java:124)
    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:375)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)
    at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
    at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:96)
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:186)
    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)
    at java.lang.Thread.run(Thread.java:662)
    Any help is highly appreciated.

    Hi,
    Please run the below commands in the command prompt :-
    1)hostname
       Ex:-
           C:\Users>hostname
            celvpint8511
    2)nslookup <Result of the step 1>
       Ex :-  C:\Users>nslookup celvpint8511
                Server:         192.135.82.132
               Address:        192.135.82.132#53
               Name:   celvpint8511.us.oracle.com
               Address: 10.64.166.6 [ So this is the IP Address which needs to be used ]
    So please get the right IP and then update it in the host file.
    Regards,
    Prakash.

  • Oracle Forms 11g SSO with OID and IAM

    What versions of OID and Access Manager are required to get an Oracle Forms and Reports 11.1.1.2 application
    on Weblogic 10.3.2 configured for Oracle SSO using OID authentication?
    We want the OID to store and authenticate Users for username and password logins to the database, then
    ultimately by user Certificate authentication in OID. I have OID 11.1.1.2 installed and SSO enabled for Forms
    in Enterprise Manager.
    Is Access Manager required for Forms SSO with OID authentication to work or just to allow user interaction
    for registration and Password reset?
    Things mention OAM 10.4.3 and others talk about IAM 11g for Forms 11.1.1.2 SSO to work with OID.
    We did this back in Oracle Forms and OID 10g with JSP and LDAP to setup users but I understand 11g is
    different and IAM can help or is required for this type of SSO to work.
    Any help?
    Edited by: Kirch on Apr 30, 2013 7:39 AM

    Hi,
    According to Oracle's certification matrix found at http://www.oracle.com/technetwork/middleware/downloads/fmw-11gr1certmatrix.xls, Oracle Forms 11.1.1.2 is not supported to use any Oracle Access Manager (OAM) version. OAM is a component of IAM. It is only supported with Oracle SSO 10.1.4.x. The best solution would be to upgrade the Forms and Reports environment to either 11gR2 (11.1.2.1) or to the latest 11gR1 patchset 11.1.1.7. Both versions are compatible with OAM 11.1.1.7.0 and OID 11.1.1.7.0 where only Forms 11gR2 (11.1.2.1) is compatible with OAM 11.1.2.0 and OID 11.1.1.7.0. That would be the best solution as we have ran into configuration problems in the past with using Oracle SSO 10.1.4.x.
    Since OID 11.1.1.2.0 is already installed, you should be able to patch it up to 11.1.1.7.0.
    For user authentication in OID, it is required to have OAM or Oracle SSO as both products use WebGate or mod_osso agents for authentication and authorization. For purposes of allowing end users to register accounts and password reset, you will either need to also install another IAM component called Oracle Identity Manager (OIM) or create a customized SSO login page that can be coded to perform these actions. I believe there are some examples available on the Internet.
    Thanks,
    Scott
    http://pitss.com/us

  • Oracle Forms 11g / frmall.jar or frm90all.jar installation

    I need to import Oracle.Forms.properties.ID in one of my JDeveloper application.
    I am using JDeveloper 10.1.3.5. I need frmall.jar/frm90all.jar to make the above import statement work in JDeveloper if i am not mistaking.Basically i need to add either of the .jar in Jdeveloper.
    For that I came accross Oracle Forms 11g. For Oracle Forms 11g I have installed wlserver_10.3. and i have ofm_pfrd_win_11.1.1.3.0_32_disk1_1of1\Disk1 with Oracle Fusion Middleware forms 11g setup. When I click on that setup getting a Oracle screen asking me for Oracle Middleware Home and Oracle Home Directory. My Oracle 11g db is installed in C:\new\Oracle11g.
    And setting up ORACLE_HOME pointing t that directory. clicking on next on that screen is giving errors like Oracle Home location is not specified , The specified MiddleWare Home is not valid and Oracle.classicwsl.top could not be located etc.
    Can Anyone help me solving this issue so I can use Oracle Forms ID in JDeveloper.?

    Let me tell you what exactly i am doing :
    I have set the below environment variables:
    Path=C:\new\Oracle11g\bin;D:\app\veeralakshmi_v01\product\11.1.0\client_1\bin;C:\Program Files\ZeroC\Ice-3.4.1\bin;C:\Program Files\Java\jdk1.5.0_16\bin;
    ORACLE_HOME=C:\new\Oracle11g\BIN;
    I have C:\Oracle\Middleware in this path i have folders and sub folders like C:\Oracle\Middleware\jrockit_160_17_R28.0.0-679
    C:\Oracle\Middleware\oepe_11gR1PS2
    C:\Oracle\Middleware\wlserver_10.3
    C:\Oracle\Middleware\modules
    C:\Oracle\Middleware\coherence_3.5
    C:\Oracle\Middleware\jdk160_18
    and other folders and files.
    Now when i click on \\myshecsccm01\PackageSource\ofm_pfrd_win_11.1.1.3.0_32_disk1_1of1\Disk1\setup it takes me to Oracle 11g fm . On step 2 of 6
    for Oracle Middleware Home :C:\Oracle\Middleware
    and Oracle Home Directory: ORACLE_HOME
    i m giving.
    Here the Middleware folder contains the above folders/sub folders listings.
    and clicking on next I am getting the below errors:
    INST-07010: Validation of Oracle Home location failed. The location specified does not exist.
    Enter a valid existing directory
    INST-07100: The Oracle home provided does not contain Oracle Portal 11.1.1.2.0.
    In order to patch your existing version please provide an Oracle home that contains the product mentioned above. If you choose to continue, only the oracle_common directory and any components that both products have in common will be patched.
    INST-07293: Middleware home location specified does not have the required Oracle homes installed in it. The Oracle homes for the following components is not installed oracle.classicwls.top.
    Provide a different Middleware home location or install the required Oracle Products and try the install again
    So as per your suggestion My middleware folder is not empty.
    what should I do?
    And after doing all these installtions will i be able to get the frmall.jar file which i really required to use it for importing Oracle.forms.properties.ID?
    Edited by: 874822 on Jul 25, 2011 9:40 PM

Maybe you are looking for

  • File Duration Question: Any Way to Get Quick Totals?

    Another curious-if-there's-a-way-to-do-this question: I notice that Media Manager (for which I've now added a custom key command) will tell me the combined media file size for any group of clips I select in the FCP7 Browser (whether an entire Bin's w

  • Error starting Workshop example server

    Hi, I am currently experiencing a problem starting the WL 7.0 example server for the Workshop examples. This actually come with the installation of WL Platform 7.0. I got "Corrupt Transaction @ 254177" at the DOS prompt and in the enclosed wl-domain.

  • In Elements 12 why can't I suddenly not reposition layers without using the layer panel?

    In Elements 12 I have always been able to drag photos from the bin onto a background and easily move them or alter them simply by clicking on those photo/slayers while working on the same background without using the layer panel.  A couple days ago I

  • Depreciation run to be updated with Historical Exchange Rate in NonLdg Ldgr

    Hi All, Our Company code is using parallel currencies 1LC is CAD, 2nd LC is USD & 3rd LC is GBP. (In T.Code: OB22) When we look at the values for local currency 3 (GBP) in ledger 0L, all the entries have been translated from CAD to GBP at the same ra

  • CS 5.5 H.264 Serious Render Bug - bad encoding

    I have Adobe After Effects CS5.5 on Windows 7 SP1. This problem has been reported by dozens of our customers, and happening on many, many videos made by me and my two freelancers. Many of our videos give playback erros on professional presentation so