FRM-41217 Unable to get report job status

Hi everyone
Um running a forms9i (9.2.0.4.0) application on XP which connects to an oracle9i database. I recently moved the database to a new server but since then all reports do not run as I am getting the said error. No changes have been made to the location or content of the application. Could someone explain how this would be resolved?

Nathan,
does the Reports Server queuemanager shows any activity (e.g. Reports that fail) ? Can Reports connect to the database (e.g. can you run the Reports from a URL using teh http://server:port/reports/rwservlet?server=...&report=...
request URL ?
Frank

Similar Messages

  • FRM-41214- unable to run reports

    Env:
    Solaris running 6i forms and reports server patched to patch 9.
    when calling report from form using run_report_object, I get
    FRM-41214- unable to run report
    FRM-41217- Unable to get report job status
    FRM-41213- Unable to connect to report server RepsrvSMARTS
    This only occurs for one of the reports. I am able to run a different report
    with no problem.
    TIA!

    Jim,
    My guess is that the problem identified in bug 1731733 is the root cause. It manifests itself in various ways (see related bugs). The base bug is 1953704 and is fixed in Net80, and is available in one-off patches for various platforms, including Solaris.
    regards,
    Stewart

  • FRM-41214: Unable ro run report while calling a report from a form in 9iDS

    Am in the process of migrating from Developer 6i client/server to Developer 9iDS on Windows 2000.
    I have read through the various postings on this issue & have made changes accordingly. I also referred to the white paper on the Forms/Reports integration.
    As I am trying to do a prototype, am compiling my forms/reports on my local machine & not on the apps. server.
    I installed a report server on my local machine as,
    rwserver -install 9irep
    I have defined this as a NT service and it is up & running & so is my OC4J instance.
    I have defined a reports object in my Form Builder & set Report Server=9irep,
    Destype=Cache,
    Execution mode=runtime
    Communication_mode=synchronous.
    I also removed the /security tag from the <report server>.conf file as suggested in the white paper. Also set the single sign-on to NO for the reports service.
    I have replaced my run_product with the run_report_object built-in as follows.
    Declare
    report_id      REPORT_OBJECT;
    report_status VARCHAR2(255);
    rep_job_id      VARCHAR2(255);
    Begin
    report_id := FIND_REPORT_OBJECT('KS'); --Created in form under node "Reports"
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_FILENAME,'C:\Kalpana\9i_Prototype\ISSMDLCUST.rdf');
    rep_job_id := RUN_REPORT_OBJECT(report_id);
    report_status := REPORT_OBJECT_STATUS(rep_job_id);
    WHILE report_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    report_status := REPORT_OBJECT_STATUS(rep_job_id);
    END LOOP;
    message(report_status); pause;
    IF report_status='FINISHED' THEN
    Web.Show_Document('http://houwdisndgd01:8888/reports/server/getjobid='
    ||rep_job_id||'?server=ks');
    END IF;
    End;
    I get an error message "FRM 41214: Unable to run report" right after the call to run_report_object.
    Can someone please tell me where am going wrong with my run_report_object built-in? (I also need help writing my web.show document to point it to my local machine/folders).
    Thanks
    Kalpana

    How I have implemented the same and works
    Local OC4J is running.
    I established a reports server "repserver90" as a service.
    I created a report named "C:\TMP\TMP\test_report.rdf"
    I created a form with a Reports object with properties:
    Name: "EMP"
    Filename: "C:\TMP\TMP\test_report.rdf"
    Execution mode "Batch"
    Communication mode "Sychronous"
    Report Destination Type "Cache"
    Report Destination Format "HTML"
    Report Server "repserver90"
    I call the report with the procedure:
    PROCEDURE TEST_REPORT IS
    repid REPORT_OBJECT;
    v_rep VARCHAR2(100);
    rep_status VARCHAR2(20);
    BEGIN
    repid := find_report_object('EMP');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'html');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'repserver90');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramform=no pdeptno='||:dept.deptno);
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    IF rep_status = 'FINISHED' THEN
    /*Display report in the browser*/
    WEB.SHOW_DOCUMENT('http://localhost:8888/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=repserver90','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;
    Minas

  • FRM-41214: Unable to run Report geting as error

    I am converting 6i reports to 11g for that i am compiling 6i report in 10g reports and copy in 11g server
    in that report is calling from form i have writen query
    like
    DECLARE
    paramlistname VARCHAR2(30) := 'PLIST1';
    plid PARAMLIST;
    cnt number;
    report_id report_object;
    BEGIN
    plid := GET_PARAMETER_LIST(paramlistname);
    IF NOT ID_NULL(plid) THEN
    DESTROY_PARAMETER_LIST(paramlistname);
    END IF;
    plid := CREATE_PARAMETER_LIST(paramlistname);
    ADD_PARAMETER(plid, 'paramform', TEXT_PARAMETER, 'NO');
    ADD_PARAMETER(plid, 'p_division_code' , TEXT_PARAMETER, :control_007.division_code);
    ADD_PARAMETER(plid, 'p_depot_code' , TEXT_PARAMETER, :control_007.depot_code);
    ADD_PARAMETER(plid, 'P_VALIDITY_DATE' , TEXT_PARAMETER, to_char(:control_007.valid_date,'DD/MM/YYYY'));
    ADD_PARAMETER(plid, 'MAXIMIZE', TEXT_PARAMETER, 'YES');
    report_id := find_report_object('Report_NTP_Pending_QtyP');
              web_reportn(report_id,plid);
    DESTROY_PARAMETER_LIST(plid);
    go_block('Control_007');
    end;
    while runging a report from form i am getting error FRM-41214 Unable to run Report
    So Please Help Me how to solve this problem in 11g

    web_reportn(report_id,plid);This is where you actually call the report, so the error is in that procedure. What is the code of this procedure?
    Furthermore, I don't see any reference to system parameters, like destype, desname, report server name etc. Are they set in web_reportn?

  • FRM-41214 unable to run report

    Hi,
    i'm trying in this days to migrate my software from 6i to 9i....
    Particularly i had some problems when i try to launch a report from my form...
    The form had migrated from Oracle 6i and it seems that it hasn't any type of problem but when i try to call a report from the web i obtain the error FRM-41214 (unable to run report)
    but this report is correctly positioned in the right path and when i use a different report of a different project (compiled for the 9i) i note that the error occurs when i use one of my group obtained from my queries like source for a new repeating frame.....
    Exactly until when i use one of the old groups of the old report it's all right but when i try to use a new group referred to a my new query i obtain the precedent error
    (FRM-41214, unable to run report)
    But i don't have any type of error when i compile...
    Can anyone help me? Some one can tell me what can i do or some one can indicate me same document where i can read all the step to migrate a report??
    Thanks a lot in advance

    Problem resolved. Copy of document can be found
    in METALINK, NOTE: 1069651.6. This will resolved the problem.
    Thanks.

  • FRM-41214 unable to run report from forms with parameters

    Hi all,
    I am unable to run a report from forms if I pass parameters. Report is running fine in reports builder and in url if I access the report straightly.
    I used set_report_object_property to pass the parameters.
    Any clues to solve this problem?
    Priya

    Hi Jeneesh,
    Code is below:
    myreport1 :=find_report_object('MYREP');
    reportdata := Get_Parameter_List('reportsdata');
    IF NOT Id_Null(reportdata) THEN
    Destroy_Parameter_List( reportdata );
    END IF;
    reportdata := Create_Parameter_List('reportsdata');
    Add_Parameter(reportdata, 'account_number', TEXT_PARAMETER, :parameter.account_number);
         /* Setting the properties into Report Object */
         SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_COMM_MODE, SYNCHRONOUS);
         SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_DESTYPE, CACHE);
         SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_DESFORMAT, 'htmlcss');
         SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_SERVER,vc_reportserver);
                   SET_REPORT_OBJECT_PROPERTY(myreport1, REPORT_FILENAME, 'C:\priya\forms\EmcySummary.jsp');
              SET_REPORT_OBJECT_PROPERTY(myreport1,REPORT_OTHER,'account_number='|| :parameter.account_number);
         /* Value of v_rep identifies the report that is currently running either locally or on a remote report server */
         vrep := RUN_REPORT_OBJECT(myreport1,reportdata);
    /* Checking for Report Server is started or not, if not throw an exception else proceed */
         if vrep = vrep||'_0'then
         raise form_trigger_failure;
    end if;
         vjob_id := substr(vrep,length(vc_reportserver)+2,length(vrep));
         vrep_status := REPORT_OBJECT_STATUS(vrep);
         /* Checking the status of the report */
         WHILE vrep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')
    LOOP
    vrep_status := report_object_status(vrep);
    END LOOP;
    /* When the report status is successful then report is generated in Web */
         IF vrep_status = 'FINISHED' THEN
         --     COPY_REPORT_OBJECT_OUTPUT(vrep,v_tempstorage);
              WEB.SHOW_DOCUMENT('/reports/rwservlet/getjobid'||vjob_id||'?server='||vc_reportserver, '_blank');
         END IF;
    ---Any clues?

  • Unable to Get Report in Excel format in EBS 12.1.3 Database 11.1.0.7.0

    Steps Followed
    1. Prepared RDF report and the same linked in EBS runs successfully.
    2. Changed output format to XML and style as A4 and style required selected
    3. Prepared RTF file in Word
    4. Created Data Definitions in XML Publisher Administrator
    5. Created Template in XML Publisher Administrator
    6. Uploaded RTF file Thru template in XML Publisher Administrator
    When executing the request excel format is coming but no data was fetched on only header and field name.
    As an example attaching excel output file, RTF template and Reports RDF file.
    Please check and support.
    Thanks
    SKB

    What happens is the output format is PDF? Do you get any output?
    Also please check the RDF's SQL query. It might not be fetching any rows.
    Cheers,
    ND
    Use the "helpful" or "correct" buttons to award points to replies / Mark the thread as answered, if your question is answered.

  • Unable to get Report window

    Im a new user of ARD 2.2 and I try to get 2 compuerts report but the report window's has not allowed to select System Overview, does any body know what's happening...?

    Im a new user of ARD 2.2 and I try to get 2 compuerts report but the report window's has not allowed to select System Overview, does any body know what's happening...?

  • Table name containing report job status

    Can anyone tell me what the name of the table is that contains the information that is viewable via the Enterprise Manager concerning the current/failed/finished jobs on the report server. Thanks.

    Hi Rohit,
    Thanks for your reply. But from TBTCO, i can't find program/report name and variant. Just the list of background job i can see.
    Regards,
    Amit

  • HIDE WINDOW  : Oracle Reports Job Status - Successfully run

    Dear All ,
    I am facing small problem in oracle forms. When we call oracle report
    From oracle forms 10g one status window automatically opened with
    Status of successful of reports
    I want to hide that status window when we call oracle reports
    From oracle forms 10g
    Plz help ....how to do this
    Message was edited by:

    You can use the XML distribution file to generate your report and send to:
    1. file,
    2. ftp,
    3. printer,
    4. mail
    This are the most common example (one by case):
    <destinations>
    <!-- FILE -->
    <file id="imcd4" name="C:\pdf_files\REPORTNAME.pdf" format="pdf">
    <include src="report"/>
    </file>
    <!-- FTP -->
    <destype id="imcd1" name="ftp" format="pdf">
    <property name="desname" value="ftp://user:password@path/REPORTNAME.pdf"/>
    <include src="report"/>
    </destype>
    <!-- PRINTER -->
    <printer id="DEST44" name="myprinter">
    <include src="report"/>
    </printer>
    <!-- MAIL -->
    <mail id="imcd3" to="[email protected]" from="[email protected]" subject="REPORT">
    <body srcType="text">
    Free text
    </body>
    <attach format="pdf" name="REPORTNAME.pdf" srcType="report">
    <include src="report"/>
    </attach>
    </mail>
    </destinations>
    XML file has some standards for the constructions but you can do it, using notepad.
    The instruction to generate your report using xml is from forms:
    report_id := find_report_object('REPORT_OBJ');
    set_report_object_property(report_id,report_filename, v_rep_name);
    set_report_object_property(report_id,report_server, v_server_name);
    set_report_object_property(report_id,report_other,'P_DATE_FROM='||TO_CHAR(:CONTROL.W_DATE_FROM,'DD-MON-YYYYHH24MI')||' P_DATE_TO='||TO_CHAR(:CONTROL.W_DATE_TO,'DD-MON-YYYYHH24MI')||' distribute=YES destination='||v_applconf||'/FOLDER/XMLDISTFILE.xml');
    report_job_id := run_report_object(report_id);
    See that at the end of the line, it exist distribute=YES and destination=path where the xml file must resides. Those parameters must be in the line to execute the reports to be able to use the xml distribution file.
    If you run your report using url you may need some thing like this:
    http://host:port/reports/rwservlet?report=REPORTNAME&distribute=yes&destination=/PATHWHEREXMLIS/REPORTNAME.xml&userid=user/pass@db

  • FRM-41217

    When running in Developer 6i, the code below works fine. Now we are upgrading to IDS Release 2, the code below is having an errorr: FRM-41217 Unable to get Report Job Status. Forms are runnning on web.
    Code:
    Declare
    repid REPORT_OBJECT;
    v_rep VARCHAR2(20);
    rep_status varchar2(30);
    tmp varchar2(2000);
    v_parm1 Varchar2(1000);
    v_parm2 Varchar2(1000);
    BEGIN
    v_parm1 := 'P_WHERE_CLS='''||nvl(:PARAMETER.p_where,'X')||'''';
    v_parm2 := 'P_SHOW_DOC='''||nvl(:REPORT.show_doc,'X')||'''';     
    repid := find_report_object('REPORT1');
    Set_report_object_property(repid,REPORT_OTHER,'PARAMFORM=NO');
    Set_report_object_property(repid,REPORT_OTHER,v_parm2||' '||v_parm1);
    SET_REPORT_OBJECT_PROPERTY(repid, REPORT_SERVER, 'REPORTSRVR');
    v_rep := RUN_REPORT_OBJECT(repid);
    rep_status := REPORT_OBJECT_STATUS(v_rep);
    WHILE rep_status in ('RUNNING','OPENING_REPORT','ENQUEUED')LOOP
    rep_status := report_object_status(v_rep);
    END LOOP;
    if rep_status in ( null, 'FINISHED', '' ) then
         MESSAGE('Report Completed ');
    else
    MESSAGE('Error when running report.');
    Raise FORM_TRIGGER_FAILURE;
    end if;
    *********************************************** This part of code is the only different
    /* For IDS 9i Release 2 */
    tmp := '/reports/rwservlet/getjobid'||substr(v_rep,instr(v_rep,'_',-1)+1)||
    '?server='||:dummy.REP_SERVER||'&authid=orcladmin/workflow1';
    /* For Developer 6i */
    tmp := '/dev60cgi/rwcgi60.exe/getjobid='||substr(v_rep,instr(v_rep,'_'))||'?
    server='||:global.report_Server;
    Web.show_document(tmp, '_blank');
    exception
    when others then
         Message(sqlerrm);
    END;

    Most administrators turn the ability to check the status off because of security concerns. I know I do.
    We make Form Developers call a URL rather than using the built in to run a report and loop to check the status.

  • CUPS 8.5.2 and CUCPC 8.5.1.18771, unable to get the status of hard phone off / on hook

    Hi
    we have CUCM 8.5.1 , CUPS 8.5.2 and CUCPC  8.5.1.18771 , we are able to login to CUPC but we are unable to get the hardphone status on the  like , on phone.

    There is actually a whole section of the Cisco Unified Presence Deployment Guide dedicated to this topic. You need to create a SIP trunk with special permissions between CUCM and CUP. Have you read through this section and confirmed each part is correctly configured?
    If you have, do you see the PUBLISH events in the CCM SDI traces being sent to CUP? Does the CUP server receive this in the SIP Proxy log? If so, what does it say about it? Note that you would need to turn up trace levels on both products to see this level of detail.

  • Unable to call report from forms-oracle9iDS.

    hi..,
    i created a report in reports 9i and calling the same
    from a form created in 9i,i am calling from a push button having following code in it..,
    Declare
    report_id Report_Object;
    ReportServerJob VARCHAR2(100);
    BEGIN
    report_id:= find_report_object('MyReport1');
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(report_id,REPORT_SERVER,'repserver');
    ReportServerJob:=run_report_object(report_id);
    end;
    while clicking this button i am getting the following messsage "frm-41214:unable to run report".
    steps followed
    1.Created a report by name myreport1.rdf
    2.attached the myreport1.rdf in the reports node of the forms browser.
    3.Created a reports server by name "repserver"using
    rwserver repserver -install autostart=yes
    4.report_path is checked for the path where my report is residing.
    5.added a string value in regedit tns_admin='oracle_home\network\admin'
    (**)6.in TNSNAMES.ORA I expect the error is here..,
    how do i refer this repserver in TNSNAMES.ORA..,????
    database server is in another node..,and report server is in my machine itself..,
    please help me urgent..,i am trying hard for this for a long time...??
    Regards,
    Akula.
    protechsoft systems Pvt.Ltd.
    Chennai,India.

    Akula,
    the Reports Server name doesn't need to be mentioned in teh TNSNAMES file anymore. This was required in Reports6i and before. Since Reports9i the architecture has changed and a Report Server can be accessed by its name in teh network. The problem that is reported can be due to uncompiled PLSQL in teh Reports rdf file. If you check the Reports queuemanager (on Windows) or using the Servlet command then you see the detailed error message. If you don't see any error message in teh queuemanager then the Reports module file wasn't found. Make sure that the Reports9i Server has access to this. The Reports9i Server Reports_Path is not set in the registry (as far as I know) but in one of its configuration files.
    As a quick test - look for the Reports sample files and add your file to the same directory.
    Frank

  • Report Job was cancelled upon user request???

    Hi,
    My reports take more than 10 minutes to complete, most times I get
    "Report Job was cancelled upon user request".
    error, how to fix this problem? Is there any time limit inside the report I can set.
    Thanks

    hi ,
    There is no limit on the report run time. The most probable reason why you are getting the 'Report cancelled upon user request' message is the users might have hit the "cancel Report" button which is displayed when it is running in 'SYNCHRONOUS MODE'. do not hit that button as it will terminate the report. to increase the speed of returning the results by the report, try improving the sql that you use in the report, or if you have DBA rights try adding in INDEXES on the columns of the tables used by the report.
    Hope this helps
    Manoj

  • LT Replication server job status

    Hello,
    In our HANA system, under transaction LTRC, we can check status job that "Master Job Status : Running" under tab "Administration data". We have setup E-mail alert using Transaction LTRC --> "Expert function" tab --> status notification settings. so that after every 24 hours we get "Master job status" alert mail. but we want to setup a E-mail alert when Master job stops running at any given time. Can you tell us how can setup that alert, can we configure this using CCMS or through some other alert mechanism?
    Thanks,
    Urvi

    Hello,
    Please let me know if there a some way also in solution manager?
    Thanks,
    Urvi

Maybe you are looking for

  • Printer spool issue with HP LaserJet 1018

    I seem to be having a recurring problem with the HP LaserJet 1018 that I am hoping someone has also had and can help me resolve.  When I go to print I get a message that I need to set up a printer (it does not recognize the printer is there).  When I

  • Excel 2013 will not open file using double click

    I have a problem with Excel 2013  running on Windows 7 Pro (64). When double clicking an Excel file from Windows Explorer  Excel launches but opens a blank worksheet and shows me an error message (german: sinngemäß: "die Weitergabe eines anderen Prog

  • Help JDeveloper cannot find package

    Hi, I am using JDeveloper 9.0.3.4. In the project settings -->Configurations -->Development --> Libraries, I add JSP Runtime, J2EE, Servlet Runtime. But When I tried to rebuild my project, I got errors like: (1) package javax.servlet.jsp does not exi

  • Pricing in Service Management

    Dear All How do we configure pricing in service management for service product, for sales product and spare parts. Please provide configuration steps Thanks DM

  • Linked pages wont open

    Firefox was working normally until an automatic upgrade today. Now when I click on a link that would normally open a new window, it does not happen. Using windows XP up to date. I have checked and reset firefox as the default but still plays up.