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.

Similar Messages

  • 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

  • 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

  • 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 the oracle Process Manager service

    Unable to run the services of
    1) oracle Process Manager service(EPM_epmsystem1)
    2) Oracle Process Manager (ohsInstance1649849633)
    error message is displayed as below.
    Error 1053 the service did not respond to the start or control request in timely fashion.
    Thanks.

    –> Start NodeManager from the Command Prompt
    Cd bi0104\wlserver_10.3\server\bin
    startNodeManager.cmd
    Wait untill you see message “Secure socket listener start at port……”
    –> Start Admin server from command prompt
    Cd bi0104\user_projects\domains\bifoundation_domain\bin
    startWebLogic.cmd
    It will ask for user name / password. Specify the user details that you used at the time of the Oracle BI 11g install. You could also use a ‘Boot Identity File’ -(boot.properties). Check the documentation for more details.
    Wait untill you see message Admin server is in ‘RUNNING MODE’.
    –> Now start Managed server from GUI
    Access WebLogic console from a webbrowser
    http://<machinename>:7001/console
    Login, Environment > servers > Control > select bi_server1 > click on start
    It would take some time for the Managed server to start. Wait untill you see the ‘Running’ status.
    –> Now start the OBIEE components from command prompt
    Cd bi0104\instances\instance7\bin
    opmnctl startall
    Note that it’s a possible startup sequence. There are multiple ways to statup.
    i am getting all above messages all but not getting oracle process manager up in the services.msc
    error : not getting up in timely fashion -1053
    thanks
    Edited by: user11165720 on Apr 1, 2011 4:24 AM

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

  • Running report in concurrent manager using unix shell script to create PDF

    Hi,
    I need help urgently, we are in the process of migrating from 10.7 to 11i. My problem is we have a report created in 10.7 that is ran through concurrent manager using shell scripts(host) and the output is stored as .pdf, in 10.7, it works perfectly. Now I am also doing it in 11i but it gives some error. The shell script from 10.7 is: r25runm module=$XXX_TOP/srw/test.rdf \
    userid=$1 batch=yes \
    desformat=pdf destype=file \
    desname=$XXX_TOP/outbound/test.pdf
    I change the shell script in 11i as follows:
    ar60runb report=$XXX_TOP/reports/US/test.rdf \
    userid=$1 batch=yes \
    desformat=pdf destype=file \
    desname=$XXX_TOP/outbound/test.pdf
    I checked your metalink, and I am confused which is the right executable I should use, is it ar60runb or ar60run or rwrun60b or rwrun60c or rwrun60b, which is which? how many parameters do I have to include?, some documents are saying I have to use the 4 parameters-orauser/pwd, userid,username, request_id, others one.Which parameter/s go/es with what executable. We are using HP-UX server 64 bit. In 11i, when I run in concurrent manager it gives me an error:The executable file /chdev/fd11/u00/fd11appl/xxx/1.0/bin/test for this concurrent program cannot be executed.
    Contact your system administrator or support representative. Verify that the execution path to the executable file is co.
    I have checked Metalink and follow the directions, created a link fndcpesr, check and set the permissions, etc. Play around with the executables ar60runb or rwrun60 etc., the parameters. The ar60* or rwrun60* executable permissions are -rwxr-xr-x and $XXX_TOP/fnd/../fndcpesr is -rwxr-xr-x. Also, why is ar60* executables located in $FND_TOP/bin, whereas rwrun60* executables are in $ORACLE_HOME/bin? Please help, I need an answer urgently ,I have to complete this task before Tuesday 9/16/2003 for our migration deadline. Thank you very much.

    I have already fixed the problem, TY anyway

  • Unable to run report on portal

    Hi,
    I was able to run a BI report on portal until somedays back.
    When I click on the link instead of the selection window a blank screen appears and nothing happens.
    I hav checked my role with the security team and there has been no changes.
    I have reinstalled my SAPGUI and also reformated my PC but all in vain.
    Please suggest what can be the reason or how can I overcome this issue.

    thanx a lot for ur response
    Problem is resolved now by implementing your solution
    i had some queries
    1-what is purpose of setting CacheDir parameter ?
    set as <property name="cacheDir" value="D:\cache"/>
    2-I had 2 projects like proj1 and proj2 in separate directories with their own forms and reports in separate directories under parent directory proj1 and proj1
    e.g.
    parent directory proj1 contains forms reports,menus etc
    parent directory proj2 contains forms reports,menus etc
    i manage to configure proj1 forms configuration by making some modification to formsweb.cfg
    1-WorkingDirectory=d:\proj1\forms
    2-form=login.fmx
    and configure report for proj2 by making some modification to rep_shakeel.conf
    <property name="sourceDir" value="D:\proj1\reports"/>
    proj1 is working fine but how to configure proj2 at the same application server ?
    please suggest!

Maybe you are looking for

  • Survey Export to Excel - Not all columns are exported

    I have Survey in SharePoint 2013 with questions expecting different answers - radio button options / Ratings / Multi line text, etc. Settings choosen - Read thier own responses, create and edit their own responses I have full control over the site wh

  • VPN Problems ASA 5505 to 7206 Router MM_WAIT_MSG2

    Hi Since I swapped a Pix Firewall for a Cisco ASA 5505 Firewall at one of our Sites the VPN Tunnel wont come up I'm getting this: asaXXXXX# sho crypto isakmp sa    Active SA: 1     Rekey SA: 0 (A tunnel will report 1 Active and 1 Rekey SA during reke

  • IC Webclient color setting

    We are going to implement IC Webclient and our Agents will each have 2 logins - one for incoming Emails and one for incoming phone calls since SAP with Genesys routing does not allow for two open interactions at the same time.  The users would like a

  • AT SELECTION-SCREEN and AT USER-COMMAND.

    Hi everyone, I am a newbie in ABAP programming please help me out on this problem. I need to display a screen dialog (Window) with search results immediately after I entered the search parameter in another dialog box after i clicked the 'execute' ico

  • How to document for storage location summary

    Dear All, I am using this how to document and applying it to my scenario. Has anybody implemented this how to document? My question was supposed I have some additional key figures in the report, say apart from ValStockValue and Total Stock, I have st