Unable to run reports due to UserTokenSIDs error

Hi Everyone.
A quick summary I have installed nothing but fresh sccm 2012 r2 lately for clients and this is the first I have seen of this error.
I found what is not a long term soulution here but it changes the reg key back I even tried solution 2 and nothing
http://www.netdavidic.com/2013/11/how-to-fix-sccm-2012-r2-reporting.html
I also removed the reporting point role still the same results
I also read this regarding adding my sql reporting services account to this built-in group but this was an upgrade to r2
http://social.technet.microsoft.com/Forums/en-US/77bad9b6-de0e-42d3-ae9f-e7c9d26b4330/reporting-error-after-upgrading-to-sccm-2012-r2?forum=configmanagergeneral
Just an FYI SQL is housed on the same server as sccm. This is a sql 2012 sp1 with reporting services on same server. Thanks!

It's applicable to fresh installations as well.
You can verify this on
http://technet.microsoft.com/en-us/library/gg712698.aspx that states:
The account that runs Reporting Services must belong to the domain local security group
Windows Authorization Access Group, and have the Read tokenGroupsGlobalAndUniversal permission set to
Allow.
Under section>
Use the following procedure to install the reporting services point.
To install the reporting services point on a site system
Tim Nilimaa | Blog: http://infoworks.tv | Twitter: @timnilimaa

Similar Messages

  • Unable to run reports due to too large set size

    Hello guys
    I am creating a report with almost 12 columns. I know it has a lot of data. When I tried to add one more column which is day column, it gives me the following errors:
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. Essbase Error: Internal error: Set is too large to be processed. Set size exceeds 2^32 tuples. (HY000)
    SQL Issued: SELECT Brand."Brand Name" saw_0, Brand.Product saw_1, Offer."Offer Name" saw_2, "Subscription Offer_Cost"."Offer Cost" saw_3, "Continuity Cycle"."Cont Cycle" saw_4, "Acquisition Date"."Acquisition Month" saw_5, "Acquisition Date"."Acquisition Day" saw_6, "Retention Status".Status saw_7, Level."Subscription Leve" saw_8, SUM(CASE WHEN Level."Subscription Leve" = '0' THEN retntion."Count Of Orders" ELSE 0 END by "Acquisition Date"."Acquisition Month", Offer."Offer Name") saw_9, CASE WHEN Level."Subscription Leve" > '0' THEN retntion."Count Of Orders" ELSE 0 END saw_10, (CASE WHEN Level."Subscription Leve" > '0' THEN retntion."Count Of Orders" ELSE 0 END/SUM(CASE WHEN Level."Subscription Leve" = '0' THEN retntion."Count Of Orders" ELSE 0 END by "Acquisition Date"."Acquisition Month", Offer."Offer Name"))*100 saw_11 FROM retention_cube WHERE ("Acquisition Date"."Acquisition Month" BETWEEN '2009 Feb' AND '2009 Jan') ORDER BY saw_7 DESC
    It's probably because the data size is too big for querry to return. Is there a way I can fix this error and still get the report with the new columns?
    Any pointers will be greatly appreciated..

    Well of course it is. (Set too large I mean)
    SUM(CASE WHEN Level."Subscription Leve" = '0' THEN retntion."Count Of Orders" ELSE 0 END by "Acquisition Date"."Acquisition Month", Offer."Offer Name") saw_9,
    CASE WHEN Level."Subscription Leve" > '0' THEN retntion."Count Of Orders" ELSE 0 END saw_10,
    (CASE WHEN Level."Subscription Leve" > '0' THEN retntion."Count Of Orders" ELSE 0 END/SUM(CASE WHEN Level."Subscription Leve" = '0' THEN retntion."Count Of Orders" ELSE 0 END by "Acquisition Date"."Acquisition Month", Offer."Offer Name"))*100 saw_11
    THAT is the way to kill a query going against Essbase. Just check out the MDX that generates in the background (i.e. read the log!) and try to fire that through SmartView. It will work until you hit a low grain on one of the dimensions. The time dimension being a perfect example.
    Stuff like what you're trying to do should either be
    - account members in Essbase,
    - MDX EVALUATE_AGGR expressions in the RPD with the correct aggragation level set or
    - MDX EVALUATE expressions in answers.
    Push the number crunching and aggregating as far down the foodchain as you can. Everything will almost automatically result in failures.
    Cheers,
    Christi@n

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

  • 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

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

  • 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

  • Unable to run reports from forms using run_report_object

    Hi All,
    I am unable to run a report(9i) from forms(9i) in client side.
    I used the following code
    Declare
         repid REPORT_OBJECT;
         v_rep varchar2(100);
         rep_status varchar2(20);
    Begin     
         repid := FIND_REPORT_OBJECT('report4');
         v_rep := RUN_REPORT_OBJECT(repid);
    End;
    I get the following error
    FRM-41219 : Cannot find report:invalid ID.
    Any help will be highly appreciated.
    Thanks,
    Sanjay

    Hi All,
    I am unable to run a report(9i) from forms(9i) in client side.
    I used the following code
    Declare
         repid REPORT_OBJECT;
         v_rep varchar2(100);
         rep_status varchar2(20);
    Begin     
         repid := FIND_REPORT_OBJECT('report4');
         v_rep := RUN_REPORT_OBJECT(repid);
    End;
    I get the following error
    FRM-41219 : Cannot find report:invalid ID.
    Any help will be highly appreciated.
    Thanks,
    Sanjay Hi
    You have to create a report object within the form.
    If you look at the Object NAvigator in the Form Builder right below Record Group
    tou would see an option for Report. Create a new report object.
    Set the following properties for that object
    Filename - This should be the name of your RDF file you created from Report Builder along with the full path.
    Set the Execution Mode, Communication Mode and Report Destination Type as per your requirements.
    In the parameter for find_report_object() pass the name of the report object you created.
    eg.
    if the name of the report object you created is Report2 then
    your call should be rep_id := find_report_object('Report2') .
    You are calling the report object which has been created in your form builder and through that call you are running the report file specified in the Filename property of that report object.
    Regards
    Poorvi

  • Unable to run the local bussiness server - Error during startup of BPA

    When i installed the BPA tool and started the 'LOCAL' server in oracle BPA Network. I am getting an error saying 'Unable to run the local bussiness server'. Then i checked the log and found the foolowing errors. Please suggest !
    LoG File 1:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    2009-03-10 22:18:53,199     [ ARIS Server Site Startup process ]
    2009-03-10 22:18:53,199     
    2009-03-10 22:18:53,324     Started profile Private@17057
    2009-03-10 22:18:53,324     Started profile Public@17055
    2009-03-10 22:18:53,324     Started profile Agent@17058
    2009-03-10 22:18:53,339     
    2009-03-10 22:18:53,339     Starting ARIS Nameservice 10.1.3.4.271679(Public)
    2009-03-10 22:18:53,339     
    2009-03-10 22:18:53,339     Starting ARIS Eventservice 10.1.3.4.271679(Private)
    2009-03-10 22:18:53,355     
    2009-03-10 22:18:53,355     Starting ARIS Nameservice 10.1.3.4.271679(Private)
    2009-03-10 22:18:53,355     
    2009-03-10 22:18:53,355     Starting DB event initialisation 10.1.3.4.271679(Private)
    2009-03-10 22:18:53,417     - event channel is created
    2009-03-10 22:18:53,433     
    2009-03-10 22:18:53,433     Starting Aris LockService 10.1.3.4.271679(Private)
    2009-03-10 22:18:53,433     - using mapping 'com.idsscheer.aris.server.dl.mapimpl.ora.AMapping'
    2009-03-10 22:18:53,448     - using url 'jdbc:oracle:thin:@LOCALHOST:1521:orcl'
    2009-03-10 22:21:53,459     Launch of Aris LockService failed!
    2009-03-10 22:21:53,459     
    2009-03-10 22:21:53,459     [ There have been ERRORS, ARIS Server Site is going down ... ]
    2009-03-10 22:21:53,459     Terminating ARIS Server Site ...
    2009-03-10 22:21:53,459     Shutting down DB event initialisation ...
    2009-03-10 22:21:53,475     Shutting down ARIS Nameservice ...
    2009-03-10 22:21:53,475     Shutting down ARIS Eventservice ...
    2009-03-10 22:21:53,475     Shutting down ARIS Nameservice ...
    2009-03-10 22:21:55,487     ARIS Server Site terminated!
    2009-03-10 22:21:55,487     
    2009-03-10 22:21:55,487     [ ARIS Server Site is down ]
    2009-03-10 22:21:55,487     
    2009-03-10 22:21:58,498     Terminating ARIS Server Site ...
    2009-03-10 22:21:58,498     ARIS Server Site terminated!
    2009-03-10 22:59:48,606     
    2009-03-10 22:59:48,606     ARIS Server Site
    2009-03-10 22:59:48,606     (c) 2005 IDS Scheer
    2009-03-10 22:59:48,606     
    2009-03-10 22:59:48,606     
    2009-03-10 22:59:48,606     [ ARIS Server Site Startup process ]
    2009-03-10 22:59:48,606     
    2009-03-10 22:59:48,762     Started profile Private@17057
    2009-03-10 22:59:48,762     Started profile Public@17055
    2009-03-10 22:59:48,762     Started profile Agent@17058
    2009-03-10 22:59:48,762     
    2009-03-10 22:59:48,762     Starting ARIS Nameservice 10.1.3.4.271679(Public)
    2009-03-10 22:59:48,777     
    2009-03-10 22:59:48,777     Starting ARIS Eventservice 10.1.3.4.271679(Private)
    2009-03-10 22:59:48,793     
    2009-03-10 22:59:48,793     Starting ARIS Nameservice 10.1.3.4.271679(Private)
    2009-03-10 22:59:48,793     
    2009-03-10 22:59:48,793     Starting DB event initialisation 10.1.3.4.271679(Private)
    2009-03-10 22:59:48,855     - event channel is created
    2009-03-10 22:59:48,855     
    2009-03-10 22:59:48,871     Starting Aris LockService 10.1.3.4.271679(Private)
    2009-03-10 22:59:48,871     - using mapping 'com.idsscheer.aris.server.dl.mapimpl.ora.AMapping'
    2009-03-10 22:59:48,887     - using url 'jdbc:oracle:thin:@LOCALHOST:1521:orcl'
    2009-03-10 23:02:49,309     Launch of Aris LockService failed!
    2009-03-10 23:02:49,309     
    2009-03-10 23:02:49,309     [ There have been ERRORS, ARIS Server Site is going down ... ]
    2009-03-10 23:02:49,309     Terminating ARIS Server Site ...
    2009-03-10 23:02:49,309     Shutting down DB event initialisation ...
    2009-03-10 23:02:49,309     Shutting down ARIS Nameservice ...
    2009-03-10 23:02:49,309     Shutting down ARIS Eventservice ...
    2009-03-10 23:02:49,309     Shutting down ARIS Nameservice ...
    2009-03-10 23:02:51,321     ARIS Server Site terminated!
    2009-03-10 23:02:51,321     
    2009-03-10 23:02:51,321     [ ARIS Server Site is down ]
    2009-03-10 23:02:51,321     
    2009-03-10 23:02:54,332     Terminating ARIS Server Site ...
    2009-03-10 23:02:54,332     ARIS Server Site terminated!
    Error Log 2:Exception
    2009-03-10 18:19:39,019     com.idsscheer.aris.server.Exceptions - Launch failed!
    com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:368)
    com.idsscheer.aris.server.common.launch.AFatalLaunchableInitException: Launch of Aris LockService failed!
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:65)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startService(AArisLauncher.java:548)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startServices(AArisLauncher.java:502)
         at com.idsscheer.aris.server.launcher.AArisLauncher.launchAll(AArisLauncher.java:456)
         at com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:365)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startup(AArisLauncher.java:302)
         at com.idsscheer.aris.server.launcher.AArisLauncher.main(AArisLauncher.java:155)
    Caused by: java.lang.RuntimeException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:111)
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:63)
         ... 6 more
    Caused by: com.idsscheer.aris.server.dl.ls.core.AFatalInitException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:79)
         at com.idsscheer.aris.server.dl.ls.core.logic.ALockServiceFactoryInternal.createLockService(ALockServiceFactoryInternal.java:43)
         at com.idsscheer.aris.server.dl.ls.core.ALockServiceFactory.createLockService(ALockServiceFactory.java:22)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:106)
         ... 7 more
    Caused by: com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher$ACannotStartException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.waitUntilServerIsUp(AOraLauncher.java:87)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.startup(AOraLauncher.java:60)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:76)
         ... 10 more
    2009-03-10 18:28:52,307     com.idsscheer.aris.server.Exceptions - Launch failed!
    com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:368)
    com.idsscheer.aris.server.common.launch.AFatalLaunchableInitException: Launch of Aris LockService failed!
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:65)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startService(AArisLauncher.java:548)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startServices(AArisLauncher.java:502)
         at com.idsscheer.aris.server.launcher.AArisLauncher.launchAll(AArisLauncher.java:456)
         at com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:365)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startup(AArisLauncher.java:302)
         at com.idsscheer.aris.server.launcher.AArisLauncher.main(AArisLauncher.java:155)
    Caused by: java.lang.RuntimeException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:111)
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:63)
         ... 6 more
    Caused by: com.idsscheer.aris.server.dl.ls.core.AFatalInitException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:79)
         at com.idsscheer.aris.server.dl.ls.core.logic.ALockServiceFactoryInternal.createLockService(ALockServiceFactoryInternal.java:43)
         at com.idsscheer.aris.server.dl.ls.core.ALockServiceFactory.createLockService(ALockServiceFactory.java:22)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:106)
         ... 7 more
    Caused by: com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher$ACannotStartException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.waitUntilServerIsUp(AOraLauncher.java:87)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.startup(AOraLauncher.java:60)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:76)
         ... 10 more
    2009-03-10 22:21:53,459     com.idsscheer.aris.server.Exceptions - Launch failed!
    com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:368)
    com.idsscheer.aris.server.common.launch.AFatalLaunchableInitException: Launch of Aris LockService failed!
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:65)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startService(AArisLauncher.java:548)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startServices(AArisLauncher.java:502)
         at com.idsscheer.aris.server.launcher.AArisLauncher.launchAll(AArisLauncher.java:456)
         at com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:365)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startup(AArisLauncher.java:302)
         at com.idsscheer.aris.server.launcher.AArisLauncher.main(AArisLauncher.java:155)
    Caused by: java.lang.RuntimeException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:111)
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:63)
         ... 6 more
    Caused by: com.idsscheer.aris.server.dl.ls.core.AFatalInitException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:79)
         at com.idsscheer.aris.server.dl.ls.core.logic.ALockServiceFactoryInternal.createLockService(ALockServiceFactoryInternal.java:43)
         at com.idsscheer.aris.server.dl.ls.core.ALockServiceFactory.createLockService(ALockServiceFactory.java:22)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:106)
         ... 7 more
    Caused by: com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher$ACannotStartException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.waitUntilServerIsUp(AOraLauncher.java:87)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.startup(AOraLauncher.java:60)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:76)
         ... 10 more
    2009-03-10 23:02:49,309     com.idsscheer.aris.server.Exceptions - Launch failed!
    com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:368)
    com.idsscheer.aris.server.common.launch.AFatalLaunchableInitException: Launch of Aris LockService failed!
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:65)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startService(AArisLauncher.java:548)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startServices(AArisLauncher.java:502)
         at com.idsscheer.aris.server.launcher.AArisLauncher.launchAll(AArisLauncher.java:456)
         at com.idsscheer.aris.server.launcher.AArisLauncher.trystart(AArisLauncher.java:365)
         at com.idsscheer.aris.server.launcher.AArisLauncher.startup(AArisLauncher.java:302)
         at com.idsscheer.aris.server.launcher.AArisLauncher.main(AArisLauncher.java:155)
    Caused by: java.lang.RuntimeException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:111)
         at com.idsscheer.aris.server.launcher.AArisLaunchable.startup(AArisLaunchable.java:63)
         ... 6 more
    Caused by: com.idsscheer.aris.server.dl.ls.core.AFatalInitException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:79)
         at com.idsscheer.aris.server.dl.ls.core.logic.ALockServiceFactoryInternal.createLockService(ALockServiceFactoryInternal.java:43)
         at com.idsscheer.aris.server.dl.ls.core.ALockServiceFactory.createLockService(ALockServiceFactory.java:22)
         at com.idsscheer.aris.server.launcher.ARemoteLockServiceLaunchable$ALaunchableImpl.startup(ARemoteLockServiceLaunchable.java:106)
         ... 7 more
    Caused by: com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher$ACannotStartException: timeout exceeded, cannot connect to database server (url=jdbc:oracle:thin:@LOCALHOST:1521:orcl)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.waitUntilServerIsUp(AOraLauncher.java:87)
         at com.idsscheer.aris.server.dl.mapimpl.ora.dblauncher.AOraLauncher.startup(AOraLauncher.java:60)
         at com.idsscheer.aris.server.dl.mapimpl.ora.AMapping.startDatabase(AMapping.java:76)
         ... 10 more
    ----------------------------------------------------------------------------------------------------------------------------------------------

    S1:I uninstalled BPA.
    S2: I installed BPA again using the default options by selecting all the default options that the BPA showed during installation. EG. I selected 'Oracle Lite' which was by default an option.
    S3: After BPA installation, I also installed BPA Publisher which i had not done last time.
    S4: Restated my system and it all works gr8 now.
    Actually, the BPA Publisher creats a Repository area so it should have been installed along with the BPA installation. And Since a Repository area was not found it was giving this error message again and again.
    Now its all fine . Hopefully, some one else will learn from my mistakes.

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

  • Unable to run reports in Campus Manager 5.2.2

    I'm trying to run reports in Campus Manager and none of them work.
    If I try a Best Practices Deviation report I get this error:
    "Problem with File /WEB-INF/screens/reports/BestPracticesReportGen.jsp!!!/WEB-INF/screens/reporst/BestPracticesReportGen.jsp(418,66) Attribute value "pophelp('" + helpLink + "');" is quoted with " which must be escaped when used within the value"
    If I try a Device Attributes report or a Port Attributes report I get a pop up saying:
    "Report not found"
    If I try a Discrepancies report I get:
    "Error while loading. Campus Manager Server may be down. Please check for Campus Manager Server Stgatus in Common Services -> Server -> Admin -> Process. If the process is down, restart it. Else try after sometime"
    And finally, running a VLAN report for any device (and I know they are L2 devices) comes back with:
    "Selected devices(s) do not support VLANs"
    We're running on Windows 2003. I've taken over supporting this system, so I don't know if it ever worked.
    LMS 3.2.1
    Campus Manager 5.2.2
    CiscoWorks Common Services 3.3.1
    Can anyone suggest how I could get to the bottom of this?

    Hi Roger - try editing your MDC\tomcat\conf\catalina.properties file and add the following line at the end:
    org.apache.jasper.compiler.Parser.STRICT_QUOTE_ESCAPING=false
    This tells Tomcat to be flexible with double and single quoting in the CW code and allowed me to run the reports, though I'm still not getting the data I'd expect that's probably another issue.
    Hi Ahmad, thanks for your reply. Here's my output too.

  • Encore unable to complete operation due to hardware error ?

    encore unable to complete operation because of hardware error ?

    These questions below may be for a different product... but the kind of information you need to supply is the same, for the products you use
    More information needed for someone to help... please click below and provide the requested information
    -PPro Information FAQ http://forums.adobe.com/message/4200840

Maybe you are looking for

  • EDI for creation of Sales Order and sending copy of Invoice

    Hello Experts, I am working on EDI. We have a scenario, where the purchase order created in the 3rd party system has to be converted into a sales order in our SAP system. Then, the regular flow would follow uptil delivery and creation of invoice in S

  • Is it possible to create a Master Form?

    Hello... i am using Acrobat Pro 8.6. I was wondering if it might be possible to create a master form. I am using a form to receive artwork approval from my customers. My question is if I can use my proof form to create a form and use that form every

  • To map batch number to serial number for inbound message type WMMBXY

    Hi Gurus, Can anybody guid me how to map batch number to serial number for goods receipt inbound EDI 861 message type WMMBXY  . And can tell me how to assign serial number in Purchase Order for serialized product for perticuler Batch number.

  • SAP DBTech JDBC: [4]: cannot allocate enough memory: Out of memory

    Hello, I am currently experiencing this error when making request to the Hana database via jdbc : SAP DBTech JDBC: [4]: cannot allocate enough memory: Out of memory I guess I am running out of space, so I wanted to delete some data from unused tables

  • Windows phone security on wireless networks

    I am a post-doc at large medical center, and requested access to our secure wireless network due to the nature of my work. I was told by our IT support desk analysts that Windows Phone is not supported at our medical center (at all), because Windows