Runtime parameter, report not running

hii
i am using form 6i and on a button press, i am caling the following procedure that runs a report ...
procdure....
begin
   INCEXP_PARAMETER(M_PARAM_ID);
   RUN_PRODUCT(REPORTS,M_REP_ID,SYNCHRONOUS,RUNTIME,FILESYSTEM,M_PARAM_ID,NULL);
end;
PROCEDURE INCEXP_PARAMETER  (Param_id  IN OUT Paramlist) IS
    M_DESFORMAT VARCHAR2(20);
    M_DESNAME VARCHAR2(500);
    M_DESTYPE VARCHAR2(20);
BEGIN         
IF  :R_OPTION = 'S' THEN  -- on SCREEN
    M_DESFORMAT := 'dflt';
    M_DESNAME := '';
    M_DESTYPE := 'SCREEN';
ELSIF  :R_OPTION = 'P' THEN
    M_DESFORMAT := 'dflt';
    M_DESNAME := '';
    M_DESTYPE := 'PRINTER';
ELSIF  :R_OPTION = 'W' THEN
    M_DESFORMAT := 'RTF';
    M_DESNAME := :R_FILENAME;
    M_DESTYPE := 'FILE';
ELSIF  :R_OPTION = 'D' THEN
    M_DESFORMAT := 'PDF';
    M_DESNAME := :R_FILENAME;
    M_DESTYPE := 'FILE';
ELSIF  :R_OPTION = 'X' THEN
    M_DESFORMAT := 'delimiteddata';
    M_DESNAME := :R_FILENAME;
    M_DESTYPE := 'FILE';
END IF;
ADD_PARAMETER(PARAM_ID,'PARAMFORM',TEXT_PARAMETER,'NO');                 
ADD_PARAMETER(PARAM_ID,'M_YYYYMM',TEXT_PARAMETER,:M_PERIOD);
ADD_PARAMETER(PARAM_ID, 'DESTYPE',   TEXT_PARAMETER, M_DESTYPE);
ADD_PARAMETER(PARAM_ID, 'DESFORMAT', TEXT_PARAMETER, M_DESFORMAT);
ADD_PARAMETER(PARAM_ID, 'DESNAME',          TEXT_PARAMETER, :R_FILENAME);
Add_Parameter(PARAM_ID,'ORIENTATION',TEXT_PARAMETER,:R_ORIENTATION);
Add_Parameter(PARAM_ID,'MODE',TEXT_PARAMETER,:R_MODE);
ADD_PARAMETER(PARAM_ID, 'MAXIMIZE', TEXT_PARAMETER, 'YES');
END;
giving the above code, my report is not getting run...
at report builder it runs fine..

hii ..
M_PARAM_ID is getting its value from the procedure *'PROCEDURE INCEXP_PARAMETER (Param_id IN OUT Paramlist) IS'*
from my report block on my form...i have button press trigger, that calls first;
INCEXP_REPORT;
PROCEDURE INCEXP_REPORT IS
M_PARAM_ID   PARAMLIST ;
M_REP_ID     VARCHAR2(30) ;
BEGIN
   SET_APPLICATION_PROPERTY(CURSOR_STYLE, 'BUSY');
   SYNCHRONIZE;
   M_REP_ID := :GLOBAL.M_REP_ID;
   M_PARAM_ID := GET_PARAMETER_LIST('REP_PARAM');
   IF ID_NULL(M_PARAM_ID) THEN
      M_PARAM_ID := CREATE_PARAMETER_LIST('REP_PARAM');
      IF ID_NULL(M_PARAM_ID) THEN
         MESSAGE('Error While creating Parameter List') ;
         RAISE FORM_TRIGGER_FAILURE;
      END IF;
   ELSE
      DESTROY_PARAMETER_LIST(M_PARAM_ID);
      M_PARAM_ID := CREATE_PARAMETER_LIST('REP_PARAM');
      IF ID_NULL(M_PARAM_ID) THEN
         MESSAGE('Error while creating Parameter List') ;
         RAISE FORM_TRIGGER_FAILURE;
      END IF;
   END IF;
   INCEXP_PARAMETER(M_PARAM_ID);
   RUN_PRODUCT(REPORTS,M_REP_ID,SYNCHRONOUS,RUNTIME,FILESYSTEM,M_PARAM_ID,NULL);
   SET_APPLICATION_PROPERTY(CURSOR_STYLE, 'DEFAULT');
   DESTROY_PARAMETER_LIST(M_PARAM_ID) ;
   CLEAR_MESSAGE;
END;
PROCEDURE INCEXP_PARAMETER  (Param_id  IN OUT Paramlist) IS
    M_DESFORMAT VARCHAR2(20);
    M_DESNAME VARCHAR2(500);
    M_DESTYPE VARCHAR2(20);
BEGIN         
IF  :R_OPTION = 'S' THEN  -- on SCREEN
    M_DESFORMAT := 'dflt';
    M_DESNAME := '';
    M_DESTYPE := 'SCREEN';
ELSIF  :R_OPTION = 'P' THEN  -- directly to printer
    M_DESFORMAT := 'dflt';
    M_DESNAME := '';
    M_DESTYPE := 'PRINTER';
ELSIF  :R_OPTION = 'W' THEN  -- Word File
    M_DESFORMAT := 'RTF';
    M_DESNAME := :R_FILENAME;
    M_DESTYPE := 'FILE';
ELSIF  :R_OPTION = 'D' THEN  -- PDF File
    M_DESFORMAT := 'PDF';
    M_DESNAME := :R_FILENAME;
    M_DESTYPE := 'FILE';
ELSIF  :R_OPTION = 'X' THEN   -- Excel File
    M_DESFORMAT := 'delimiteddata';
    M_DESNAME := :R_FILENAME;
    M_DESTYPE := 'FILE';
END IF;
ADD_PARAMETER(PARAM_ID,'PARAMFORM',TEXT_PARAMETER,'NO');                 
ADD_PARAMETER(PARAM_ID,'M_YYYYMM',TEXT_PARAMETER,:M_PERIOD);
ADD_PARAMETER(PARAM_ID, 'DESTYPE',   TEXT_PARAMETER, M_DESTYPE);
ADD_PARAMETER(PARAM_ID, 'DESFORMAT', TEXT_PARAMETER, M_DESFORMAT);
ADD_PARAMETER(PARAM_ID, 'DESNAME',          TEXT_PARAMETER, :R_FILENAME);
Add_Parameter(PARAM_ID,'ORIENTATION',TEXT_PARAMETER,:R_ORIENTATION);
Add_Parameter(PARAM_ID,'MODE',TEXT_PARAMETER,:R_MODE);
ADD_PARAMETER(PARAM_ID, 'MAXIMIZE', TEXT_PARAMETER, 'YES');
END;i think setting Parameter part is ok...all i want to know the selection of report output to
"Sceen, Printer, Word, PDF & Excel..which i have defined inside IF....Endif...section,
is correct or not...?
TY..

Similar Messages

  • 6i Reports Not Running in Windows 64 Bit PC

    Hi All,
    We have installed 64 bit version of Windows in some PC’s. We are running Forms and Reports 6i from that PC. But only forms are running fine reports are not running. Have any one of you encountered this problem and got that resolved.
    Please share with us the resolution for the same.
    Thanks in advance

    Hello - I have been able to get the AIP installed.
    Turns out that the installation was hanging because a previous version of Acrobat was already installed. On other machines with Acrobat, I would get a window stating that I had to remove the old software but on W7 x64, the installation simply failed. After removing the old version and trying again, the new installation succeeded.
    Thanks to everyone for their help.

  • Report not run inexplorer and report server not start

    sir
    i install dev suit 10g and
    1. create new form and test that run in explorer
    2. create report and test in report builder that run and give right result, but when i test in explorer that not run and no error and report server OC4J not start i try but window appear and hide
    please give me idea how run report in explorer
    regard
    fahim

    The normal procedure for the Developer Suite is:
    1. Start OC4J instance via Windows Start menu.
    2. Run a report:
    http://127.0.0.1:8889/reports/rwservlet?module=....
    That doesn't work?
    Can you see the in-process report server?
    http://127.0.0.1:8889/reports/rwservlet/showenv?
    Or errors in the job queue?
    http://127.0.0.1:8889/reports/rwservlet/showjobs?
    (note that your port number may be different)

  • Reports not running in development server - business object

    Hi friends,
    my all reports running in production server but some of are not running in develpment server.
    end users are accessing reports through URL ,
    what should be the problem ?
    any suggestion is appreciate.
    thanks.

    HI,
    Below is the URI i m getting.
    http://xyz.com:8080/businessobjects/enterprise115/admin/en/go.jviewer?init=connect&id=8479279&advprint=actx&nologon=viewerlogonform.csp&token=WFF999999SAS758%2EENT%2EWFB%2EBANK%2ECORP%3A6400%4018015619JNCzmr4fAbKrUTKT18014715JzUtK5C3UTCDAxoXONEOFF&relogon=WCSLOGONTOKEN
    "The database logon information for this report is either incomplete or incorrect."
    any help is appreciate.
    Thanks.

  • Reports not running in Infoview

    I just migrated some reports from our Dev server to Test Server. The reports in Test Infoview do not run,. How ever I am able to run them in Crystal designer.
    This did not happen in the past when ever I migrated the reports.
    Any suggestions on what could be wrong? Using BO XI
    The report in Infoview window keeps on running but does not even display the prompts for parameters. There is no error message, not sure whats going on.
    Also I just noticed, there are other reports in different folder in Infoview which connect to a different Universe, If I try to run those reports from infoview, they can run. Onlt the ones that I migrated did not run.
    Pls help.

    Hi,
    Try this step; open the same report in crystal reports designer. Go to file menu-> page setup -> check the option u201CNo printeru201D. Save the report again back to the enterprise and then try and run the report.
    Let me know if this works for you.
    Thanks,
    Kuldeep

  • RTC-5301 - Runtime Platform Service not running

    Hi,
    I am using Oracle 10. R1 and OWB 10.1.0.4.
    When accessing the deployment Manager, I get the error "RTC-5301 - The Runtime Service is not available.
    Following the instructions, I did the following:
    Executed "start-service.sql"
    "Not Available"
    Executed "show_service.sql"
    "Not Available"
    Executed "service_doctor.sql"
    Received the following:
    All PL/SQL packages and functions are valid
    Platform properties have been loaded correctly
    Platform location has been seeded correctly
    NLS messages have been loaded correctly
    The platform service is not available
    There is a problem accessing the service startup script from the databaseserver
    Here is the detailed error message which contains the name of the startscript file:-
    Service startup file 'null/owb/bin/unix/run_service.sh' is notaccessible from the database server on instance number 1
    Please verify that the disk containing the file is visible to thedatabase server
    Please verify that the database server account has access rights on thefile
    There is a problem with the repository connection information used tostart the service
    Here is the detailed error message which contains the connectioninformation passed to the service:-
    Cannot connect: user=null host=null port=null service-name=null
    Please verify that this information is accurate
    If this information is correct, then please use the'set_repository_password.sql' script to reset the stored password
    Can someone help here? I am not sure how to set any of these parameters.
    Thanks in advance.
    John

    Hi
    As I see your error message: "Service startup file 'null/owb/bin/unix/run_service.sh' is not accessible from the database server on instance number 1", I think that your ORACLE_HOME is not set in your unix/linux enviroment (null = no ORACLE HOME). Check this enviroment variable, and set it, if it has not set yet.
    And "use the 'set_repository_password.sql' script to reset the stored password" because your parameters not set: "Cannot connect: user=null host=null port=null service-name=null"
    Ott Karesz
    http://www.trendo-kft.hu

  • Crystal Report not running from Addon in the Front End.

    Dear All ,
    There is a Crystal report , .rpt File inbuilt in the Add-on .
    This report runs well from the Source Code .
    But i am facing problem , since it is not Opening at the Front End after registration of the Add0n.
    Suggest what to do ?
    Thanks
    Ashish

    Dear Rahul ,
    In my system , there is a Addon , which has some crystal Report file inbuilt .
    Which run on the Button Click event in the Form at the Front End (SAP GUI).
    When we debug the Source Code and pass the event . . Report Open with no hurdle.
    But the Same thing when we do at the From END of SAP , then it is not Returning any Report.
    Thanks
    Ashish

  • Report not running through Forms menu

    Hi Gurus,
    In our reports we have used Query PL/SQL to reference cursor. When it is compiled and an executable 'rep' file is created, which when
    called through froms menu generates following error and aborts the report.
    REP-1401:'qr_1refcurds': Fatal PL/SQL error occured.
    ORA-06508: PL/SQL: could not find program unit being called
    The same report when called through forms menu, without the compiled version, executes smoothly. Also it runs through report builder perfectly after compilation and generation of rep file.
    Would appreciate if anyone can provide suitable guidelines to solve this issue.
    null

    hello,
    is the program-unit you are trying to call, in an external plsql-library ? if so, you have to provide the PLX version of this library in order to use it from a REP file.
    however, why are you using the compiled REP version at all ? i would suggest to use the RDF file.
    regards,
    the oracle reports team --pw                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Info Records Per Material Group Standard Report Not Running at All.

    Hi Experts,
    We had a Small problem Where while Running Info Records Per Material Group(T-code ME1W ) Standard Report the Report is not Showing any output in PRD, where else running Info Records Per Material (T-Code ME1M ) Standard Report the Output is getting Displayed.
    Our System is Currently SAP EEC 6.0 & Application Package SAP_APPL is of release 604     & Level 0007, Highest Support Package is SAPKH60407.
    is this Issue covered in Some OSS Note?
    Thanks & Regards
    Priyesh Shah

    Hi,
    The info-records for the materials which appears in the standard report ME1M/ME1L is different from the one which appear in ME1W.
    If you try with the material groups of the ME1L or ME1M info-records it wont be displayed in ME1W.
    ME1W will display only the info-records which are created @ material group level.
    i.e. try to create a new info-record using ME11 without entering material, in the general data screen you have to enter the material group & other parameters.
    Now once you save this info-record,same will appear in ME1W.
    Hope its clear.
    Thanks & Regards,

  • 10g Report not running from Forms if called thru paramform on other domain

    Hi...
    I'm using Dev10g Rel.2....If I call a report with paramform=no and pass it a value from forms then report runs well. but if I call report thru parameter form and pass value from parameter form the report doesn't run with error:
    The webpage cannot be displayed.
    Interesting fact is that If I call the report from a client on same domain as that of Application Server then it runs even thru paramform. I've also entered the application server I.P and name on other domain's client but no way. Can u guess whats the problem there???

    It sounds like a Firewall permissions issue to me. You might want to have your Firewall admin watch the firewall as you run your form to see if the packets are getting intercepted and blocked.
    Hope this helps,
    Craig
    If a response is helpful or correct, please mark it accordingly.

  • Prime Infrastructure 2.2- problems: Wired Detailed Device Inventory report not running / Cisco 5500 WLCs no listed in subgroup

    New installation of Prime Infrastructure 2.2.0 (PI-VA-2.2.0.0.158.ova)
    installed fixes/software/device packs:
    PI 2.2.1 Poodle Fix (installed)
    PI 2.2.1 Maintenance Release (installed,ncs stopped,rebooted)
    Prime Infrastrucutre 2.2 Device Pack 3 (installed,ncs stopped,rebooted)
    Licences installed (ncs stopped,rebooted)
    Added all devices via Bulk Import (Inventory>Device Management>Network Devices)
    Problem 1:
    The Cisco 5500 WLCs are not listed in Inventory>Device Management>Network Devices (see screen shot) but listed under "All Devices"!
    The Cisco 4400 WLCs and the 8500 WLCs are listed within their subgroup.
    Devices are in "Managed State"
    Problem 2: fixed! (Browser issue)
    Problem 3:
    Unable to run "Wired Detailed Device Inventory" report because I get the error message: Failed to run report: Unable to retrieve data for: Chassis Information (if Chassis Information is selected, if System Information is selected I get the error message with ...retrieve data for:System Information)
    All devices do have an "Admin Status = Managed" and the Last Inventory Collections Status = Completed.
    Has anyone the same issues or a tip for me?
    Another topic, the "User Defined Fileds" are not exported when with running a "Device Export" (Inventory > Device Management > Network Devices). ;-(
    BR
    Bastian

    Hallo Bastian,
    I think you still have browser issue, Using IE is still the best with Prime.
    I have exactly same prime 2.2 and installed fixes/software/device packs.
    I have no problem I can see all views. I use now IE 11, with Chrome 42.0.2311.90 and firefox 37.01 I have problems too with lots of views. You have not tell what browser + version you have.
    Since you have same prime 2.2 as me. I have other problems, can you check yours?
    Can you see a functional CLI template page at Configuration > Templates > Features & Technologies:
    https://supportforums.cisco.com/discussion/12481691/can-cisco-prime-22-still-do-simple-ad-hoc-deployment-job-cli-over-all-switches
    Do you have SNMP Connectivity Failed while Verify Credentials  has no errors all green and checked. 
    https://supportforums.cisco.com/discussion/12494786/snmp-request-exceeds-internal-data-buffer-512-bytes-prime-22-asa-5545

  • Reports not Running. RAS is erroring CORBA communication error

    Hi, One of the boxi XI R2 SP3 server in cluster is not working correctly. WHen I stopped all other servers and ran report on this server and I got the below error message.
    Can someone help on this issue. Our Crystal reports are taking forever to run.
    The error message in crystalras_2009211_132028_1872_ras.log is given below.
    Thanks,
    Kalpesh
    =========================================================================
    ErrorLog 2009  2 11  8:31:00.396 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:31:01.396 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:31:22.490 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:31:23.490 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:31:44.585 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:31:45.585 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:32:06.789 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:32:07.789 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:32:28.774 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:32:29.774 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:32:50.853 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:32:51.853 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:33:12.838 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:33:13.838 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:33:34.948 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:33:35.948 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:33:57.152 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:33:58.152 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:34:19.246 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:34:20.246 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:34:41.434 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:34:42.434 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:35:03.544 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:35:04.544 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:35:25.514 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:35:26.514 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:35:47.499 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:35:48.499 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:36:09.609 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:36:10.609 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:36:31.578 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:36:32.578 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:36:53.563 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:36:54.563 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:37:15.658 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:37:16.658 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:37:37.643 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:37:38.643 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:37:55.581 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:37:56.581 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:37:59.628 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:38:00.628 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:38:17.582 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:38:18.582 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:38:21.738 1872 7392 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:38:39.567 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:38:40.567 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:39:01.755 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:39:02.755 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:39:23.865 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:39:24.865 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:39:45.944 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:39:46.944 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:40:08.054 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:40:09.054 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ErrorLog 2009  2 11  8:40:30.023 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:419): CORBA communication failure: reason[error number WSAETIMEDOUT] minor[1330577418] reqType[154] agentId=[""]
    ErrorLog 2009  2 11  8:40:31.023 1872 7944 (.\dts\corbaclientrequestcommadapter.cpp:320): Resending result to client. reqType=154 agentId="" nRetryInterval=1000
    ====================================================

    Hello Pandeyji,
    We have a similar problem. Can you please let us know, on which server the ports are opened. We appreciate your immediate response.
    Thanks.
    Madhu Allani

  • CR runtime 13: report not displayed in production environment

    Hi, i've the following situation..
    i'm developing on VS2010 a webapp using the final release of CRfVS2010 (s.o. is Windows 7 Ent x64) without any problems.
    Today i'm trying to test the app on a server (Windows Server 2003 with CR2008 redist already installed for a previous site) but i've some problems.
    First i've installed .net framework 4, then CRRuntime_32bit_13_0.msi, all installation ok.
    When i published the app (file system mode), the first time an error occurred, because was impossible to load log4net assembly. I've solved it inserting a new reference and setting 'copy locally' for publishing.
    Next error is that the report is not displayed
    I've copied from wwwroot the aspnet_client folder into my webapp folder.
    I've copied the report on the server into the right folder which i've granted everyone access to read and write.
    No report displayed
    I don't know to do because in the iis log or in the windows events i'm not found errors. I've tried to make a remote debug but the environment is not able to connect to the right process...
    Any ideas? Thanks al lot

    i've installed as domain admin (member of Administrators), everyone option were not present..
    i see in C:\Programmi\SAP BusinessObjects\Crystal Reports for .NET Framework 4.0\Common these folders
    Crystal Reports 2011\crystalreportviewers
    SAP BusinessObjects Enterprise XI 4.0\win32_x86
    it's all right?
    now i've uninstalled the package and launched installation with cl command
    msiexec /i crruntime_32bit_13_0.msi /Lime c:\temp\logfile.txt
    i don't see errors, the last messages are:
    Action start 9.37.51: CreateFolders.
    Action ended 9.37.51: CreateFolders. Return value 0.
    Action start 9.37.51: MoveFiles.
    Action ended 9.37.51: MoveFiles. Return value 1.
    Action start 9.37.51: InstallFiles.
    Action ended 9.37.53: InstallFiles. Return value 1.
    Action start 9.37.53: DuplicateFiles.
    Action ended 9.37.53: DuplicateFiles. Return value 1.
    Action start 9.37.53: PatchFiles.
    Action ended 9.37.53: PatchFiles. Return value 0.
    Action start 9.37.53: BindImage.
    Action ended 9.37.53: BindImage. Return value 1.
    Action start 9.37.53: InstallExecute.
    Action ended 9.39.39: InstallExecute. Return value 1.
    Action start 9.39.39: CreateShortcuts.
    Action ended 9.39.39: CreateShortcuts. Return value 0.
    Action start 9.39.39: RegisterClassInfo.
    Action ended 9.39.39: RegisterClassInfo. Return value 0.
    Action start 9.39.39: RegisterExtensionInfo.
    Action ended 9.39.39: RegisterExtensionInfo. Return value 0.
    Action start 9.39.39: RegisterProgIdInfo.
    Action ended 9.39.39: RegisterProgIdInfo. Return value 0.
    Action start 9.39.39: RegisterMIMEInfo.
    Action ended 9.39.39: RegisterMIMEInfo. Return value 0.
    Action start 9.39.39: WriteRegistryValues.
    Action ended 9.39.39: WriteRegistryValues. Return value 1.
    Action start 9.39.39: WriteIniValues.
    Action ended 9.39.39: WriteIniValues. Return value 1.
    Action start 9.39.39: WriteEnvironmentStrings.
    Action ended 9.39.39: WriteEnvironmentStrings. Return value 1.
    Action start 9.39.39: RegisterFonts.
    Action ended 9.39.39: RegisterFonts. Return value 1.
    Action start 9.39.39: InstallODBC.
    Action ended 9.39.39: InstallODBC. Return value 0.
    Action start 9.39.39: RegisterTypeLibraries.
    Action ended 9.39.39: RegisterTypeLibraries. Return value 0.
    Action start 9.39.39: SelfRegModules.
    Action ended 9.39.39: SelfRegModules. Return value 1.
    Action start 9.39.39: RegisterComPlus.
    Action ended 9.39.39: RegisterComPlus. Return value 0.
    Action start 9.39.39: InstallServices.
    Action ended 9.39.39: InstallServices. Return value 1.
    Action start 9.39.39: StartServices.
    Action ended 9.39.39: StartServices. Return value 1.
    Action start 9.39.39: RegisterUser.
    Action ended 9.39.39: RegisterUser. Return value 1.
    Action start 9.39.39: RegisterProduct.
    Action ended 9.39.40: RegisterProduct. Return value 1.
    Action start 9.39.40: PublishComponents.
    Action ended 9.39.40: PublishComponents. Return value 0.
    Action start 9.39.40: MsiPublishAssemblies.
    Action ended 9.39.53: MsiPublishAssemblies. Return value 1.
    Action start 9.39.53: PublishFeatures.
    Action ended 9.39.53: PublishFeatures. Return value 1.
    Action start 9.39.53: PublishProduct.
    Action ended 9.39.53: PublishProduct. Return value 1.
    Action start 9.39.53: InstallFinalize.
    Action ended 9.41.29: InstallFinalize. Return value 1.
    Action ended 9.41.29: INSTALL. Return value 1.
    Action ended 9.41.29: ExecuteAction. Return value 1.
    Action start 9.41.29: Exit_Dialog.
    Action ended 9.44.03: Exit_Dialog. Return value 1.
    Action ended 9.44.03: INSTALL. Return value 1.
    === Logging stopped: 30/11/2010  9.44.03 ===
    MSI (c) (9C:2C) [09:44:03:143]: Product: SAP Crystal Reports runtime engine for .NET Framework 4 (32-bit) -- Installation operation completed successfully.
    -> no success, same behaviour again
    [quote]The install log for CRVS2010 shows we do install version 2.1.10[quote]
    i don't understand this

  • Report not running "session expired error"

    while trying to run a query...its not opening and showing "session expired error after 30 mts.
    how to rectify it

    hi devi,
    use the following links
    Error msg in BW after session timeout
    Retain hierarchy node value on selection screen during execution of report
    with hopes
    Raja Singh

  • Crystal reports not running in infoview

    Hi ,
    Created a report using excel as datasource via odbc DSN. Report runs fine in Crystal but gives an error in Infoview ." database logon information is either incomplete or incorrect"
    Have tried every possible way to make it workou but in vain.
    Pls suggest any solutions.

    Hi Stratos, In your previous reply below
    "You have to create the DSN to your excel file also on your BOBJ server as you did on your local workstation. When CR runs in the InfoView it will try to locate the DSN on the BOBJ server. In order to do this correctly please use odbcad32.exe.
    Importing the Excel file in the BO repository does not really help. You have to consider to copy the Excel file on your BOBJ server or copy it in a shared drive (which is accessible from both your local workstation and the BOBJ server).
    Regards,
    Stratos"
    I am assuming these are two different methods: In 1st one i will need to make connection to ODBC and in second one it will be Access/Excel (in crystal)
    Am I right?

Maybe you are looking for