EBS Applications User unable to run Report in BI Publisher 11g

We have recently upgraded the BI Publisher (xmlpublisher) from 10g to 11g. We could login using the fnd_user and could see all our reports in the newly upgraded BI Publisher.
But when a user runs a report with previously assigned roles, the report throws error " cannot connect to the database" . When login with "Administrator" role , the user can run the same report without any issues.
Anybody came across such error ?
Any help would be appreciated.
Sundar K

Thanks for you reply,
Our scenario is this report is basically a dissconnected mode report... we are developing these reports for mobile clients.
We dint face this kind of issue while developing other reports.
So please let us know if you have any idea on why we are facing this issue.
Regards,
Maneesh

Similar Messages

  • Unable to run report in DS 10g Release 2

    Hi,
    I have no any application server. I am running my application by using the OC4J of Oracle DS 10g Release 2. But I am unable to run report. What I will do? Please.................
    Mahfuz.
    Edited by: user10239690 on Sep 9, 2008 11:23 PM

    wrong thread
    Tony
    Edited by: Tony Garabedian on Sep 10, 2008 10:21 AM

  • 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 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 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

  • Unable to run reports from the unix command line

    hi
    all of a sudden i am unable to run reports ( on App server 10g) either from the unix scripts or from the unix command line. But i can run them from the forms.
    Any one have any idead about this.
    Thank you

    thanks all for replying
    i have set the env variables for the session and it worked. Looks like i have to set the oracle_home and ld_library_path every time ( opening a new putty session) i call sqlldr.
    But in a whole i am trying to run sql loader from the forms. Right now we have Oracle app server 10g which forms 10g version. As oracle app server 10g didnt come with sqlldr, we are copied the sqlldr of database on to app server with different home. after this we can run sqlldr ( on app server ) from unix scripts but not from Forms. Then we opened a qurey with oracle about app server 10g not commig with sqlldr and its remedy . But they said that they dont have specific remedy for that and suggested the same what we did.
    So we came up with java package which does the same funtion as host command and trying to run sqlldr which is on the database( ie replacing the host command in the forms with the database funtion). By using that funtion i am able to run the sqlldr from sql plus but not from forms. I couldnt easily debug it as i wont through any error messages.
    Any one have any idea of this ...
    Thank you

  • EBS application user

    Hi,
    What is the limit of to create EBS application users?
    Regards,
    Quadri

    Hi Quadri;
    If user numbers are increasing day by day what do you say it will impact on performence I am telling in term of "EMPLOYEE SELF SERVICES" are implenmented by HR team so because of this i created EBS user for all of employess and you know total number of employees are more than 2000.Suggest me.You can have 2000 ppl on ebs. The question is how many user will use EBS same time? If your answer is again 2000 then its related wiht your servers-installation model-balancing EBS etc.. I strongly suggest contact wiht your local oracle office for your questions
    Hope it helps
    Regard
    Helios

  • How to stop a running report in BI Publisher?

    Is there a way to stop a running report/sql in BI Publisher from BI Publisher itself?  ( killing it in database by DBA is one way)
    Thanks
    Ashish

    Yes that is the only option which we can stop a running report in BI Publisher
    I suspect you'll need to ask your DBA to kill the session.
    However, if you have DBA privileges yourself, you can do this by a few methods, some of which are described here:
    http://www.oracle-base.com/articles/misc/KillingOracleSessions.php
    Mark if helps,
    Thanks,

  • OAM 11g reports with BI publisher 11g

    Hi Guys,
    I am facing issue while configuring the reports in BI Publisher for 11g while generating report i am getting error
    oracle.xdo.XDOException: oracle.xdo.XDOException: oracle.xdo.XDOException: Could not get data source connection for: Audit
    i will list down the steps
    1. Created a audit database using RCU
    2.Created a jdbd data source in weblogic
    3. Attach this data source to Audit store in Enterprise manager.
    4.deploy the reports in BI publisher
    5. created a jdbc data source to point to audit database.
    6.Attach this datasource to data modal and then to report. Now when i run the report i am getting this error
    oracle.xdo.XDOException: oracle.xdo.XDOException: oracle.xdo.XDOException: Could not get data source connection for: Audit
    guys provide me with some pointers.

    Hi,
    Here is a set of instructions on how to run the OAM 11g reports in BI 11g:
    http://oraclemiddlewareblog.com/2012/07/31/how-to-run-oam-11g-audit-reports-in-bi-publisher-11g/
    Basically, even if you have created the datasource to the XX_IAU schema, you still need to make sure that you enable the audit on the OAM side and that you configure the right filters for the audited operations.

  • Useing Excel table genarate the report in bi publisher 11g

    Hi All,
    Can anyone share your ideas pls...
    Using Excel files we upload the data into data set excel but could't generate the reports in Bi-Publisher 11g...we are getting the error :"Null".
    We are using open office...is this could be a problem..?
    Rgds..DCB
    Edited by: DCB on Dec 30, 2010 5:30 AM

    check the below
    http://www.oracle.com/webfolder/technetwork/tutorials/obe/fmw/bi//bip/advancedbip/advancedbip.htm#t3
    http://www.youtube.com/watch?v=NPbKRnSkDVM
    using rtf template
    http://bipconsulting.blogspot.com/2010/02/drill-down-to-detail-or-another-report.html

  • Unable to run Report !

    Hi All !
    I intend to connect a report from form through a push button..
    But when i click that button during runtime, i got an error,
    FRM-41214-Unable to run reportFor which i found a solution in this forum as to check with the job status..
    When i clicked that job status i got ,
    Error    
        Terminated with error: <br>REP-826: Invalid printer driver 'htm' specified by parameter DESFORMAT.  Yes, i have given 'htm' as DESFORMAT since when i run that report individually from Oracle Reports Developer the format was in 'htm' during runtime..
    Please help me with a solution !
    Thanks and Regards,
    user 10685325
    Edited by: user10685325 on Jan 6, 2009 1:25 AM

    Hi !
    I tried with the coding,
    DECLARE
    report_id Report_Object;
    v_report_other VARCHAR2(4000);
    BEGIN
    /* Call run_report_object */
    report_id:= find_report_object('REPORT121');
    v_report_other:= 'paramform=yes P_1='||:blockname.employeeid;
    RUN_REPORT_OBJECT(report_id,
    :parameter.rwserver,
    'HTMLCSS',
    CACHE,
    'filename.jsp',
    v_report_other,
    '/reports/rwservlet');
    END;But this gives me the error,
    bad bind variable:parameter.rwserverAnd also i tried with the coding
    PROCEDURE RUN_REPORT_OBJECT_PROC(
    repid REPORT_OBJECT;
    report_server_name VARCHAR2,
    report_format VARCHAR2,
    report_destype_name NUMBER,
    report_file_name VARCHAR2,
    report_otherparam VARCHAR2,
    reports_servlet VARCHAR2) IS
    --PFACTION REPORT_OBJECT;
    v_rep VARCHAR2(1000);
    hidden_action VARCHAR2(2000);
    rep_status VARCHAR2(20);
    c char;
    c_old char;
    c_new char;
    i number(5);
    v_report_other varchar2(4000);
    BEGIN
    repid := find_report_object('REPORT121');
    ---PFACTION :=find_report_object('http://serc-ks4dbdzvdm:8889/reports/rwservlet?_hidden_report=emp.jsp');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_EXECUTION_MODE,BATCH);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_COMM_MODE,SYNCHRONOUS);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME,'emp.jsp');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE,CACHE);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT,'HTMLCSS');
    --SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'paramname=Pf 1');
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_OTHER,'PF_1='||:EMP_LL.employeeid||' paramform=yes');
    hidden_action:=hidden_action||'&report='||
    GET_REPORT_OBJECT_PROPERTY(repid,REPORT_FILENAME);
    hidden_action:=hidden_action||'&destype='||
    GET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESTYPE);
    hidden_action:=hidden_action||'&desformat='||
    GET_REPORT_OBJECT_PROPERTY(repid,REPORT_DESFORMAT);
    hidden_action:=hidden_action||'&userid='||
    GET_APPLICATION_PROPERTY('senthil')||'/'||GET_APPLICATION_PROPERTY('senthil')||'@'||GET_APPLICATION_PROPERTY('con_serc');
    c_old:='@';
    for i in 1..LENGTH(report_otherparam) LOOP
         c_new:=substr(report_otherparam,i,1);
         if (c_new='') then
         c:='&';
         else
              c:=c_new;
         end if;
         if(c_old=''and c_new='')then
              null;
         else
              v_report_other:=v_report_other||c;
         end if;
         c_old:=c_new;
    end loop;
    hidden_action:=hidden_action||'&'||v_report_other;
    hidden_action:=rwservlet||'?_hidden_server='||report_server_name||encode(hidden_action);
    set_report_object_property(repid,report_other,'pfaction='||hidden_action||''||report_otherparam);
    SET_REPORT_OBJECT_PROPERTY(repid,REPORT_SERVER,'rserver');
    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
    WEB.SHOW_DOCUMENT ('http://<path>:portnumber/reports/rwservlet/getjobid' ||
    substr(v_rep,instr(v_rep,'_',-1)+1)||'?'||'server=rserver','_blank');
    ELSE
    message('Error when running report');
    END IF;
    END;But this also gives me the error
    encode has to be declaredPls help me to overcome this!
    Thanks and Regards,
    user 10685325

  • Backend BW roles for users needed when running reports in infoview?

    Hello all,
    We are using SAP BI Queries as the sources of our universes, the user is going to logon to infoview to run report in webi. We have created some access levels in CMC to restrict users, the question is - the user will still need some kind of backend BW roles to have access to the BI query that is developed in BW system right? That way the user can fetch data?
    Let me know
    Thanks in advance.

    Hi,
    If you are using SAP Authentication and Single sign on option in universe connection, the users must have sufficient roles to access SAP BW database.
    if not, the only user login which you create during connection creation having roles to access to BW database is enough. In this case, the user can login to Infoview using any user and can access the report if he has priveleges to the report.
    Hope this helps!

  • 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 run report from forms developer.

    hi....
    i m not very much in developer 9i.from last 2 month i m doing developer 9i.I m desiging and running
    report from report builder.but i m not able to run that report from forms developer.Can anyone help to solve my problem?is there any particular extension i have to follow or any configuration(Application server) i have to made change?What code i have to write to run a report from forms?

    Hi frank...
    Thanx for ur reply...
    Actually what i did,i created a report and save that report with .rdf extension.I set reports_path(In Registry) property to the particular folder where i put all of my reports.In forms developer i add the report as report object from that folder.i set the following few lines in a button click event
    --=============================================
    declare
    rep_id report_object;
    v_rep varchar2(30);
    begin
    rep_id :=find_report_object('report4');
    v_rep :=run_report_object(rep_id);
    end;
    --=============================================
    when i click the button it is showing a error "You didnot specify the report name".This is all about from me what i did to run a report from forms.So should i do to run report?

Maybe you are looking for

  • How to include the 1st data point date time in x

    Hi, I use a formular in the Interval from "Axis range and interval" =IIF(COUNT(Fields!Date_Reading.value, "DataSet1") <=48 ,1 , 12) However, it always missed the 1st data point date/time, please advise on how to include it always ... ! Thanks !

  • Repeated characters in a string????

    hey guys well i kinda have a little problem figuring out how to find out if there are repeated characters in a string. if anyone can help, would appreciate it. thanks milos

  • Can I turn a tool recorded artwork into a video?

    I want to show a video turning into a drawing. Can I use the tool recording feature to change my photo into a drawing and than export that to video?

  • Navigation with inLineFrame component

    i used inLineFrame component in one page. i am able to navigate from one page to another with in the frame. But i want to come out after some navigation and display the full page in a new window. Thanks in advance prapansol Message was edited by: Pra

  • Automatically importing from SD slot in laptop?

    I have an SD slot built in to my laptop and I'd like for elements 8 to automatically import the photos when I insert the SD card. I get an error message when I insert the card that says "This file does not have a program associated with it" and tells