Modify Run Report Solution

After I read some messages already posted discussing the run_report issue, I changed the old solution to a new one, through which I execute tho following steps:
1_ at run command prompt I excute the following one: rwserver - install server = rep_server
2_ I open the cgicmd.dat file and at the end if this file I added the following row:
rep_key: userid=meteo/meteo@dbrc[email][email] server=rep_ncragra-as %* %P
3_ i have developped a reprot
called "Res_R1_SaleOrdersPerCust.rdf" using report9i
builder and i compiled, saved it with an extention ".rdf " without error.
4_ i write a PLSQL trigger at button level called(INVOICEPUSH) through which i call the report as follow:
RUN_REPORT('RES_R1_SALEORDERSPERCUST', 'C');
This procedure has the fellowing code:
PROCEDURE run_report(p_rpt_name varchar2, p_dest varchar2 default 'C')
IS
v_url varchar2(2000);
v_cur_form_name varchar2(100);
v_length number;
vPath_Sep char(1);
v_rpt_name_with_path varchar2(500);
v_rpt_format varchar2(50):='pdf'; -- Example: pdf,html,xml etc.
v_rpt_key varchar2(50):='Rep_key';
v_para_form varchar2(3) :='NO'; -- YES/NO
v_dest varchar2(20);
v_rpt_builder varchar2(200);
v_rpt_server varchar2(50);
BEGIN
--------Report_Path -------------
v_cur_form_name:=get_application_property(current_form);
if get_application_property(operating_system) in ('MSWINDOWS', 'MSWINDOWS32', 'WIN32COMMON') then
vPath_Sep := '\';
else
vPath_Sep := '/';
end if;
v_length:=instr(v_cur_form_name,vPath_Sep,-1);
--Getting Current Report Name With Path.
v_rpt_name_with_path:=substr(v_cur_form_name,1,v_length)||p_rpt_name;
------Report Destination-----
v_dest:=upper(p_dest);
if v_dest ='C' then
v_dest:='cache';
elsif v_dest='P' then
v_dest:='printer';
elsif v_dest='M' then
v_dest:='mail';
elsif v_dest='F' then
v_dest:='file';
end if;
-------Start Call Report----------
v_url:= '/reports/rwservlet?' ||v_rpt_key
||'&desformat=' ||v_rpt_format
||'&destype=' ||v_dest
||'&paramform=' ||v_para_Form
||'&report=' ||v_rpt_name_with_path;
web.show_document(v_url, '_blank');
--------End Call Report---------
exception
when others then null;
end;
5_ in regedit I searched for:
REPORTS_PATH registry and add the following path: "D:\Dev9i\forms90\Meteo_Projet"
REPORTS_RESOURCE D registry and add the following path: "D:\Dev9i\forms90\Meteo_Projet"
6_ finally
i try to run this report within form9i form builder through which i create a form called (G7_F3_REP_CUSTINV.fmb);
when i click at the button to load my report, my Internet Explorer is running with a blank page having url as follow:
http://wissam-bdd68698:8888/reports/rwservlet?Rep_key&desformat=pdf&destype=cache&paramform=NO&report=D:\Dev9i\forms9 0\Meteo_Projet\RES_R1_SALEORDERSPERCUST
still my report is not displayed!!!!! so idont know what went wrong with me!!! anything else I must do??? Or any of these steps is wrong or missing something?? please any other suggestions???
7_ hint :
- in this url Rep_key is not replces by it's value, aleardy assigned in cgicmd.dat by
rep_key: userid=meteo/meteo@dbrc[email][email] server=rep_ncragra-as %* %P
- My technical environment is Winxp, dev9i AS vers9.0.2, Jinit vers1.3.1.9, OracleDB9i.
- my report 'RES_R1_SALEORDERSPERCUST'.rdf is saved in "D:\Dev9i\forms90\Meteo_Projet"
where I put all my live files(fmb, rdf,..)

Hi Mr. again I appreciate a lot your support, And I m very grateful for your help.
1-
About My technical environment as i said before, it‘s not complicated, it’s very simple:
1.     Windows XP, Service Pack 3
2.     Oracle9i Enterprise Edition Release 9.2.0.1.0
3.     OC4J
4.     Internet Explorer version 6.0.2
5.     Oracle Forms Builder [32 Bit] Version 9.0.2.9.0 / Oracle Report Builder 9.0.2.0.3
6.     Jinit vers1.3.1.9,
About my network also it’s not a complicate one; all these software are installed in the same platform (PC)
2-
I followed your recommendation; I do not alter the cgicmd.dat
3-
About Rep Server status page (showjobs)
I opened the browser and I entered the following URL:
http://wissam-bdd68698:8888/reports/rwservlet/showjobs?server=repserver90
Then I have got a blank page, and
the Report Server Queue Status page is not displayed.
recently running jobs, red X or blue check mark are not shown.
4-
I review my report by running it through Oracle Report Builder. And as I said before, it goes well without any error
5-
When I close the browser and OC4J; a Notepad (hs_err_pid488.txt) file is created. this file has the following content:
An unexpected exception has been detected in native code outside the VM.
Unexpected Signal : EXCEPTION_ACCESS_VIOLATION occurred at PC=0x65553878
Function name=Java_oracle_reports_engine_EngineImpl_CGetEnv
Library=D:\Dev9i\bin\rw90.dll
Current Java thread:
at oracle.reports.engine.EngineImpl.CGetEnv(Native Method)
at oracle.reports.engine.EngineImpl.getEnvs(EngineImpl.java:453)
at oracle.reports.engine.EngineClassPOATie.getEnvs(EngineClassPOATie.java:152)
at oracle.reports.engine.EngineClassPOA._invoke(EngineClassPOA.java:205)
at oracle.reports.engine.EngineClassPOA._invoke(EngineClassPOA.java:62)
at com.inprise.vbroker.poa.POAImpl.invoke(POAImpl.java:2355)
at com.inprise.vbroker.poa.ActivationRecord.invoke(ActivationRecord.java:104)
at com.inprise.vbroker.GIOP.GiopProtocolAdapter.doRequest(GiopProtocolAdapter.java:492)
at com.inprise.vbroker.IIOP.ServerProtocolAdapter.doRequest(ServerProtocolAdapter.java:64)
at com.inprise.vbroker.GIOP.GiopProtocolAdapter.dispatchMessage(GiopProtocolAdapter.java:653)
at com.inprise.vbroker.orb.TPDispatcherImpl$TPDispatcher.run(TPDispatcherImpl.java:99)
at com.inprise.vbroker.orb.ThreadPool$PoolWorker.run(ThreadPool.java:76)
Dynamic libraries:
0x00400000 - 0x00405000      D:\Dev9i\jdk\jre\bin\javaw.exe
0x7C900000 - 0x7C9AF000      C:\WINDOWS\system32\ntdll.dll
0x7C800000 - 0x7C8F6000      C:\WINDOWS\system32\kernel32.dll
0x61750000 - 0x617B2000      C:\WINDOWS\SYSTEM32\SYSFER.DLL
0x5B860000 - 0x5B8B5000      C:\WINDOWS\system32\NETAPI32.dll
0x77DD0000 - 0x77E6B000      C:\WINDOWS\system32\ADVAPI32.dll
0x77E70000 - 0x77F02000      C:\WINDOWS\system32\RPCRT4.dll
0x77FE0000 - 0x77FF1000      C:\WINDOWS\system32\Secur32.dll
0x77C10000 - 0x77C68000      C:\WINDOWS\system32\msvcrt.dll
0x7E410000 - 0x7E4A1000      C:\WINDOWS\system32\USER32.dll
0x77F10000 - 0x77F59000      C:\WINDOWS\system32\GDI32.dll
0x76390000 - 0x763AD000      C:\WINDOWS\system32\IMM32.DLL
0x629C0000 - 0x629C9000      C:\WINDOWS\system32\LPK.DLL
0x74D90000 - 0x74DFB000      C:\WINDOWS\system32\USP10.dll
0x6D420000 - 0x6D4F0000      D:\Dev9i\jdk\jre\bin\hotspot\jvm.dll
0x76B40000 - 0x76B6D000      C:\WINDOWS\system32\WINMM.dll
0x6D220000 - 0x6D227000      D:\Dev9i\jdk\jre\bin\hpi.dll
0x6D3B0000 - 0x6D3BD000      D:\Dev9i\jdk\jre\bin\verify.dll
0x6D250000 - 0x6D266000      D:\Dev9i\jdk\jre\bin\java.dll
0x6D3C0000 - 0x6D3CD000      D:\Dev9i\jdk\jre\bin\zip.dll
0x6D340000 - 0x6D348000      D:\Dev9i\jdk\jre\bin\net.dll
0x71AD0000 - 0x71AD9000      C:\WINDOWS\system32\WSOCK32.dll
0x71AB0000 - 0x71AC7000      C:\WINDOWS\system32\WS2_32.dll
0x71AA0000 - 0x71AA8000      C:\WINDOWS\system32\WS2HELP.dll
0x71A50000 - 0x71A8F000      C:\WINDOWS\System32\mswsock.dll
0x76F20000 - 0x76F47000      C:\WINDOWS\system32\DNSAPI.dll
0x76FB0000 - 0x76FB8000      C:\WINDOWS\System32\winrnr.dll
0x76F60000 - 0x76F8C000      C:\WINDOWS\system32\WLDAP32.dll
0x662B0000 - 0x66308000      C:\WINDOWS\system32\hnetcfg.dll
0x71A90000 - 0x71A98000      C:\WINDOWS\System32\wshtcpip.dll
0x6D240000 - 0x6D246000      D:\Dev9i\jdk\jre\bin\ioser12.dll
0x76FC0000 - 0x76FC6000      C:\WINDOWS\system32\rasadhlp.dll
0x65050000 - 0x6568C000      D:\Dev9i\bin\rw90.dll
0x64AB0000 - 0x64AC3000      D:\Dev9i\bin\ZRC90.dll
0x610A0000 - 0x6113F000      D:\HOME9i\bin\oracore9.dll
0x612A0000 - 0x61319000      D:\HOME9i\bin\oranls9.dll
0x613A0000 - 0x613B1000      D:\HOME9i\bin\oraunls9.dll
0x774E0000 - 0x7761D000      C:\WINDOWS\system32\ole32.dll
0x61400000 - 0x6142C000      D:\HOME9i\bin\oranl9.dll
0x61480000 - 0x61534000      D:\HOME9i\bin\oran9.dll
0x616B0000 - 0x616C8000      D:\HOME9i\bin\orancrypt9.dll
0x09490000 - 0x094C6000      D:\HOME9i\bin\oranro9.dll
0x615A0000 - 0x61629000      D:\HOME9i\bin\orannzsbb9.dll
0x60300000 - 0x60557000      D:\HOME9i\bin\orageneric9.dll
0x094D0000 - 0x09560000      D:\HOME9i\bin\oracommon9.dll
0x60600000 - 0x60784000      D:\HOME9i\bin\oraclient9.dll
0x60800000 - 0x60806000      D:\HOME9i\bin\oravsn9.dll
0x60810000 - 0x60816000      D:\HOME9i\bin\orawtc9.dll
0x61960000 - 0x61971000      D:\HOME9i\bin\oranldap9.dll
0x62000000 - 0x62024000      D:\HOME9i\bin\oraldapclnt9.dll
0x77120000 - 0x771AB000      C:\WINDOWS\system32\OLEAUT32.dll
0x60A00000 - 0x60D13000      D:\HOME9i\bin\orapls9.dll
0x62500000 - 0x62507000      D:\HOME9i\bin\oraslax9.dll
0x61350000 - 0x61360000      D:\HOME9i\bin\orasnls9.dll
0x62600000 - 0x62675000      D:\HOME9i\bin\orasql9.dll
0x62FC0000 - 0x6303D000      D:\HOME9i\bin\oraxml9.dll
0x09560000 - 0x09571000      C:\WINDOWS\system32\MSVCIRT.dll
0x630F0000 - 0x63110000      D:\HOME9i\bin\oraxsd9.dll
0x617C0000 - 0x617C6000      D:\HOME9i\bin\oranhost9.dll
0x617D0000 - 0x617D6000      D:\HOME9i\bin\oranoname9.dll
0x616A0000 - 0x616A6000      D:\HOME9i\bin\orancds9.dll
0x61820000 - 0x61827000      D:\HOME9i\bin\orantns9.dll
0x64000000 - 0x64007000      D:\HOME9i\bin\oranms.dll
0x64020000 - 0x64030000      D:\HOME9i\bin\oranmsp.dll
0x62300000 - 0x6233E000      D:\HOME9i\bin\ORATRACE9.dll
0x73000000 - 0x73026000      C:\WINDOWS\system32\WINSPOOL.DRV
0x763B0000 - 0x763F9000      C:\WINDOWS\system32\comdlg32.dll
0x5D090000 - 0x5D12A000      C:\WINDOWS\system32\COMCTL32.dll
0x7C9C0000 - 0x7D1D7000      C:\WINDOWS\system32\SHELL32.dll
0x77F60000 - 0x77FD6000      C:\WINDOWS\system32\SHLWAPI.dll
0x10000000 - 0x1004C000      D:\Dev9i\bin\CA90.dll
0x64E30000 - 0x64E94000      D:\Dev9i\bin\UIREM90.DLL
0x09580000 - 0x095B2000      D:\Dev9i\bin\ROS90.DLL
0x61D00000 - 0x61D10000      D:\Dev9i\bin\UTL90.DLL
0x61F00000 - 0x61F07000      D:\Dev9i\bin\UTC90.dll
0x64CE0000 - 0x64DBB000      D:\Dev9i\bin\UIW90.dll
0x61E00000 - 0x61E09000      D:\Dev9i\bin\UTJ90.dll
0x64F10000 - 0x64F20000      D:\Dev9i\bin\UIIM90.dll
0x64ED0000 - 0x64EF6000      D:\Dev9i\bin\UIOLE90.dll
0x679C0000 - 0x679EC000      D:\Dev9i\bin\mmc90.dll
0x64F50000 - 0x64F66000      D:\Dev9i\bin\UICC90.dll
0x67820000 - 0x67853000      D:\Dev9i\bin\MMI90.dll
0x67680000 - 0x676A3000      D:\Dev9i\bin\mms90.dll
0x674E0000 - 0x674F2000      D:\Dev9i\bin\mmv90.dll
0x73B50000 - 0x73B67000      C:\WINDOWS\system32\AVIFIL32.dll
0x77BE0000 - 0x77BF5000      C:\WINDOWS\system32\MSACM32.dll
0x75A70000 - 0x75A91000      C:\WINDOWS\system32\MSVFW32.dll
0x67340000 - 0x67373000      D:\Dev9i\bin\mmw90.dll
0x095C0000 - 0x0978E000      D:\Dev9i\bin\DE90.dll
0x60FA0000 - 0x60FAF000      D:\HOME9i\bin\oraplc9.dll
0x60E00000 - 0x60EDD000      D:\HOME9i\bin\oraplp9.dll
0x64FB0000 - 0x64FDA000      D:\Dev9i\bin\UCOL90.DLL
0x663C0000 - 0x663C7000      D:\Dev9i\bin\D2SC90.DLL
0x65EF0000 - 0x65F0E000      D:\Dev9i\bin\dfc90.dll
0x09790000 - 0x097AE000      D:\Dev9i\bin\nn90.dll
0x65B10000 - 0x65B1C000      D:\Dev9i\bin\obs90.dll
0x097B0000 - 0x097DF000      D:\Dev9i\bin\rws90.dll
0x64AD0000 - 0x64C06000      D:\Dev9i\bin\VGS90.dll
0x773D0000 - 0x774D3000      C:\WINDOWS\WinSxS\x86_Microsoft.Windows.Common-Controls_6595b64144ccf1df_6.0.2600.5512_x-ww_35d4ce83\comctl32.dll
0x76C90000 - 0x76CB8000      C:\WINDOWS\system32\imagehlp.dll
0x59A60000 - 0x59B01000      C:\WINDOWS\system32\DBGHELP.dll
0x77C00000 - 0x77C08000      C:\WINDOWS\system32\VERSION.dll
0x76BF0000 - 0x76BFB000      C:\WINDOWS\system32\PSAPI.DLL
Local Time = Tue Sep 21 22:02:26 2010
Elapsed Time = 143
# The exception above was detected in native code outside the VM
# Java VM: Java HotSpot(TM) Client VM (1.3.1_02-b02 mixed mode)
Edited by: user12923153 on Sep 21, 2010 9:43 PM

Similar Messages

  • WIJ 20002 error on long running reports

    When trying to run a long running report, an error message is received .
    Quote:
    *"The Web Intelligence Java Report Panel cannot connect to the server. Close
    the report panel and try to connect again or see your BusinessObjects
    administrator. (Error: WIJ 20002)"*
    What happens next is you are advised to "close" (twice) and are then advised to close this window.
    If you select Details on the first error message:
    Server: https://test.i3access.iowa.gov:443/desktoplaunch/InfoView/CrystalEnterprise_Webi/cdzServlet?
    java.lang.RuntimeException: java.io.IOException: Server returned HTTP response code: 502 for URL: https://test.i3access.iowa.gov:443/desktoplaunch/InfoView/CrystalEnterprise_Webi/cdzServlet
         at sun.net.www.protocol.http.HttpURLConnection.getInputStream(Unknown Source)
         at sun.net.www.protocol.https.HttpsURLConnectionImpl.getInputStream(Unknown Source)
         at com.businessobjects.wp.cpi.CPIConnection.postRequest(CPIConnection.java:437)
         at com.businessobjects.wp.xml.XMLViaHttp.loadScript(XMLViaHttp.java:144)
         at com.businessobjects.wp.xml.XMLViaHttp.getPromptList(XMLViaHttp.java:1284)
         at com.businessobjects.wp.xml.XMLLoader.getPromptList(XMLLoader.java:279)
         at com.businessobjects.wp.om.OMQuery.loadPromptsAndContexts(OMQuery.java:359)
         at com.businessobjects.wp.om.OMQuery.getActiveContextCount(OMQuery.java:384)
         at com.businessobjects.wp.tc.query.TCQueryPropertie.buildQueryContextFromUI(TCQueryPropertie.java:496)
         at com.businessobjects.wp.tc.query.TCQueryTab.buildQueryContextFromUI(TCQueryTab.java:846)
         at com.businessobjects.wp.tc.query.TCQueryTab.modifyQueryProperties(TCQueryTab.java:638)
         at com.businessobjects.wp.tc.query.TCQueryTabManager.modifyQueryTabs(TCQueryTabManager.java:306)
         at com.businessobjects.wp.tc.query.TCQueryPanel.modifyQueryTabs(TCQueryPanel.java:310)
         at com.businessobjects.wp.tc.query.TCQueryPanel.load(TCQueryPanel.java:383)
         at com.businessobjects.wp.tc.TCMainPanel.switchToQueryPanel(TCMainPanel.java:563)
         at com.businessobjects.wp.tc.TCMainPanel.actionPerformed(TCMainPanel.java:506)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at com.jidesoft.plaf.basic.BasicJideButtonListener.mouseReleased(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
         at com.businessobjects.wp.cpi.CPIConnection.postRequest(CPIConnection.java:441)
         at com.businessobjects.wp.xml.XMLViaHttp.loadScript(XMLViaHttp.java:144)
         at com.businessobjects.wp.xml.XMLViaHttp.getPromptList(XMLViaHttp.java:1284)
         at com.businessobjects.wp.xml.XMLLoader.getPromptList(XMLLoader.java:279)
         at com.businessobjects.wp.om.OMQuery.loadPromptsAndContexts(OMQuery.java:359)
         at com.businessobjects.wp.om.OMQuery.getActiveContextCount(OMQuery.java:384)
         at com.businessobjects.wp.tc.query.TCQueryPropertie.buildQueryContextFromUI(TCQueryPropertie.java:496)
         at com.businessobjects.wp.tc.query.TCQueryTab.buildQueryContextFromUI(TCQueryTab.java:846)
         at com.businessobjects.wp.tc.query.TCQueryTab.modifyQueryProperties(TCQueryTab.java:638)
         at com.businessobjects.wp.tc.query.TCQueryTabManager.modifyQueryTabs(TCQueryTabManager.java:306)
         at com.businessobjects.wp.tc.query.TCQueryPanel.modifyQueryTabs(TCQueryPanel.java:310)
         at com.businessobjects.wp.tc.query.TCQueryPanel.load(TCQueryPanel.java:383)
         at com.businessobjects.wp.tc.TCMainPanel.switchToQueryPanel(TCMainPanel.java:563)
         at com.businessobjects.wp.tc.TCMainPanel.actionPerformed(TCMainPanel.java:506)
         at javax.swing.AbstractButton.fireActionPerformed(Unknown Source)
         at javax.swing.AbstractButton$Handler.actionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.fireActionPerformed(Unknown Source)
         at javax.swing.DefaultButtonModel.setPressed(Unknown Source)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(Unknown Source)
         at com.jidesoft.plaf.basic.BasicJideButtonListener.mouseReleased(Unknown Source)
         at java.awt.AWTEventMulticaster.mouseReleased(Unknown Source)
         at java.awt.Component.processMouseEvent(Unknown Source)
         at javax.swing.JComponent.processMouseEvent(Unknown Source)
         at java.awt.Component.processEvent(Unknown Source)
         at java.awt.Container.processEvent(Unknown Source)
         at java.awt.Component.dispatchEventImpl(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.processMouseEvent(Unknown Source)
         at java.awt.LightweightDispatcher.dispatchEvent(Unknown Source)
         at java.awt.Container.dispatchEventImpl(Unknown Source)
         at java.awt.Component.dispatchEvent(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForFilters(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForFilter(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    Please let me know what the solution is.

    Matt,
    A namesake of yours is my client for this issue.
    Coming to the problem, the customer says there is proxy configured between HTTP server and WebSphere. This proxy server times out for long running reports. If the HTTPServer is bypassed, things work fine.
    A colleague of mine opened a case with BOBJ. I can get you the case# if you need it. We got this reply:
    From: Takano, Hitomi
    Sent: Tuesday, November 04, 2008 10:26 AM
    Hi Matt,
    I was away for the last two days, so I couldn't reply to you sooner.
    Extending the timeout setting from Webi and Infoview in BOXI R2 will not
    make the long running reports work as your proxy setting at the lower
    layer than BOXI just allows 5 minutes and after that the connection will
    be cancelled by the proxy. I'm not sure why this setting was effective
    for https only or timeout out after 2 min. This is out of scope of BOXI
    R2 and your network admin would be the best person to handle. You were
    getting 502 error in Java Report Panel. I googled with "502 error and
    ProxyTimeout", and I got the some articles returned which say  when
    backend doesn't answer on requests(because it timed out), it returns to
    a client an error 502.
    I'll close this thread as the n/w admin at the client are working things out.
    Thanks for your support.

  • Running reports on web browser

    We here in HCL Technologies are in the process of deploying Dev
    2000 applications on Oracle Web Application Server 3.0 installed
    on Window NT 4.0 Server.
    I have couple of problems which i am reporting to you & i would
    like to seek solution for the same.
    1. I am able to create/configure report cartidge and to run
    simple reports giving output file of size 20kb. The report is
    running & getting displayed on the web browser.
    But, if the report output is somewhere in the range of 500 or
    more KB, than it is observed that full report output file is
    generated in the cache directory, but it is not displayed on the
    screen, instead a error "Internal error Try Again " is displayed.
    Here are some specifications which might help you resolve this
    problem
    (A) We are using destype=cache, desformat=html
    (B) Our NT Server is having a memory (RAM) of 96 MB.
    2. Before running the report we want to display the parameter
    form for our report, so that the user can input the required
    variable parameters. But, instead it is allowing to pass the
    parameters through our URL, which is not desirable.
    Please, help us in resolving these problems at the earliest.
    Awaiting your response.
    Regards,
    Navneet
    null

    Navneet,
    I can't help with problem 1, but I cna help with problem 2. If
    you are using html files with links to the reports, you can use
    the form tag to create the equivalent of the parameter form.
    Example:
    <form action="http://mot.com/r30ows">
    Select the Vendor for which you would like to see contacts for
    <input type="hidden" name="server" value="repserver">
    <input type="hidden" name="report" value="contact">
    <input type="hidden" name="userid" value="">
    <input type="hidden" name="destype" value="cache">
    <input type="hidden" name="desformat" value="html">
    <select name="v_id">
    <option value="1">Computer Discount Warehouse</option>
    <option value="2">Micro Warehouse</option>
    <option value="3">CompUSA</option>
    <option value="4">Oracle Corp.</option>
    </select>
    <input type="submit" value="Run Report">
    </form>
    V_id in this example is a user defined parameter.
    Hope this has helped you.
    Eric Laabs
    Navneet (guest) wrote:
    : We here in HCL Technologies are in the process of deploying Dev
    : 2000 applications on Oracle Web Application Server 3.0
    installed
    : on Window NT 4.0 Server.
    : I have couple of problems which i am reporting to you & i would
    : like to seek solution for the same.
    : 1. I am able to create/configure report cartidge and to run
    : simple reports giving output file of size 20kb. The report is
    : running & getting displayed on the web browser.
    : But, if the report output is somewhere in the range of 500 or
    : more KB, than it is observed that full report output file is
    : generated in the cache directory, but it is not displayed on
    the
    : screen, instead a error "Internal error Try Again " is
    displayed.
    : Here are some specifications which might help you resolve this
    : problem
    : (A) We are using destype=cache, desformat=html
    : (B) Our NT Server is having a memory (RAM) of 96 MB.
    : 2. Before running the report we want to display the parameter
    : form for our report, so that the user can input the required
    : variable parameters. But, instead it is allowing to pass the
    : parameters through our URL, which is not desirable.
    : Please, help us in resolving these problems at the earliest.
    : Awaiting your response.
    : Regards,
    : Navneet
    null

  • Long Running Reports

    I'm now writing some reports that are slow running. I've tuned the sql, however because the volume of data being returned and the complexity of the report queries the reports will likely never run faster then ~30 seconds.
    I'm using the ApEx advanced reporting (BIP) and ApEx version 3.0.1.
    What are some thoughts on how to best implement long running reports?
    Thanks,
    Todd
    Message was edited by:
    tfa

    Hi Dimitri,
    You asked...
    What happens when you run the report directly from BI
    Publisher?There are several reports from one application. I've run the report queries in OEM SQL Tuning Advisor and tuned them.
    I have not seen a noticeable difference in run times between submitting the reports from APEX or running them from BIP. The queries for these reports have the same run time when run through SQL Developer.
    The slow run time of the report queries can be traced to poor table design. The application is a bit of legacy application with the front end now being rewritten using APEX. The poor table design issues are magnified by the volume of data. I have plans to partition one of the transaction tables.
    Prior to rewriting the user interface in APEX the application was written in Oracle Forms. When written in Forms the application was a bolt-on to the Oracle applications. In that environment users could submit reports to the run in the background (via Concurrent Manger) then the report output was viewed later following the completion of the report.
    I'm pursuing a similar solution as the concurrent manager in Oracle applications but available in the APEX, BIP environment. The reports do run between 30 seconds to 1 minute which is to long for the users to wait on the submitting page. Any thoughts on how it is possible to run these long running reports without tying up the user’s page?
    I'll investigate dbms_scheduler and BIP APIs. I know BIP also has a scheduler available but I do not know much about it.
    Thanks,
    Todd

  • 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

  • Page cannot be displayed while  running report in OAS (10.1.2.3)form/report

    Hi All,
    I have a report which take 4 hrs time to execute the report
    If i run this 4 hrs report,the report runs sucessfully when we see in particular
    report server in application server.
    But, we wont get any pop up to open report after executing sucessfully
    at user end, A error message is displayed in only report param page like,
    "The page cannot be displayed"
    I Think only param page is expired but not form session.
    We have also set the parameters like in report/conf/repsername.conf
    engineResponseTimeout=30 and <connection maxConnect="200" idleTimeOut="300">
    Also,In httpd.conf timeout is 3600 and MaxBlockTimeout in web.xml file
    we have set "maxBlockTime" for long running report (4h)
    <init-param>
    <param-name>maxBlockTime</param-name>
    <param-value>12600000</param-value>
    </init-param>
    Please help me out to solve this issue.
    Regards
    Kirana

    I am facing a similar problem. Did you find a solution to this problem?
    Thanks
    Karnail

  • How can we run reports from the front enf of iProcurement...

    Hi Guys,
    I need to create a link to run reports from the front end in iProcurement webpage instead of using apps SRS to run the report...
    help needed...
    thanks
    aman

    Hi Tapashray,
    That was a great help. Thank you so much. A few more clarifications needed sir..
    I refered to a previous link and came to know about a prcedure he followed for a report. So is it the same way that is to be done... I pasted a descr what he said in the thread. In ur solution, you said, have a link bean. what do u mean by that. After i go thru all the steps what this guy told.
    It would be of gr8 help if you kindly look in to this for one more minute sir..
    thanks
    Creating a new report in 11.5.9
    Re: Creating a new report in 11.5.9
    Posted: Mar 11, 2005 7:12 PM in response to: dhergert Reply
    Ok, I was able to figure out the functions that were confusing me. For my own record and for those that do not know, I will list how to create the objects necessary to add a new report to a menu.
    1-Write JSP (should be written just how Oracle writes theirs)
    2-Creat function for the new JSP page as System Administrator responsibility
    3-Use Sys Admin to add the function to a menu somewhere
    4-Using AK Developer responsibility, create an attribute with the label of the attribute being the name of your function you created. Oracle's convention is the name of the attribute has FS in it.
    5-Using AK Developer, lookup the ASF_FUNC_SEC_REG region
    6-Drill down into that regions attributes
    7-Add a your newly created attribute to this region

  • "Failed to open report" error while running reports using Crystal Report

    We have a web application develeoped in ASP.Net, SQL Server 2005 , Crystal Reports 10.0. Sometimes if a large number of users run reports from their individual nodes they receive an error "Failed to open report ", if we restart the IIS they are able to run the reports. In addition to this the users also sometimes get the error "Maximum Report limit attained". Can any one provide me with a solution other than restarting the IIS.

    Hi,
    Use the close and dispose method for Report object. Its a best practice to code also gc.collect for garbage collection.
    It might help you!!
    Regards,
    Amit

  • "Failed to open report" error while running reports

    We have a web application develeoped in ASP.Net, SQL Server 2005 , Crystal Reports 10.0. Sometimes if a large number of users run reports from their individual nodes they receive an error  "Failed to open report ", if we restart the IIS they are able to run the reports. In addition to this the users also sometimes get the error "Maximum Report limit attained". Can any one provide me with a solution other than restarting the IIS.

    Hi Balla
    If you face this issue only while running the reports from a .Net web application, then please post this thread to the sdk development forum.
    You can follow the link below:
    https://www.sdn.sap.com/irj/sdn/businessobjects-sdk-forums
    Thanks

  • Run report cause "The page cannot be displayed"  OR The connection with the

    Hello,
    1. Database oracle 10g R2 on windows 2003 server enterprise edition with SP2
    2. Application Server Oracle 10g R2 on Windows 2003 Server with SP2.
    Problem explanation
    one of our branch which is connected via leased line is unable to run some of the reports if the report have a little more
    data,
    one report i tried its size is almost 900k ( they are using the same line since last three month and they are
    able to run all reports before, bandwidth is 128k), if you run report browser search a little while
    for output then displayed "The page cannot be displayed" if you look at the report log it's finished successfully.
    I try to download the report rather opening in browser it reach to end of in downloading window at the end it display
    this message
    Internet explorer can not download getjobidxxx.xls from oracleaps.domain.com
    The connection with the server was reset.
    I want to mention one more thing there is a ISA server and firewall in between client and Server but its the same condition
    for
    head office client but they are able to run all report with out any error.
    any one have idea??
    Thanks and Regards,
    Khawar

    Hello,
    Thanks for reply, I have posted Service Request to Oracle Metalink and finally resolve the issue, they suggested me the following solution( a note has also been posted in Knowledge Base no. 871016.1 )
    Webcache KeepAlive timeout is reached. (The default value for KeepAlive timeout is 5 seconds)
    Increase the Keepalive time in webcache to a higher value
    **************EOF******************
    Thanks and Regards,
    Khawar

  • Error message when saving an modified XL Reporter in Microsoft Excel

    Dear all
    I have encountered an error message when I tried to save an modified XL report in Excel.
    The error message is:
    An error occurred while trying to save the report definition! Object variable or with Block variable not set.
    The user now is using 200B PL 42 with Microsoft Excel 2003.
    Thanks in advance for advices.
    Thank you.
    Regards,
    Catea k

    Hi Catea k ,
    for thies error Object variable or with Block variable not set
    Please evaluate if OSS notes ##559043, 571831 and 575434 are applicable to your situation
    also check SAP Note 1227475 - Object variable or With block variable not set (processing)
    Note 1132338 - Object variable or with block variable not set
    Note 1180272 - Object variable or with block variable not set
    Note 1100521 - Object variable or With block variable not set[Create Temp T
    refer this thread also
    Object variable not set - Run-time error 91
    Regards
    Abhishek

  • Dataset can not be open error while running report rtcctool

    Hello Experts,
    While running report rtcctool we are gettin following dumps the says
    ABAP runtime errors    DATASET_CANT_OPEN
           Occurred on     05/27/2011 at 10:00:52
    Unable to open file "/usr/sap/B**/DVEBMGS00/sec/SAP_AGS_OLCNT_VERIFY.pse".
    I am aware that the eror is happening because of this file but not sure from where to get this file. Please let me know any of you aware about this.
    Regards
    Yogesh

    Hi all.
    I have the same problem and explore all possible solutions found in this discussion and others without satisfactory result.
    Everything points that may be an inconsistency error external certificate which is in the DB. Anyone know how to fix this.
    Greetings.

  • Running reports stored in the database

    Hi guys,
    Is it possible to have Reports 6i produce reports that are
    stored in the database? Looking at the documentation, it would
    appear the report definition files (RDF) must be stored in the
    filesystem. I don't really want to be handing out filesystem
    access (managing and it) to people - is there a way around this?
    Thanks,
    denty.

    user5780461 wrote:
    Hi,
    Would anyone have any recommendations regrading running reports based on the data stored in an oracle database. We will soon go live with a project using an oracle DB. We do not wish to run reports directly from the production DB as it will impact performance. Have you actually measured the impact? If not, you are just making assumptions that -- lacking any other informatin -- appear to be invalid.
    Is there any recommended method/architecture for reporting suggested by oracle for this type of scenario?
    You make it sound like some unusual scenario. What you've described so far (running reports against an OLTP database) is just bread and butter operations for Oracle.
    One idea is too runs some scripts that will write the data to another database and from there we will runs out reporting queries. Are there any other potential solutions?
    And how does reading the data to insert into some other database cause less contention than reading data for a report?
    >
    Many thanks,
    Ro

  • Report hanging (when try to modify the report)

    Post Author: aneel
    CA Forum: WebIntelligence Reporting
    Hi All,
    This becomes a longlosting issue for me Please anyone look into this.
    I have created one report with 6 global and 3 local filters, 12 local variables.
    When I try to modify the webi report it strucks up and keeps on running continuously with out giving any kind of result.
    Please reply anyone !!!!!!!!!

    Post Author: jsanzone
    CA Forum: WebIntelligence Reporting
    Vinl,
    The WebI (and BOE XI server) is not completely tuned out of the box to support multiple data providers and large data sets.  There are tuning parameters that must be set (and which will cause more memory usage, etc, etc) and must be monitored to expand performance in order to resolve unwanted timeouts.  If you are not the administrator, then you'll have to work with him or her (and possibly open a trouble ticket with tech support for more help, if needed).
    The timeout aspect is frustrating.  We have three servers, development, testing, and production.  The development system is totally off-line and not under any security-lockdown influences.  Testing is our pre-stage and was built by our BI team.  And production is in the server farm built by the Sysadmins.  Of the three servers, only the production server suffers from a two-minute WebI timeout (and Infoview timeouts where the report just spins all day without a response, but in WebI at least we get an ugly "error notice" when the two-minute timeout occurs).  We think that some kind of lockdown was performed on our production server that causes the two-minute timeout for an executing report to occur.  On the one hand it keeps us sharp in not building reports that will make the user wait a long time, and to encourage them to schedule a report through scheduler when it will take longer than two minutes to execute.  On the other hand it can be troublesome to maintain a report that takes so long to run in terms of modifications and corrections.  At times I've had to go into the datawarehouse and rename a production table to something else, then create a mini-version of that production table in order to run the report and modify it (all done in the off-hours of course), and then when done modifying the report, delete the mini-version of the production table and rename the off-named production table back to its original name in order to press on.  The things we gotta do to press on with life....  Good luck, and hang in there Vinl.

  • Problem after run report with spreadsheet

    hi evry one
    ther an a problem after run report with spreadsheet .
    after runing iexplorar open and close fast no thing else
    when i check the job from appserver job success with spreadsheet dis format.
    what shall i do.
    thanks.

    Hello,
    Do you use the Oracle Forms builtin WEB.SHOW_DOCUMENT ?
    If yes , take a look to : "IE7 windows opened and closed immediatly"
    http://www.experts-exchange.com/Software/Internet_Email/Web_Browsers/Internet_Explorer/Q_23304982.html
    You can test the solution suggested :
    We have found the setting that we needed, under the Internet Options
    Security tab, if you select the internet zone, and click the custom level
    button, then scroll down to the Downloads section, the first option is
    Automatic prompting for file downloads, setting this to enable keeps IE 7
    from interfering with this sort of download.
    Regards
    Example with screen shots :
    http://www.celt.iastate.edu/webct/securitysettings.html
    Regards

Maybe you are looking for

  • Multiple select-options in a screen But no screen space

    Dear Experts, I have mutiple select options in a screen, i am finding it a problem to display them all in one screen. it should be done with out any vertical scroll nor horizontol scroll. Awaiting to hear from you all. Regards, Karthik

  • Using WLC in Small business

    Hello, Let me first start out by saying I am new to configuring WLC's. Our small business (5-15 wireless devices + 15ish wired) is trying to use a hand-me-down WLC and AP for our office wifi. We have a WLC2106 directly connected to a 1231G-A-K9 via t

  • Af:tree table populate data with viewobject

    Hi all, I am trying to populate data into af:tree which binds with viewobject. so i create recursive view object using view link. then i populate data into view object programmatically. but i found that those data show as normal table rather than tre

  • What exactly is AirPort Express

    Ok this may sound silly but I've read the apple stores description of AirPort Express and am a bit confused, basically I have a windows desktop at home and also an iBook, my desktop is connected to BTYahoo Broadband via a USB modem my iBook has AirPo

  • Personalization Tables not Updating

    Hi all I am running WLCS/PS with an SQL Server 7.0 Database. I created a personalization portal and then I tried to create a new user in order to modify my portal and this message appeared in my WLCS Dos window Pls see attaches file Thanx for your he