Trace a report

Hi - I'm trying to trace a report using and am getting this error message
MSG-34551: SRW.Trace_Start is deprecated.
I put this in my Before Report Trigger
srw.traceopts.mask := SRW.TRACE_ALL + SRW.TRACE_SQL;
srw.trace_start('c:\trace.txt',srw.trace_append,srw.traceopts);
Any ideas on why this error is occuring? I'm using Report Developer Release 10.2.0.3.0

Still getting that same error message
This is the code I have in my before report trigger-
srw.do_sql('alter session set sql_trace true');
srw.traceopts.mask := SRW.TRACE_ALL + SRW.TRACE_SQL;
srw.trace_start('/download/sreports/trace.dat',srw.trace_append,srw.traceopts);

Similar Messages

  • Crystal Reports "Unknown Source" Stack Trace after report generation

    Getting java.lang.NullPointerException with Crystal ReportViewer.W(UnKnown Source)  stack trace... 
    java.lang.NullPointerException
    at com.crystaldecisions.report.web.viewer.CrystalReportViewer.goto(Unknown Source)
    at com.crystaldecisions.report.web.ServerControl.a(Unknown Source)
    at com.crystaldecisions.report.web.ServerControl.processHttpRequest(Unknown Source)
    at jsp_servlet._crystalviewer.__viewer._jspService(__viewer.java:105)
    We are running in to this issue only after the report is generated and during performing a search or navigating to different page...
    Any help to resolve this will be greately appriciated....
    Thanks
    ND

    The ODBC datasource must be configured as a System datasource.  The database was configured as a User datasource so it was only visible on the local computer.  That's why Business Views Manager could access the database.

  • How to trace deleted report program? Please reply

    Hi everybody,
    I created a report program in local object. It was deleted by some other user. Is it possible to trace who has deleted the custom program. Eagerly waiting for your reply.
    Regards,
    Pulokesh

    hi,
    GO through this link i think it will help u to move further.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a92195a9-0b01-0010-909c-f330ea4a585c

  • DAP Debug trace not reporting all hostscan data

    My users are using Anyconnect 3.1.02040 with hostscan 3.1.02040 and csd 3.6.6228.
    When running debugs from the console, or searching through logs, for some users there is no debug data being generated for the hostscan extensions.
    Normally the debug will generate this:
    DAP: User xxx, Addr x.x.x.x: Session Attribute endpoint.device.protection_extension="3.6.4900.2"
    This is followed by the endpoint.fw, av, as, and av results. About half of the time I do not see these results in the debug.  There are no errors reported.  The DAP policy seems to function properly regardless of this output but this has made it difficult to troubleshoot login issues.  Has anyone else experienced this?
    Thanks.

    So unfortunately, you cannot restrict what is sent. Its an interesting thing though, many people think that the ASA is requesting the info from the device, which is the case if you are looking for specific registry entries or files on the drive, etc. But everything else (AV,AS, Certs, etc) automatically are forwarded to the ASA and then the ASA parses that ouput for the desired parameters. So, unfortunately, no you cannot limit this info. However, you can look at the logs on the local client or you have onesies and twosies that you need to troubleshoot. Trying to go long-term with that type of troubleshooting and with a lot of clients is just not doable.
    So, as for the other questions, there is a kicker to all this. The hostscan information is not retained. Yup you got it, not retained at all. So once that debugging info is parsed, there is no way to go back and run reports on it or to see who has met posture or not. I filed another feature bug with this since the times have really changed and we MUST have this information moving forward. We'll see what they do with that request though as it will take more resources to store and report on that data.
    The conversion from debug to anything is really where you're hosed again like you mentioned. The limiting factor is the debug buffer.
    Heres the thing I've found during a recent large deployment. Cisco hasnt been utilizing the hostscan to the effect where clients are BEGINNING to use this. THere are a ton of little gotchas with their implementation. Things I found are getting better (or at least as I'm told) but I had to basically abandon a lot of the ASDM settings for endpoint control checks (EPCs) and use the advanced LUA. Actually if you use LUA, you can come up with some really cool scripts. I'm going to blog about this soon but as an example ...... Cisco doesnt have a button to click on in ASDM for an "All AV" check. Which as we all know is useful for contractors entering the network. It is however, supported using LUA . Unfortunately TAC doesnt support LUA scripting although the option is available.........wheres the "whaaaaa--mbulance"
    enjoy!
    Jim Thomas
    Cisco Security Course Director
    Global Knowledge
    CCIE Security #16674

  • How to trace an 'order by' issue?

    I'm working with Report Builder 6.0.8.25.0. I have a report that prints lines on a quote. The report is supposed to order by the line_id in one of the tables involved. The problem is that sometimes it sorts in ascending and sometimes in descending order. I can see the bad sort in the report previewer and after moving the report to the server and running it through the Sales Online module in 11.5.9.
    I have spent quite a lot of time trying to figure out where the bad sort is coming from but have thus far failed to identify the culprit.
    Is there a way to trace the report while it's running in the report previewer to identify what forces are acting on the sort?
    -Tracy

    Hi Tracy,
    the column attribute >>group by<< take precedence of the >>order by<< in the sql statement when you have more than one group in data model and the group is a control group.
    1. Example:
    a. SELECT deptno, ename ORDER BY deptno ASCENDING;
    b. deptno + ename are both in group --> Group_1
    c. depotno --> column attribute >>group by<< = DESCENDING
    d. DESCENDING has no effect!
    Deptno Ename
    10---- JAMES
    10---- TURNER
    10---- ALLEN
    10---- BLAKE
    20---- SMITH
    20---- ADAMS
    20---- JONES
    30---- MILLER
    30---- CLARK
    30---- KING
    2. Example:
    a. SELECT car_no, colour_no FROM cars ORDER BY cars_no ASCENDING;
    b. Group_1 --> car_no --> attribute >>group by<< --> DESCENDING
    c. Group_2 --> colour_no --> attribute >>group by<< --> ASCENDING
    d. b. having priority of b.
    e. c. has no effect!
    car_no colour_no
    51450- 4
    51450- 3
    51450- 2
    51450- 1
    26337- 4
    26337- 3
    26337- 2
    26337- 1
    8021-- 4
    8021-- 3
    8021-- 2
    8021-- 1
    Now, when you would like to see colour_no in an ASCENDING order, you must change the order by clause in your sql statement as follows:
    SELECT car_no, colour_no FROM cars ORDER BY colour_no ASCENDING;
    car_no colour_no
    51450- 1
    51450- 2
    51450- 3
    51450- 4
    26337- 1
    26337- 2
    26337- 3
    26337- 4
    8021-- 1
    8021-- 2
    8021-- 3
    8021-- 4
    Know, that the arrows to the left of the column only belongs to the attribute changes. It do not show you the ORDER BY sequence of the sql statement.
    regards,
    Tom
    Message was edited by:
    Tom Rakete

  • Performance issue of BI Reports in SAP Enterprise portal -in SAPNW2004s

    Dear friends,
    We are integrating BI Reports in SAP Enterprise Portal 7.0 ( SAP NW- 2004s).The reports are running properly .But the issue here is reports are taking long time to open and leading it to performance effect.
    Reports in BEX( Bi side) working lilttle better than EP platform.
    And Even BI team is looking for ways to improve the performance.
    Could you please share your ideas to implement in portal side to increase the performance.
    Thanks and Regards
    Ratnakar Reddy

    Hello Mr. Reddy,
    There are two possibilities for slow performance in BW reports, so we need to look into wether its slow in the BW system or at the frontend.
    If the problem resides in the BW system then we should be able to trace the reports
    and you can go for a SAP EW or GV sessin and SAP will provide recommendations.
    If the problem resides at the frontend
    Update the frontend servers to the latest frontend release.
    Recommended Frontend Release 700
    Recommended Frontend Patch      18
    Update the frontend servers to the lates SAP GUI release as soon as possible.
    Minimum Recommended SAP GUI Release 6.40
    Your frontend PCs should fulfill the following requirements:
    Each frontend PC should have 500 MHz and 128 MB main memory.
    Because of a limit in the addressable memory, Windows 95 is not supported as Frontend OS for 3.X BW Systems. Please refer to SAP Notes 161993, 321973 and 366626 for details.
    Please also check SAP Note 147519 "Maintenance strategy/ deadlines 'SAPGUI'".
    If you still require any assistance from SAP support then raise a message under component ( probably BW-BEX-ET-WEB).
    Provide your input, if you have any.
    Thank you,
    Tilak

  • Report on Linux

    I've just installed Oracle Oracle Developer Suite 10g (9.0.4) over RedHat and i'm doing this,
    1) i run the script,
    $ORACLE_HOME/j2ee/DevSuit/startinst.sh
    2) i created a report through the report builder wizard, when i use "run paper layout" the report looks ok but when i try to use "run web layout" i get this error,
    Tue Jul 19 18:58:04 EST 2005
    javax.servlet.jsp.JspException
    javax.servlet.jsp.JspException
         at oracle.reports.jsp.ReportTag.doStartTag(ReportTag.java:439)
         at MODULE202805126.jspService(_MODULE202805126.java:50)
         at com.orionserver.http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)
         at oracle.jsp.runtimev2.JspPageTable.compileAndServe(JspPageTable.java:567)
         at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:302)
         at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:509)
         at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:413)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.evermind.server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java:765)
         at com.evermind.server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java:317)
         at com.evermind.server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java:790)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:270)
         at com.evermind.server.http.HttpRequestHandler.run(HttpRequestHandler.java:112)
         at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
         at java.lang.Thread.run(Thread.java:534)
    and the trace file has this,
    [2005/7/19 7:30:23:265] Debug 50103 (InProcessServer:Init): Server Config and Trace objects available
    [2005/7/19 7:30:23:266] Debug 50103 (WebServerDriver:start): Server Trace Object available
    [2005/7/19 7:30:23:267] Info 56025 (RWServer:startServer): Reports Server is starting up
    [2005/7/19 7:30:23:314] Debug 50103 (OC4JWebServer:start): webserver_srcroot=/opt/app/oracle/OraHome_2/reports/docroot WEBSERVER_DOCROOT=/tmp/docroot
    [2005/7/19 7:30:23:665] Debug 50103 (Environment:getEnvironmentStrings): RW=/opt/app/oracle/OraHome_2/reports
    [2005/7/19 7:30:23:665] Debug 50103 (Environment:getEnvironmentStrings): SSH_AGENT_PID=4122
    [2005/7/19 7:30:23:665] Debug 50103 (Environment:getEnvironmentStrings): HOSTNAME=localhost.localdomain
    [2005/7/19 7:30:23:665] Debug 50103 (Environment:getEnvironmentStrings): TERM=xterm
    [2005/7/19 7:30:23:665] Debug 50103 (Environment:getEnvironmentStrings): SHELL=/bin/bash
    [2005/7/19 7:30:23:665] Debug 50103 (Environment:getEnvironmentStrings): HISTSIZE=1000
    [2005/7/19 7:30:23:665] Debug 50103 (Environment:getEnvironmentStrings): NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1
    [2005/7/19 7:30:23:665] Debug 50103 (Environment:getEnvironmentStrings): LD_PRELOAD=/usr/local/error_oracle/libcwait.so
    [2005/7/19 7:30:23:665] Debug 50103 (Environment:getEnvironmentStrings): GTK_RC_FILES=/etc/gtk/gtkrc:/home/oracle/.gtkrc-1.2-gnome2
    [2005/7/19 7:30:23:665] Debug 50103 (Environment:getEnvironmentStrings): WINDOWID=35666755
    [2005/7/19 7:30:23:666] Debug 50103 (Environment:getEnvironmentStrings): QTDIR=/usr/lib/qt-3.3
    [2005/7/19 7:30:23:666] Debug 50103 (Environment:getEnvironmentStrings): REPORTS_NO_DUMMY_PRINTER=TRUE
    [2005/7/19 7:30:23:666] Debug 50103 (Environment:getEnvironmentStrings): USER=oracle
    [2005/7/19 7:30:23:666] Debug 50103 (Environment:getEnvironmentStrings): LD_LIBRARY_PATH=/opt/app/oracle/OraHome_2/jdk/jre/lib/i386/server:/opt/app/oracle/OraHome_2/jdk/jre/lib/i386/native_threads:/opt/app/oracle/OraHome_2/jdk/jre/lib/i386:/opt/app/oracle/OraHome_2/lib:
    [2005/7/19 7:30:23:666] Debug 50103 (Environment:getEnvironmentStrings): LS_COLORS=no=00:fi=00:di=00;34:ln=00;36:pi=40;33:so=00;35:bd=40;33;01:cd=40;33;01:or=01;05;37;41:mi=01;05;37;41:ex=00;32:*.cmd=00;32:*.exe=00;32:*.com=00;32:*.btm=00;32:*.bat=00;32:*.sh=00;32:*.csh=00;32:*.tar=00;31:*.tgz=00;31:*.arj=00;31:*.taz=00;31:*.lzh=00;31:*.zip=00;31:*.z=00;31:*.Z=00;31:*.gz=00;31:*.bz2=00;31:*.bz=00;31:*.tz=00;31:*.rpm=00;31:*.cpio=00;31:*.jpg=00;35:*.gif=00;35:*.bmp=00;35:*.xbm=00;35:*.xpm=00;35:*.png=00;35:*.tif=00;35:
    [2005/7/19 7:30:23:666] Debug 50103 (Environment:getEnvironmentStrings): ORACLE_SID=orcl1
    [2005/7/19 7:30:23:666] Debug 50103 (Environment:getEnvironmentStrings): SSH_AUTH_SOCK=/tmp/ssh-zTptff4121/agent.4121
    [2005/7/19 7:30:23:666] Debug 50103 (Environment:getEnvironmentStrings): ORACLE_BASE=/opt/app/oracle
    [2005/7/19 7:30:23:666] Debug 50103 (Environment:getEnvironmentStrings): GNOME_KEYRING_SOCKET=/tmp/keyring-Dzz7aj/socket
    [2005/7/19 7:30:23:666] Debug 50103 (Environment:getEnvironmentStrings): KDEDIR=/usr
    [2005/7/19 7:30:23:666] Debug 50103 (Environment:getEnvironmentStrings): SESSION_MANAGER=local/localhost.localdomain:/tmp/.ICE-unix/4094
    [2005/7/19 7:30:23:666] Debug 50103 (Environment:getEnvironmentStrings): REPORTS_PATH=/opt/app/oracle/OraHome_2/reports/templates:/opt/app/oracle/OraHome_2/reports/samples/demo:/opt/app/oracle/OraHome_2/reports/integ:/opt/app/oracle/OraHome_2/reports/printers
    [2005/7/19 7:30:23:667] Debug 50103 (Environment:getEnvironmentStrings): TK90_ICON=/opt/app/oracle/OraHome_2/reports/plugins/resource
    [2005/7/19 7:30:23:667] Debug 50103 (Environment:getEnvironmentStrings): PATH=/opt/app/oracle/OraHome_2/jdk/bin:/opt/app/oracle/OraHome_2/bin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/home/oracle/bin
    [2005/7/19 7:30:23:667] Debug 50103 (Environment:getEnvironmentStrings): DESKTOP_SESSION=default
    [2005/7/19 7:30:23:667] Debug 50103 (Environment:getEnvironmentStrings): MAIL=/var/spool/mail/oracle
    [2005/7/19 7:30:23:667] Debug 50103 (Environment:getEnvironmentStrings): TNS_ADMIN=/opt/app/oracle/OraHome_2/network/admin
    [2005/7/19 7:30:23:667] Debug 50103 (Environment:getEnvironmentStrings): REPORTS_CLASSPATH=/opt/app/oracle/OraHome_2/reports/jlib/rwbuilder.jar:/opt/app/oracle/OraHome_2/reports/jlib/rwrun.jar:/opt/app/oracle/OraHome_2/jlib/zrclient.jar:/opt/app/oracle/OraHome_2/j2ee/home/oc4j.jar:/opt/app/oracle/OraHome_2/j2ee/home/lib/ojsp.jar
    [2005/7/19 7:30:23:667] Debug 50103 (Environment:getEnvironmentStrings): PWD=/opt/app/oracle/OraHome_2/bin
    [2005/7/19 7:30:23:667] Debug 50103 (Environment:getEnvironmentStrings): INPUTRC=/etc/inputrc
    [2005/7/19 7:30:23:667] Debug 50103 (Environment:getEnvironmentStrings): LANG=en_US
    [2005/7/19 7:30:23:667] Debug 50103 (Environment:getEnvironmentStrings): GDMSESSION=default
    [2005/7/19 7:30:23:667] Debug 50103 (Environment:getEnvironmentStrings): SSH_ASKPASS=/usr/libexec/openssh/gnome-ssh-askpass
    [2005/7/19 7:30:23:667] Debug 50103 (Environment:getEnvironmentStrings): SHLVL=2
    [2005/7/19 7:30:23:668] Debug 50103 (Environment:getEnvironmentStrings): HOME=/home/oracle
    [2005/7/19 7:30:23:668] Debug 50103 (Environment:getEnvironmentStrings): LD_ASSUME_KERNEL=2.4.1
    [2005/7/19 7:30:23:668] Debug 50103 (Environment:getEnvironmentStrings): GNOME_DESKTOP_SESSION_ID=Default
    [2005/7/19 7:30:23:668] Debug 50103 (Environment:getEnvironmentStrings): LOGNAME=oracle
    [2005/7/19 7:30:23:668] Debug 50103 (Environment:getEnvironmentStrings): DBUS_SESSION_BUS_ADDRESS=unix:abstract=/tmp/dbus-7YL1vQQ8ct
    [2005/7/19 7:30:23:668] Debug 50103 (Environment:getEnvironmentStrings): LESSOPEN=|/usr/bin/lesspipe.sh %s
    [2005/7/19 7:30:23:668] Debug 50103 (Environment:getEnvironmentStrings): REPORTS_TAGLIB_URI=/WEB-INF/lib/reports_tld.jar
    [2005/7/19 7:30:23:668] Debug 50103 (Environment:getEnvironmentStrings): DISPLAY=:0.0
    [2005/7/19 7:30:23:668] Debug 50103 (Environment:getEnvironmentStrings): ORACLE_HOME=/opt/app/oracle/OraHome_2
    [2005/7/19 7:30:23:668] Debug 50103 (Environment:getEnvironmentStrings): G_BROKEN_FILENAMES=1
    [2005/7/19 7:30:23:668] Debug 50103 (Environment:getEnvironmentStrings): REPORTS_TMP=/tmp
    [2005/7/19 7:30:23:668] Debug 50103 (Environment:getEnvironmentStrings): XAUTHORITY=/home/oracle/.Xauthority
    [2005/7/19 7:30:23:668] Debug 50103 (Environment:getEnvironmentStrings): COLORTERM=gnome-terminal
    [2005/7/19 7:30:23:669] Debug 50103 (Environment:getEnvironmentStrings): PLSQL_COMPILER_FLAGS=INTERPRETED,DEBUG
    [2005/7/19 7:30:23:669] Debug 50103 (Environment:getEnvironmentStrings): NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat
    [2005/7/19 7:30:23:669] Debug 50103 (Environment:getEnvironmentStrings): XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt
    [2005/7/19 7:30:23:669] Debug 50103 (Environment:getEnvironmentStrings): NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1
    [2005/7/19 7:30:25:236] Debug 50103 (RWReport:getCurrentReport): Inprocess Server Trace Object available
    [2005/7/19 7:30:25:246] Debug 50103 (Report:(Proxy, Trace):1): Got an engine
    [2005/7/19 7:30:25:248] Debug 50103 (Report:(Proxy, Trace):2): Report created:147752400
    [2005/7/19 7:30:25:254] Debug 50103 (XMLPDS): setHelpSetID: 1
    [2005/7/19 7:30:25:255] Debug 50103 (XMLPDS): needSignOnParameter: True.
    [2005/7/19 7:30:25:258] Debug 50103 (JDBCPDS): setHelpSetID: 2
    [2005/7/19 7:30:25:258] Debug 50103 (JDBCPDS): needSignOnParameter: TRUE.
    [2005/7/19 7:30:25:260] Debug 50103 (textpds): TextDataSourceFactory: setReportContext
    [2005/7/19 7:30:25:260] Debug 50103 (textpds): setHelpSetID: null
    [2005/7/19 7:30:25:260] Debug 50103 (textpds): needSignOnParameter: true
    [2005/7/19 7:30:26:153] Info 56023 (ServerImpl:ServerImpl): Idle thread has been started
    [2005/7/19 7:30:26:211] Info 56020 (EngineManager:spawnEngine): Launching engine rwEng-0
    [2005/7/19 7:30:26:212] Debug 50103 (EngineManager:spawnEngine): Start engine command line = /opt/app/oracle/OraHome_2/bin/rwengine.sh -server -cp /opt/app/oracle/OraHome_2/j2ee/home/lib/ojsp.jar:/opt/app/oracle/OraHome_2/reports/jlib/rwrun.jar:/opt/app/oracle/OraHome_2/jlib/zrclient.jar -Xbootclasspath/p:/opt/app/oracle/OraHome_2/vbroker4/lib/vbjboot.jar -Xmx256M oracle.reports.engine.RWEngine name=rwEng-0 server=rep_localhost-rwbuilder ORACLE_HOME=/opt/app/oracle/OraHome_2 engineimplclass=oracle.reports.engine.EngineImpl traceopts=trace_all tracefile=/opt/app/oracle/OraHome_2/reports/logs/rep_localhost-rwbuilder/rwEng-0.trc tracemode=trace_replace cacheDir=/opt/app/oracle/OraHome_2/reports/cache
    [2005/7/19 7:30:26:218] Info 56021 (EngineManager:spawnEngine): Engine rwEng-0 has been launched
    [2005/7/19 7:30:26:218] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Initial
    [2005/7/19 7:30:26:236] Debug 50103 (RWEngine:init): args[0]=ORACLE_HOME=/opt/app/oracle/OraHome_2
    [2005/7/19 7:30:26:237] Debug 50103 (RWEngine:init): args[1]=frombuilder=yes
    [2005/7/19 7:30:26:237] Debug 50103 (RWEngine:init): args[2]=name=rwEng-0
    [2005/7/19 7:30:26:237] Debug 50103 (RWEngine:init): args[3]=server=rep_localhost-rwbuilder
    [2005/7/19 7:30:26:237] Debug 50103 (RWEngine:init): args[4]=cachedir=/opt/app/oracle/OraHome_2/reports/cache
    [2005/7/19 7:30:26:237] Debug 50103 (RWEngine:init): args[5]=traceopts=trace_all
    [2005/7/19 7:30:26:237] Debug 50103 (RWEngine:init): args[6]=tracefile=
    [2005/7/19 7:30:26:237] Debug 50103 (RWEngine:init): args[7]=tracemode=trace_replace
    [2005/7/19 7:30:26:356] Info 55007 (EngineImpl:loadLibrary): Load librw90.so succeeded
    [2005/7/19 7:31:26:240] Exception 50125 (java.lang.NullPointerException
         at oracle.reports.server.EngineManager.manage(EngineManager.java:256)
         at oracle.reports.server.IdleThread.run(IdleThread.java:87)
    ): Internal error java.lang.NullPointerException
    [2005/7/19 7:31:26:243] Info 50002 (RWServer:shutdown): Server is shutting down
    [2005/7/19 7:31:26:244] Info 50103 (RWServer:startServer): Notify thread to exit
    [2005/7/19 7:31:26:244] Info 50103 (RWServer:startServer): RWServer thread exits
    [2005/7/19 7:31:26:249] Exception 50125 (): Caught exception: java.lang.NullPointerException
    exception oracle.reports.RWException {
    oracle.reports.RWError[] errorChain={struct oracle.reports.RWError {
    int errorCode=50125,
    java.lang.String errorString="Caught exception: java.lang.NullPointerException",
    java.lang.String moduleName="REP"
         at oracle.reports.utility.Utility.newRWException(Utility.java:604)
         at oracle.reports.utility.Utility.newRWException(Utility.java:614)
         at oracle.reports.server.IdleThread.run(IdleThread.java:171)
    any idea guys ????

    Hi,
    It seems there is problem with sun.awt.image.codec.JPEGImageEncoderImpl
    on Linux environment. With same JVM and JDK version(1.4.2_04) barcode bean works on windows XP.But on Linux it is giving ClassCastException.
    It seems it is related to the Bug-4502892 reported on sun's website.

  • I am unable to get a proper report if i schedule a performance report in SCOM 2007R2

    Hi,
    A very Good day to All.
    I have created a Performance report in SCOM 200R2 to trace performance reports for specific counters. I also receive the report VIA email, But the problem is i get the same report all the time. I need the report on hourly basis but with the value of that
    particular specific times.
    Example:
    =========
    When i schedule a report for data needed for CPU utilisation from a group of servers from  1/1/2014 9AM - 10AM i get the report for that and in every 1 hr (As per the time what is set in SCOM). I get the same report every hour for 1/1/2014 9AM
    - 10AM only i want an email to triger for every one Hour with its current value.
    Eg: 1/1/2014 10AM - 11AM,  11AM - 12PM's CPU Report etc. 
    Can any one plz help me on this.

    there is  no option to doing this.
    Roger

  • Error while trying to load Crystal report via Windows service

    Hi,
    I am trying to generate PDF file using crystal reports. I have developed a console application which works absolutely fine, however when I converted the code to work as windows service (wcf hosted in Windows service), this below error I see from stack trace:
    Load report failed.
    at CrystalDecisions.ReportAppServer.ReportClientDocumentWrapper.EnsureDocumentIsOpened()
    at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename, OpenReportMethod openMethod, Int16 parentJob)
    at CrystalDecisions.CrystalReports.Engine.ReportDocument.Load(String filename)
    at AtDataWindowsService.GetData.generatePDF(DataTable dt)
    The code used is:
    CrystalDecisions.Shared.ExportFormatType exportFormat;
    ReportDocument reportObj = new ReportDocument();
    exportFormat = CrystalDecisions.Shared.ExportFormatType.PortableDocFormat;
    //Load the Crystal Report
    reportObj.Load("CrystalReport.rpt");
    reportObj.SetDataSource(dt);
    What might be going wrong here?

    Hello,
    Thank you for your post.
    Based on your description, I am afraid that the issue is out of support of VS General Question forum which mainly discusses
    WPF & SL designer, Visual Studio Guidance Automation Toolkit, Developer Documentation and Help System
    and Visual Studio Editor.
    I suggest that you can consult your issue directly on SAP Crystal Reports:
    http://scn.sap.com/community/crystal-reports/content?filterID=content~objecttype~objecttype[thread]
      for better solution and support.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • How to see the log file on the Reports Application server?

    Hi,
    I am new to this Reports, please correct me if i am wrong or in the wrong forum, we have a java based front-end application which calls oracle reports to display requested reports. We are using oracle reports (9i/10g). I need work on a report, It is working fine if i provide parameters on the report itself, but if i run from the application it is not running properly. I want to see the parameters the application is sending to this report, is there any way that i can some log file or any other one on the report server?
    thanks,

    Thank you.
    When you fire the processes to the report server you
    can trace the report with the following parameter:
    RWCLIENT.EXE SERVER=my_server
    TRACEFILE=c:\my_trace.trc
    TRACEMODE=TRACE_REPLACE
    TRACEOPTS=TRACE_ALL

  • Installing All (9iDB,9iDS and report server) in same machine

    I want to use one machine only.
    I have installed 9i database, and on same 9iDS.
    and created a report server on same machine
    i am facing a problem
    all application runs very fine but on running report from
    forms by using webs.show_document()
    a new page comes and states
    Opening page http://server1:8888/reports/rwservlet/getjobid..
    and hangs there only.and it hang such that after closing the page
    application also does not work.i have to restart OC4J
    i have seen in trace file report finished successfully
    and also in report\cache directory report file is alreasy made.
    now when i install 9iDS in another machine and use the other machine as application server,report server be in
    any machine it work fine.
    all report are displayed. no problem comes in that case.
    But i have to use only one machine .
    pls state me solution
    thanks a lot
    regards
    raj

    I HAVE SEEN IN JINIT CONSOLE
    trace level 5
    on server where (9iDS and database both installed)
    Opening http://server1:8888/forms90/l90servlet;jsessionid=c995d4251dd849878b75cf8649b1d477
    Connecting http://server1:8888/forms90/l90servlet;jsessionid=c995d4251dd849878b75cf8649b1d477 with no proxy
    Opening http://server1:8888/forms90/l90servlet;jsessionid=c995d4251dd849878b75cf8649b1d477
    Connecting http://server1:8888/forms90/l90servlet;jsessionid=c995d4251dd849878b75cf8649b1d477 with no proxy
    Opening http://server1:8888/forms90/l90servlet;jsessionid=c995d4251dd84987
    and so on..
    on another machine
    from where reports comes
    this is trace file
    Connecting http://pdc:8888/forms90/l90servlet;jsessionid=db17d7a493484cb8ac2ac70498be1448 with no proxy
    Connecting http://pdc:8888/forms90/l90servlet;jsessionid=db17d7a493484cb8ac2ac70498be1448 with cookie "getfileauthid=c0roXNhhSA=="
    Opening http://pdc:8888/forms90/l90servlet;jsessionid=db17d7a493484cb8ac2ac70498be1448
    now i see in first stage it is not connecting with
    cookie

  • Report Builder get shut down... without generating any Error Message

    Hi Every One,
    I am generating the reports in Report Builder 10.1.2.0.2. And the report is based on the view, when I want to generate the PDF, the report builder get shut down without generating any error message. But I can run the report to see live Preview (Paper Design ).
    What can be reason that its not generating PDF file format.
    Thanks in Advance for your time.

    Hi Saumen,
    I don't think so that .. I have memory problem or some other issue on the hardware side .. bcos I used the same report builder on same machine against the same instance.. to generate the 70K pages PDF file ... but nothing happened ...And this report is fetching only 10 records. during the execution of the report, Report Builder get close. without generating any message. without keeping any processor busy.
    I am feeling that report builder try to write in the PDF file format .. but unable to write.. may b some thing is wrong on the privileges side of the VIEW. But I have Select Priv on the view.
    When I try to trace the report, I got the message in the trace file that " Report Aborted on user request"
    Thanks,
    Mohsin

  • How capture query in data model report

    Hi,
    I have multiples queries in my data model report >clause WHERE is dynamic in all queries<. I need capture the final query and look what query execute.
    Is this posible?, Are there any API that I can use? .
    Viktor.

    Viktor,
    you can trace the report including the sql. Look in te builder at the menu program. there's a tracing option.
    Regards
    Rainer

  • Report LOG File..

    i want to create a report log file...
    that at what date/time user run this report.
    how to do this..?
    Any idea

    You can use the report server queue table, look here for details. You could also create a custom solution of creating a log table and add an "After Report" trigger to log details into you log table. If you are looking to troubleshoot or trace the report, look here

  • What db-ressources are significant while runtime parsing queries in reports

    I have long idle time in running a report
    what db-ressources are significant
    while running Report
    Report compiling / Query parsing ?
    i have running the same report from a AS 10g
    in identical schema's
    on two different instances ( TEST and PROD )
    on a R11_2 orcale-db
    in TEST-Instance the report does run well in some seconds
    in PROD-Instance the report need more then 10 min
    to analyze it I have trace_all on AS
    and taken outputs in all triggers in the report
    I can see,
    the idle-time in the long-time report is between
    the AFTER_PARAM_FORM - Trigger
    and
    the BEFORE_REPORT - Trigger
    trace detail:
    [2011/6/22 0:9:25:115] State 56016 (JobManager:updateJobStatus): Job 76089 status is: Bericht Before-Report-Trigger wird ausgeführt wird
    ausgeführt
    [2011/6/22 0:9:25:115] Debug 50103 (JobManager:updateJobStatus): Finished updating job: 76089
    idle Time
    [2011/6/22 0:20:17:459] State 56016 (JobManager:updateJobStatus): Job 76089 status is: Bericht Seite 1 wird formatiert wird ausgeführt
    [2011/6/22 0:20:17:459] Debug 50103 (JobManager:updateJobStatus): Finished updating job: 76089
    this is while
    Report is "compiled".
    Queries are parsed.
    because both the reports run on the same AS
    and both schemas are identical
    it maybe the differences come from different the instance-system-ressources
    ( in the TEST-Instance there is 1 or 2 users / sessions,
    in the PROD-Instance there are > 100 users / sessions )
    what db-ressources are significant for performance
    while running Report
    Report compiling / Query parsing ?
    what other reason may be for the idle-time in this report ?

    In your trace your idle time is between Before Report Trigger and the formatting of page 1. So, the activity is in the database.
    Report compiling / Query parsing ?Compilation has already taken place when the report runs, so that's not it.
    Parsing depends on the query. If the query exists in the SGA it shouldn't parse again. However, if you have lexical parameters the query may be different each time. Still, parsing is (never) a problem.
    What remains: execution of the query. Trace the report session in the database.
    I just use TOAD for monitoring a session and see which query is executing for a particular session.

Maybe you are looking for

  • How to update excise invoice values after migo.

    Hi Guru's, I have checked the forum. but did not get exact solution. Here im having the problem with  bapi  BAPI_GOODSMVT_CREATE . This bapi don't have the structure to update excise invoice values. I have one bapi  'BAPI_EXCINV_CREATE_FROMDATA'  to

  • Do I have the minimum requirements to install Firefox? If not what must I do?

    System: Microsoft Windows XP Professional 2002 Service Pack 3 Computer: Intel Celeron Processor 1.10 GHz, 384 MB of RAM == I tried to download Firefox, it says I don't have minimum requirements but I don't understand...sorry I am no geek yet :)

  • How to use a VB dll file in java

    hi, i am working on college project,In this output of calculation is not matching with college site .So any one can tell "how to use or combine a VB 'dll' file in java?".so that i can use VB 'dll' file in java to get right Output. If possible write c

  • Application server does not start for DMO

    Hi, I have a HR91DMO system on Win 2008. Application server does not start. From Tuxedolog : 105938.IRNTSV-DVPSPJ2!PSAPPSRV.4728.4944.0: LIBTUX_CAT:250: ERROR: tpsvrinit() failed 105938.IRNTSV-DVPSPJ2!tmboot.244.3628.-2: tmboot: CMDTUX_CAT:827: ERROR

  • Populating JList

    I want to dinamically populate a JList (lstDetalhes) on start up. I'm using a method to do it; this method needs to read a selected value from another JList (lstTurmas) that is also loaded at startup. here's the method:     javax.swing.DefaultListMod