"a regular basis" to run a report form 11g

I'm migration 6i c/s to 11g web app.

I will have some difficulty in understanding how reports work now:

In 6i, I used to code calls with run_report_object or even run_product built-ins, and the report went straight to the user's screen or printer.

(Now I have seen that you can not send it directly to the printer, but we can live with that).

Now I use the solutions I've read discussions like this:

https://community.Oracle.com/thread/2184172

My work is as follows:

PROCEDURE Pf_Run_Report_Object (p_report_id REPORT_OBJECT) IS

  l_report_server varchar2(100);
  l_rep_out   VARCHAR2(100); 
  l_report_job_id VARCHAR2(100);
  l_report_status varchar2(100);
  l_wait date := sysdate + (5/1440);
  Begin
   tool_env.getvar('REPORTS_SERVER_NAME', l_report_server);
   IF l_report_server IS NULL THEN
    Raise Form_Trigger_Failure;
   END IF;


   Set_report_object_property(p_report_id, REPORT_SERVER, l_report_server);

  Set_Application_Property(CURSOR_STYLE, 'BUSY');
  l_rep_out := RUN_REPORT_OBJECT(p_report_id); 

  l_report_job_id := Substr(l_rep_out, instr(l_rep_out,'_',-1)+1);

  l_report_status := REPORT_OBJECT_STATUS(l_rep_out);

  WHILE sysdate < l_wait AND l_report_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') 
  LOOP
       l_report_status := REPORT_OBJECT_STATUS(l_rep_out);
  END LOOP;


  IF l_report_status = 'FINISHED' THEN
  WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid='||l_report_job_id||'?server='|| l_report_server,'_blank');
  ELSE
  MESSAGE('Report error: '||l_report_status);
  END IF;

  Set_Application_Property(CURSOR_STYLE, 'DEFAULT');

  End Pf_Run_Report_Object;

All hardcoded that names of statutes and the property url... seem like a bug ticking. Also the loop 5 min... Don't like.

It works... but it seems so crappy that I can't believe this is the usual way to simply run a report:

How do you call a report in form 11g?

I would recommend that you start here:

http://www.Oracle.com/technetwork/Developer-Tools/Forms/documentation/integrating-forms11g-and-reports11g-1905204.PDF

Here's what happens:

1. your forms application requests that a report (rdf, rep, etc.) is executed. (Running is not identical to present)

2. once the report is run and the data has been retrieved, the output is stored on the file system of the server in the format that you define (html, pdf, etc.)

3. your Forms application can now retrieve the complete report when desired using the JobID reports.  WEB. SHOW_DOCUMENT is most often used, but other extraction methods are possible.

As to why you coded a timer in the code, I can't speak for it, but you don't need.  Yet once again, refer to the doc above and it will explain how to launch and retrieve a report.

Tags: Oracle Development

Similar Questions

  • Running a report form

    Hi all

    I use this code to run a report of my form, it runs successfully:

    DECLARE 
         V_PARM PARAMLIST ; 
         
         TYPE ADT_REC_TYPE IS RECORD (V_VISIT_ID VARCHAR2(90) ,
         V_ORG_NO VARCHAR2(90)  
         ) ;
         ADT_REC ADT_REC_TYPE ; 
         TYPE ADT_TAB_TYPE IS TABLE OF ADT_REC_TYPE 
         INDEX BY BINARY_INTEGER  ; 
         ADT_TAB ADT_TAB_TYPE ; 
    BEGIN 
    :NUMBERS_BLOCK.VISIT_ID := 'AND V.VISIT_ID IN (-1';
    :NUMBERS_BLOCK.ORG_NO        := 'AND  V.ORGANIZATION_NO IN (-1' ; 
    
          GO_BLOCK('ALL_ADMITTED_PATIENT') ; 
          FIRST_RECORD; 
          LOOP 
          IF :ALL_ADMITTED_PATIENT.CHECK_PAT = 'Y'
                THEN 
            ADT_TAB(:ALL_ADMITTED_PATIENT.NUM).V_VISIT_ID := :ALL_ADMITTED_PATIENT.VISIT_ID     ; 
            ADT_TAB(:ALL_ADMITTED_PATIENT.NUM).V_ORG_NO   := :ALL_ADMITTED_PATIENT.ORGANIZATION_NO ; 
      
    
      
      :NUMBERS_BLOCK.VISIT_ID := :NUMBERS_BLOCK.VISIT_ID||','||:ALL_ADMITTED_PATIENT.VISIT_ID ;
      :NUMBERS_BLOCK.ORG_NO   := :NUMBERS_BLOCK.ORG_NO  ||','||:ALL_ADMITTED_PATIENT.ORGANIZATION_NO ;
      
      
              
     END IF ; 
    
          EXIT WHEN :SYSTEM.LAST_RECORD = 'TRUE' ; 
           NEXT_RECORD ;      
           
          END LOOP ; 
          
     :NUMBERS_BLOCK.VISIT_ID := :NUMBERS_BLOCK.VISIT_ID||')' ;
     :NUMBERS_BLOCK.ORG_NO   := :NUMBERS_BLOCK.ORG_NO  ||')' ;
          
          FOR I IN ADT_TAB.FIRST .. ADT_TAB.LAST LOOP 
              
          V_PARM := GET_PARAMETER_LIST('REPDATA');
      IF NOT ID_NULL(V_PARM) THEN
          DESTROY_PARAMETER_LIST(V_PARM);
      END IF;
      V_PARM := CREATE_PARAMETER_LIST('REPDATA');  
      
      
      Add_Parameter(v_parm,'P_VISIT_ID'          ,TEXT_PARAMETER,    :ALL_ADMITTED_PATIENT.VISIT_ID);
      Add_Parameter(v_parm,'P_LEX_VISIT_ID'          ,TEXT_PARAMETER,    :NUMBERS_BLOCK.VISIT_ID);
      Add_Parameter(v_parm,'P_ORGANIZATION_NO'   ,TEXT_PARAMETER,:ALL_ADMITTED_PATIENT.ORGANIZATION_NO);
      Add_Parameter(v_parm,'P_LEX_ORG_NO'          ,TEXT_PARAMETER,    :NUMBERS_BLOCK.ORG_NO);
      
      --Add_Parameter(v_parm,'P_ORGANIZATION_NO'   ,TEXT_PARAMETER,ADT_TAB(I).V_ORG_NO);
      
      
          END LOOP ; 
          RUN_REPORT('MRPLYLST',TO_NUMBER(:GLOBAL.LANGUAGE_ID),V_PARM ,'OCX_BLOCK.OCX');
         END ; 
    
    
    
    
    
    
    
    
    
    
    
       
       -------------------
    
    
    
    

    : NUMBERS_BLOCK. VISIT_ID has a similar condition (and in v.visit_id (23,24,545).

    : NUMBERS_BLOCK.ORG_NO is a condition as (and v.org_no in (01) for example

    and they are sent to a lexical parameter in the report.

    but when I try to run the Report Builder with params even, it runs empty?

    Why?

    I don't know that I filled the same parameters with values?

    Thank you

    Thank you, it is resolved,

    I ran the report in report designer and open the form.

    I don't know what the problem is if it happens, but I'm sure that was the problem.

    Thank you

  • I've interview tomorrow, still don't know how to run the report forms

    Hi all
    I asked before the performance report forms rel2 10g, but in vain, because I could not configure the report server,
    and nobody told me.

    now I have an interview tomorrow, and of course it will be included in the task I have to do.

    I'm in a bad need for your step by step help

    Thanks in advance

    Hello

    Best Of luck, first of all, go with confidence and come back with good news.

    You can have link to report below
    CALL A REPORT FROM ORACLE FORMS 10G

  • Get url from the browser form 11g?

    Is there any function to get the current url of the browser that is running in applet form 11g?
    Or at least the server part: port?

    Thank you

    In version 11, you can use javascript to retrieve the url of the browser. For example:

    Declare
         JS_in      varchar2(32767);
         rtn     varchar2(1024);
    Begin
         -- JS_in is the javascript funtion you want to call.
         JS_in := 'location.href';
         rtn := WEB.JAVASCRIPT_EVAL_FUNCTION (JS_in);
         -- "rtn" should contain the complete URL as seen in the browser address bar.
         -- Do something with rtn.
    End;
    
  • How to set auditor report run Signon Audit forms

    Hello

    I'm on 12.1.1. I'm sysadmin and you want to activate the listener internal run/view the report forms of verification of access code , without giving them the responsibility of the system administrator.

    How can I go about it?


    concerning
    Dula

    Salvation;

    I think that, Yes, it could be the solution to your problem

    Respect of
    HELIOS

  • How I can run a reports of forms

    Oracle Forms 9i

    Hai All

    How can we run a reports of forms Pls tell the steps or give me some links


    Thanks in advance

    Srikkanth.M

    Oops... Forms 9i, you will probably need to use the run_report_object. I think that run_product was in forms 4 and 6i and out taking in charge after that. It been a long time I used something like that, sorry for the confusion.

    http://www.Oracle.com/technology/products/forms/PDF/10G/frmrepparamform.PDF

    Published by: mcharchuk on March 7, 2010 09:47

  • I need a code to run a report a forms on 10G...

    Hello!! I m 6i to 10G migration and I can not run a report... can someone send me a code example to run a report on a form in 10G?

    Thank you!!

    Kind regards!

    IAM using Javabean in oracle 10 g tun report forms...

    First, create a block with a name control and add a bean with a name
    userid_bean. Click the bean field and change its width and its height
    so that u can not see when you run the form.

    Now use the code when you code to run the report below.

    Declare
    rep_url varchar2 (2000);

    Start

    rep_url: = ' / reports/rwservlet? report = filepath\rep1. RDF' |
    «& desformat=htmlcss&destype=cache&userid=sample/sample@oracle» | '& paramform = yes;

    -Write Log messages to the console of JInitiator forms. The following line must
    -be disabled before running this code in any production environment.

    set_custom_property ('control.userid_bean', 1, 'ADD_USERID',)
    get_application_property (username) | » /'||
    get_application_property (Password). » @'||
    get_application_property (connect_string));

    -writes the cookie

    set_custom_property('control.userid_bean',1,'WRITE_USERID_COOKIE','10g');
    Web.show_document (rep_url, '_blank');

    end;

  • Internet "disconnected" on a regular basis

    I bought my Toshiba Equium A300D Tuesday, which came with Vista Home Premium and since then I had problems with the internet "disconnect" on a regular basis - I say "disconnected" because in reality there is nothing wrong with my connection to all the.

    I have a local network set in place with the A300D, an address book remove but not Toshiba, one and an old desk. The Office has a wired connection to my router and two laptops have wireless connections, but neither the second laptop or fixed, are having problems with the connection, only the A300D.

    My ISP reports no problem, and my router has been for more than a week now without requiring a reboot. On the A300D but I apparently lose connection on a regular basis, with my browser (which happens with Firefox, Opera and Internet Explorer) don't find no connection and the pages won't load do not.

    Finally, if I try and refresh the pages, browsers just crash (and in the case of Firefox, it is often impossible to end the process with Task Manager, which means I'm unable to re - open). The Google Desktop Sidebar is also losing the connection too at the same time, as a number of other applications using internet connections, * but * Vista, when I try to 'diagnose and fix' the problem is said it isn't a problem, and a few other apps, my backup Carbonite and Skype service are the two remaining connected (and experience with my old laptop if there is internet connectivity problems Skype is usually the first thing to disconnect).

    At first, I thought it was a problem with Firefox (my main browser), but as is the case with others too, it doesn't seem to be a simple matter of Firefox. Malware scan (Windows Defender) and antivirus (Eset NOD32) come to clear back, and it makes no difference if my firewall (ZoneAlarm) is in place or not, and I tried it with just the WIndows firewall as well.

    Everything is going well for a while, but then suddenly I apparently lose the connection and once again, the only way to get it back is to restart, and once again things will be fine for a while until the browsers lose the connection (if as I said, Skype and Carbonite are still connected). At present on average I'll have to reboot every half hour or so, which is very frustrating and I'm getting little done for this reason.

    I tried to look on the Vista from MS community support forum and a number of people seem to have problems with Vista - I was unable to post my problem here but in regarding the site for some reason MS refuses to accept my Windows Live IDs, and a google also found similar problems that appear to be related with Vista and SP1.

    A number of discussions mentioned this could be linked with the TCP/IPv6 protocol, and that to disable TCP/IPv6 as a temporary workaround might work, and when I checked my connectivity TCP/IPv6 connection parameters has been showing as "limited." Disable TCP/IPv6 has however made no difference - I still have to restart every half an hour or two to get things running.

    I am at the end of my home here - at - it ideas?

    Try the following:

    (1) update the driver Wireless LAN from Toshiba Europe site

    (2) update the BIOS from the Web of Toshiba Europe site

    (3) update the Firmware on your Wifi router. Some routers have some compatibility problems with some wifi chipsets.

    (4) go to the Device Manager-> Wifi-> properties and disable power management, increase the output power, disable 802. 11A and others that you do not use.

  • Keychain is destroyed on a regular basis

    Hey everybody,

    a few months my Mac destroyed her trousseau on a regular basis, without any reference to what actually the cause of the problem.

    Which does not mean destroy? Well, my keychain seems to become partially unalterable partially destroyed entirely. Here are the symptoms:

    1. Some applications (but not all) using credentials in Keyring stop to launch. For example, Microsoft Office or Hipchat.
    2. I can't add a new credential for the keychain. If I run a new application that requires credentials, the application stops working (hang) indefinitely after that I submitted the user name and password.
    3. I can't remove records from the keychain. If I have access to app access to the OS x Keychain, I can see all the credentials. If I select one randomly and hit, right-click / Delete, Keychain Access hangs and hangs indefinitely.

    I can only fix this problem by deleting the entire folder keychain and re - enter the credentials. However, after some time (a few days or weeks) keychains are shattered once again.

    Is it possible to know, what app it breaks exactly? This is getting frustrating.

    I am running OSX 10.11.5 but the problem persists since 10.11.4.

    Concerning

    Meister

    This procedure is a diagnostic test. It makes no changes to your data.

    Please triple - click anywhere in the line below on this page to select:

    ls -@BOaen {/,}L*/Keyc* | pbcopy

    Copy the selected text in the Clipboard by pressing Control-C key combination.

    Launch the Terminal application integrated in one of the following ways:

    ☞ Enter the first letters of his name in a Spotlight search. Select from the results (it should be at the top).

    ☞ In the Finder, select go utilities ▹ of menu bar or press the combination of keys shift-command-U. The application is in the folder that opens.

    ☞ Open LaunchPad and start typing the name.

    Paste in the Terminal window by pressing the command-V key combination. I tested these instructions only with the Safari browser. If you use another browser, you may need to press the return key after pasting.

    Wait for a new line ending with a dollar sign ($) below what you entered.

    The output of the command will be automatically copied to the Clipboard. If the command produces no output, the Clipboard is empty. Paste into a reply to this message.

    The Terminal window does not display the output. Please do not copy from there.

    If any personal information appear in the output, anonymize before posting, but do not remove the context.

  • switching between the 2 languages on a regular basis.

    I need a detailed description on how to put a second language as my other default and how to be able to switch between them on a regular basis. [English-Korean, try to set my second language Korean]

    Hello

    The use of the Korean language pack requires you to be running Ultimate or Enterprise editions. If you are, check out this link for instructions on obtaining and installing the language pack:http://windows.microsoft.com/en-US/windows-vista/How-do-I-get-additional-language-files

    If you are not running one of the versions above, you will not be able to get this language pack without upgrading.

    Good luck, Rick Rogers, aka "Crazy" - Microsoft MVP http://mvp.support.microsoft.com Windows help - www.rickrogers.org

  • How to identify the server name of the report and start reporting on GR 11, 2 server to call reports forms

    Developer Environment:

    Windows 7 64 BIT

    Oracle Fusion Middleware 11.1.2.2

    WLS 10.3.6

    All reports run correctly from the report generator.

    I tried the following report server name, and do not know, I use a wrong name of report server, if the server not property began or if this is a problem in configuration of the environment.

    Name of report server:

    Rep_computer_name: Rep_xxxT5600.

    (1) as a result URL will return the error:

    http://localhost:7001 / reports/rwservlet/showenv? Server = Rep_xxxT5600

    Returns the following error message:

    REP-51002: link to rep_xxxt5600 for report server has failed.

    (2) from the report server in a DOS window

    C:\Oracle\Middleware\asinst_1\config > rwserver Server = Rep_xxxt5600

    Returns the following error:

    REP - 50125:java.lang.NullPointerExcpetion

    Any help or advice would be very happy.

    I apologize in advance - I posted this in the forum reports, but don't get all the answers.  This information is needed for call forms reports, so I'm confident that someone from the Forum forms can help guide me.

    Thanks yo in advance.

    Mika

    I was able to solve the problem by the following text:

    1. Implement the steps found in how you create and start up A Standalone Server reports in 11g R1 & R2 (Doc ID 961174.1)
    2. To solve the REP-52262: output diagnostic is disabled.

    Change $DOMAIN_HOME/config/fmwconfig/servers/WLS_REPORTS/applications/reports_11.1.2/configuration/rwservlet.properties


    #FROM

    Yes

    #TO

    Yes

    L2

  • FRM-41214: cannot run the report during the call to the reports

    Hi all,

    I work with Forms 10g on Windows 7 (local working with OC4j), I have a form with a button calling a report, it's the code for the button:

    declare

    Repid REPORT_OBJECT;

    v_rep VARCHAR2 (100);

    rep_status VARCHAR2 (20);

    BEGIN

    Rep: = find_report_object ('EMPS_BY_DEPTS');

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_EXECUTION_MODE, batch);

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_COMM_MODE, SYNCHRONOUS);

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_DESFORMAT, 'pdf');

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_DESTYPE, cache);

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_SERVER, 'repetat');

    SET_REPORT_OBJECT_PROPERTY (REPID, REPORT_OTHER, 'paramform = no');

    v_rep: = RUN_REPORT_OBJECT (repid);

    rep_status: = REPORT_OBJECT_STATUS (v_rep); 

    While rep_status in ('MARKET', 'OPENING_REPORT', 'PENDING')

    LOOP

    rep_status: = report_object_status (v_rep);

    END LOOP;

    IF rep_status = "FINISHED" THEN

    WEB. SHOW_DOCUMENT ('/ reports/rwservlet/getjobid ': substr (v_rep, InStr(v_rep,'_',-1) + 1) |'?) "|' server = repetat","_blank"); "

    ON THE OTHER

    message ("error when running report");

    END IF;

    END;


    I create a report object in the browser of the object with the name ""EMPS_BY_DEPTS "with properties " filename = emps_by_depts.rdf.

    I also have a server with the command server = repetat wserver report

    When I press the button to call the report I get this famous 41214 FRM: cannot run the report.

    I tried running the report with rwservlet: http://acer-pc:8889/reports/rwservlet?report=emps_by_depts.rdf & userid=hr/hr@orcl & desformat = pdf & destype = hide & expiry =...

    and it works very well.

    Any idea and thank you


    I do in this case,

    1 - i run report with parameterform = YES (Note: your report is not a form of parameter), so I can see explanation real error report.

    2 - showjobs of report server options

    We use the 11g r2, for 11g r2 reports this link http://: 9002/reports/rwservlet/showjobs? = RptSvr__asinst_1 server , so I can't see error detail.

    10g should be that this option absolutely. but I don't know.

    These can help you.

    Best regards.

  • Cannot run the report

    DB and dev 10grel2, xp sp2
    Hi all
    IAM trying to run the report in the form with a button generator
    I used this command to start my server: Server rwserver = "MyServer" auto = Yes and it works well.

    I created a report object (report5) on the form that contains the button to run the report.
    When I click on the browser reports node to create the report object, I assigned 'myrep' as the file name of the report, not based on a block of data and then created the report of the scott schema dnames.

    then closed the Report Builder without saving it in another format.

    then I wrote this code in the when button pressed the shutter:
     
    
    declare 
         rp report_object ;
         v varchar2(90) ; 
    begin 
         rp := find_report_object('report5') ; 
         v := run_report_object(rp) ; 
    end ; 
    -nothing wrong with the code, then I ran the form, you press the button to find out:
    FRM-41214 cannot run the report.
    When I looked at the online help, it tells me nothing but
    Cause: The report server could not run the specified report.
    Action: Check the report server and make sure it is running.
    and I checked and it runs and upward.
    What should I do?
    Thanks in advance

    Check my code and try this code in you touch. I write it given your situation and information provided. You can paste directly into your trigger button.

    DECLARE
    
         v_repid REPORT_OBJECT;
         v_rep VARCHAR2(100);
         v_rep_status VARCHAR2(100);
         v_param VARCHAR2(200) := NULL;
         v_valor VARCHAR2(200);
         v_url VARCHAR2(2000);
         v_repserver varchar2(20) := 'myserver'; -- YOUR REPORT SERVER NAME
    
         v_report varchar2(100) := 'E:\myrep.jsp'; -- YOUR REPORT PATH AND NAME
         /* IF .JSP IS NOT WORK CONVERT IT TO .REP AND TRY */
         v_PARAMETRO varchar2(100) := '';
    
    BEGIN
    
         v_repid := FIND_REPORT_OBJECT('report5'); -- report is an element from object navigator report
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_FILENAME, v_report);
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_EXECUTION_MODE, BATCH);
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_COMM_MODE, SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_DESTYPE, cache);
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_DESFORMAT, 'pdf' );
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_DESNAME, v_report);
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_SERVER, v_repserver);
         SET_REPORT_OBJECT_PROPERTY(v_repid, REPORT_OTHER, 'paramform=no '||v_PARAMETRO);
         v_rep := RUN_REPORT_OBJECT(v_repid);
         v_rep_status := REPORT_OBJECT_STATUS(v_rep);
         WHILE v_rep_status IN ('RUNNING','OPENING_REPORT','ENQUEUED') LOOP
         v_rep_status := REPORT_OBJECT_STATUS(v_rep);
         END LOOP;
         IF v_rep_status = 'FINISHED' THEN
         message(v_rep);
         message(v_rep);
         WEB.SHOW_DOCUMENT(v_url||'/reports/rwservlet/getjobid'||
         SUBSTR(v_rep, INSTR(v_rep,'_', -1)+1)||'?'||'server='||v_repserver, '_blank');
         END IF;
    
    END;
    

    So let me know what you get...

    Ed: I've updated my blog link. You can check the first time, if necessary.

    Published by: HamidHelal on January 21, 2013 12:43 AM

  • need help with correction QVC to duplication on regular basis

    Hello

    I use Oracle 10.2.0.4 on Win 2008 R2. We have Archive mode and no catalog rman is used. I have a requirement where I have to reproduce prod weaned on a regular basis to the development server.
    I created the batch a few files so that the entire process automatically. Stored all the scripts in Directory of c:\script\clone\. +.

    I took the backup copy of the password and spfile Server prod and copied on the development at the same server.

    Here are the scripts that I have performed in the order:

    * 1_clone.bat*

    Set ORACLE_SID = orcl
    sqlplus / as sysdba @c:\script\clone\2_test.bat


    * 2_test.bat*

    immediate stop
    startup nomount
    rman target sys/oracle@live nocatalog auxiliary host / @c:\script\clone\3_rman.rcv


    * 3_rman. RRS *.
    Run {}
    allot of drive type d1 track auxiliary;
    double-target database ORCL NOFILENAMECHECK;
    }
    output


    When the duplication process in about in the end, I get error below:

    content of script memory:
    {
    clone of judgment;
    startup nomount clone;
    }
    execution of Script memory
    RMAN-03002: failure of dual DB at 31/07/2012 08:02:21
    RMAN-03015: an error has occurred in the memory stored script script
    RMAN-06136: the auxiliary database Oracle error: ORA-01013: user has requested the cancellation of the current operation

    Complete recovery manager

    SQL >


    When I press exit, this window closes and I can run the alter database open resetlogs; -command with a new sql command prompt. I check online and some suggest that there could be a window with system user. Please suggest changes in the script.

    Best regards

    Hello;

    Have another session with the user of the system will cause rman raise this error. For example another session is used to start the database in nomount is always active mode.

    During the cloning process the rman session must be exclusively connected to the instance auxiliary (no other sessions are allowed).

    Double post

    request for assistance with rman cloning script

    Best regards

    mseberg

    Published by: mseberg on July 31, 2012 05:02

  • OFM 11 g middle tier do not install (discoverer reports forms Portal)

    Hello
    I install BCI on a single box [5.2 (Carthage) 32 - bit Enterprise Linux Enterprise Linux Server version], by choosing to install reports, forms, discoverer, portal to a new domain. But the installer a failure in step 5, which is exactly from managed server: WLS_PORTAL.

    What I find completely weird, is that there is no servers created in addition to the administrator of the server under servers, so why the installation program reports that managed servers where created while they were not. I don't have any WLS_PORTAL, WLS_REPORTS, WLS_FORMS, or WLS_DISCO.

    Did anyone had this problem.

    Installation program:
    Database 11g (11.1.0.7) as a deposit option
    BCI already installed IDM11g
    SSO 10.1.4.3 already installed
    Everuthing on the same box.

    What was the only mistake I found on the installActions log:
    oracle.as.provisioning.exception.ASProvisioningException
    at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:876)
    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:126)
    at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:335)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:87)
    at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:104)
    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:63)
    at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:158)
    at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
    at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:82)
    at java.lang.Thread.run(Thread.java:619)


    Any help much appreciated.
    Ivan+.

    Ok.

    I finally found something and correction of the error.

    Solution:
    Somewhere in the vast installAction newspaper, there was a message not being able to communicate with the Manager of knots, it was weird that it was not declared as an error in the install window, but what you can do.

    So I checked the logs carefully and I found that he was trying to communicate with the node server name example.domain , the port manager * 5556 *, but the Manager node being launched by * 127.0.0.1 * and port * 5556 *, name server example.domain was not be resolved so that * 127.0.0.1 * but the real ip * 192.xxxx*.

    Finally, I started the Node Manager with this command: startNodeManager.sh example.domain 5556
    Then beging the installation and he went without errors.

    Hope this helps.

Maybe you are looking for