User report issues in 1.1.0.21.97

A couple of issues i'm experiencing with user reports on Mac OS X in the latest pre-releas build
first off, if I am asked for a password (first time I use the connection) there is no feedback if the connection fails (worng password for instance)
The second problem I'm facing is every time I try to rerun a certain master-detail report I'm getting an NPE
this is the stacktrace:
22-nov-2006 15:37:31 oracle.report.addin.ReportEditor updateContent
INFO: ReportEditor.updateContent()
22-nov-2006 15:37:33 oracle.dbtools.raptor.controls.display.DisplayResultTable getUI
INFO: DisplayResultTable.getUI()
Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at oracle.dbtools.raptor.controls.display.DisplayPanel.refresh(Unknown Source)
at oracle.dbtools.raptor.controls.display.DisplayPanel.refresh(Unknown Source)
at oracle.report.addin.ReportEditor$1.actionPerformed(Unknown Source)
at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1882)
at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2202)
at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:234)
at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
at java.awt.Component.processMouseEvent(Component.java:5554)
at javax.swing.JComponent.processMouseEvent(JComponent.java:3126)
at java.awt.Component.processEvent(Component.java:5319)
at java.awt.Container.processEvent(Container.java:2010)
at java.awt.Component.dispatchEventImpl(Component.java:4021)
at java.awt.Container.dispatchEventImpl(Container.java:2068)
at java.awt.Component.dispatchEvent(Component.java:3869)
at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4256)
at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3936)
at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3866)
at java.awt.Container.dispatchEventImpl(Container.java:2054)
at java.awt.Window.dispatchEventImpl(Window.java:1774)
at java.awt.Component.dispatchEvent(Component.java:3869)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:463)
at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:269)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:190)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:184)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:176)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)
reloadBuffers(): 53 nodes checked in 0.006489 second(s)
reloadBuffers(): 53 nodes checked in 0.005422 second(s)
reloadBuffers(): 53 nodes checked in 0.004306 second(s)
22-nov-2006 15:43:17 oracle.report.addin.ReportEditor updateContent
INFO: ReportEditor.updateContent()
only happens with master-detail report
Message was edited by: Barsema
barsema

We have verified the connection error on the latest evaluation build is working as expected. i.e. if you supply wrong password you get alerted to that. This has been verified on the windows and Mac OS X. Please try the latest evaluation release 1.1.0.22.71.
Your reports issue has also been addressed.
Sue

Similar Messages

  • CSM 4.7 Report Manager User Report Issue

    Hi,
    Since we upgraded CSM 4.7 from 4.6, suddenly Report Manager is unable to generate VPN User Report, same as Connection Profile Report and VPN Device Usage Report, error message shows below. However, under FW-Summary Botnet (Top Destination, Top Services, Top Sources) those reports are fine. If I ran older than the time we upgraded 4.7 (like last week, last month) I could get the data, only right after the upgrade, no data since then. We opened a TAC ticket, but they could not resolve it and said it is a known bug, also applied patch which did not work either. In Event Manager, it has all the event logs, and Configuration Manager seems to show Event Manager setting correct as well. Anyone has encounter this issue and has solution? Please help, thank you!
    ***Error Message***
    No Records Found
    - Event Manager may be down or no data received from Device

    Hi @shawng001,
    I have installed the CSM 4.7 on my VM windows 2008 server pack2, i am getting the logs from my devices like ASA firewall and Router. But i am unable to generate report logs and mail alerts. I hope you can help me in this...........
    Thanks in advance....
    @udaychalla 

  • User Reports Issues

    Hello,
    Raptor Version: 1.0.0.01.19
    OS: WindowsXP
    * Selecting Reports, User Defined Reports, Add Report
    The UserReports.xml file does not seem to be saving the SQL for the defined report. It is saving the name and description, but the query portion is left blank.
    <![CDATA[Test]]>
    </name>
    <description>
    <![CDATA[Test]]>
    </description>
    <tooltip>
    <![CDATA[]]>
    </tooltip>
    <query>
    <sql>
    <![CDATA[]]>
    </sql>
    </query>
    * Selecting Reports, User Defined Reports, Report Name, Edit Report
    Also, if you try to edit an existing report, it pops up a "Report Exists" dialog saying "Name already used please enter a new one."
    Between the previous version and this one, user reports does not seem to be compatible .
    * Each section now must have a <![CDATA[]]> element.
    Old style: <description/>
    New style:
    <description>
    <![CDATA[]]>
    </description>
    * Location change
    Old:
    .../raptor/jdev/bin/
    New:
    .../Documents And Settings/username/.raptor/
    It will take some manual work if you want to migrate existing user defined reports to this edition, however if you attempt to add another report, you existing reports will be wiped and editing is not possible.
    Thank you,
    Justis

    http://www.sap-img.com/
    Go through the link....

  • Blocking locks by user report hangs

    Please,
    "Blocking locks by user" report under "Database Administration Section" of "Data Dictionary Reports" is hanging
    every time we try to run it against any database.
    Please, confirm this issue in Oracle Sql Developer 4.0 EA since it was working perfectly in
    Oracle SQL Developer 3.2.2 (3.2.20.09.87).
    Also, allow us an estimate deadline for correction.
    Thanks in advance,
    Andraly Ng

    please make a copy of the posting in the report-forum

  • Parameterized Views for User Reports

    I would like to be able to define a view such as:
    create view dept_emps(p_dept in varchar2) as
    select * from emps where dept = p_dept);
    and use this view to define a SQL Dev drilldown report with SQL such as:
    select * from dept_emps(:DEPT)
    where :DEPT is a bind variable passed from a selected depts report row.
    Oracle apparently does not support parameterized view definitions as suggested above, but I have found an article by Tom Kyte on the issue of parameterizing views, where Tom suggests using DBMS_SESSION.SET_CONTEXT (called within a user package) to set context values that can be retrieved in a view using the SYS_CONTEXT function. I can get this approach to work at the SQL prompt to work around the lack of formal view parameters. I have a package which defines a procedure which sets context values that I can then retrieve within a view using the SYS_CONTEXT function.
    To use this approach when defining a SQL Developer user report, the SQL for the report would need to be logically something like (which works fine at an SQL prompt):
    exec ssuper_context.set_ctx('DEPT', :DEPT) - - Call user procedure to assign context variable 'DEPT' with bind value from parent report
    select * from dept_emps
    where view dept_emps uses function SYS_CONTEXT to return the value for context variable 'DEPT'.
    SQL Developer complains about this as the SQL for a user-defined report. Can anyone suggest how I might pass a bind value from a selected parent record to a view which implements a drilldown report?
    TIA Jon

    I met CSI at a kongress a few weeks ago and pressed them a bit on how this works. Eventually they fezzed up about the table read but mentioned that in the next release being developed it would be different...
    Problems with this is that the FM has a couple of limitations, so you cannot read all tables correctly... so you end up reading some of the wrong ones or taking the easy ones.
    Another option is to let the database itself do the hard work, to get back to the performance aspect.
    Anyway, for neither of these two do you need any tcode, so indeed we are drifting off topic...

  • OBIEE 11g  - Not able to see existing reports which are created by specific owner but I could able to see Admin role user reports.

    OBIEE 11g  - Not able to see existing reports which are created by specific owner but I could able to see Admin role user reports.
    Appreciated if you could able to help as soon as possible as I don' have back up for these disappeared reports.
    Pleas let me know if any additional information needed.

    Hi
    Thank you for the reply.
    Here one thing I would need to mention that those are created by me on last week, but when I check those today, I could not able to see or even admin also not able to see those. For sure no migration and updations happend over the week end, really not able to debug whats the issue around. Unfortunately I haven't taken back up as well.
    Please could you help and let me know whats the root cause and how I could able to restore.
    Best regards,
    Kumar

  • User Lock issue when processing IDOCS

    Hi Folks,
    We are pushing the data into SAP using IDOCS.During this process some IDOCS are getting failed due to User Lock on shipment header.Anyone here can share their experience in dealing with User Lock issues.
    Thanks,
    Kiran.

    Kiran,
    Only one can edit the document, it's standard fucntion. I think No note can resolve this. I can suggest you to run a back ground job very frequently ,which picks these status 51 IDOCs and reprocess. Report is :RBDMANi2
    We can use Message class & error message number on selection screen, so that we can make sure that only those idocs which were failed due to Lock problem are taken by the job.
    Reddy

  • EM12c User Reported Event from PL/SQL

    Hi,
    Is there a way to create a user reported event from PL/SQL (similar to emcli publish_event) ?
    Thanks

    Can you describe your use case? Maybe there are other ways to address the issue.
    -Mughees

  • Mac users having issues with my Site

    I just recently had a Mac user complain to me that my website wasn't working for him http://woodsshop.com/index.htm
    I'm wondering if the fact I edit my site using CS3 might be his problem?, but that's a wild guess on my part.
    he said
    " when I enter your web site...under "creative builders"  when I click on "kits", "plans" "japanese" "about us" or "contact us"  my computer freezes...in other words, it just see there, waiting for the site to come up and it never does.  No drop down windows or anything, its just that your site does not move from one area to the next smoothly.  Now this is on my 6 month new apple computer....and as I said, everwhere else I go, no problems....."
    I contacted my Host, they recommended he clear his cache, didn't help him.
    So I went and posted a question on the Mac Safari forum, asking if other Mac users were having issues, some of them are, some not, but enough are, and that has me concerne, how many others can't even access my site?
    Here's that discussion
    https://discussions.apple.com/thread/3880515
    I went and looked at my AW Stats and Mac users are just a small part of my traffic it looks like.
    [IMG]http://i11.photobucket.com/albums/a173/JoeWood_/Misc/AW-Stats.jpg[/IMG]
    So I'm Hoping someone here has some insight :-)

    Alright, this clears the air somewhat.
    Do one thing, if you have created the course, you must be aware about the answers, enroll yourself as a user and --
    Appear for the course, make sure, you answer all (or enough questions to score 85% marks.) Not just the quiz you have to make sure you view 50% of the slides completely. So that means, if the slide dureact for each slide is say 1minute and there are 40 slides, view a minimum of 20 slides completely to their 1 minute duration.
    Only then you would recieve a completed result.
    Please try the above scenario and verify you get a completion on your LMS. If you do, then check again your User reports and you will certainly find that your users had failed ne or the other criteria (Slide Views/ Quiz Score)
    Alternately, if you want to be linient enough to just mark completetion on Quiz Result, you can uncheck the Slide views option from Success/Completion Criteria, under Reporting.
    Good Luck!
    Anjaneai

  • Action Usage by User report

    How does the Action Usage by User report work? Its one of the miscellanenous reports under the security reports on the Informer tab. Do I have to run a background job to gather this data? If I try to run the report now I don't get any data even though I know a transaction has been run during the query period.
    Thanks for any help
    Dave

    No RFC Errors.  Re: other jobs, they all run successfully.  Alert Generation is the only one failing, and it started failing only a few days ago - it has run successfully before - and the settings/config on the GRC side haven't been changed (so the only possibility is a change on the ECC side).
    However, the message server that's configured in the connector (and that's working) actually points to the central services instance.  In SPM, we had an issue earlier where this name wouldn't work and so we had to use the primary app server name, and then SPM worked fine.  Do you think that with RAR, and this report, even though everything else is working fine, the error on the alert generation may be associated with the server name?
    Edited by: Santosh Krishnan on Aug 26, 2010 2:02 PM

  • Odd Reporting Issue (ENTERPRISE)

    I have a client with some users experiencing a rather odd reporting issue. The report runs fine, but only shows values for the totals and not the line items that make up the total.
    For example, when I run the report (logged in as admin as well as under their ID), I see:
    Net Sales 1,234
    Cost Of Sales (1,111)
    Gross Margin 123
    When they log in on their machine, they see:
    Net Sales
    Cost Of Sales
    Gross Margin 123
    Very odd. I figured maybe it was an application setting, but the INI didn't look off anywhere particular.
    They are running Enterprise 6.3.1 (yeah, insert comment here on the upgrade needed).
    Any thoughts???

    Check their Effective rights, and reset them, that has worked out for me. Otherwise, try copying the user and paste it as a new user and retest; I had to delete users and recreate them to correct problems of this nature.

  • Exchange 2013 mailbox user reports 2 years of sent items from his mailbox have gone missng

    hello, 
    bit of an odd one as at the moment as its only one user reporting this problem so far.
    the user is saying that the only folder affected is sent items and that items from 2012 to present date have vanished from there sent items folder.
    they are adamant they have not deleted them and there not in there deleted items folder either.
    they are computer literate so i inclined to believe that the issue lies with exchange.
    when they checked there sync issues folder on outlook it came back with hundreds of 
    "Synchronization of some deletions failed." errors and also "746
    item(S) deleted in online folder"
    i do have database backups so i can recover deleted emails from those if worst comes to worst 
    does anyone have any suggestions on what i can do to resolve this issue or point me in the direction of where to start troubleshooting from?
    many thanks
    Gordon

    hello, 
    bit of an odd one as at the moment as its only one user reporting this problem so far.
    the user is saying that the only folder affected is sent items and that items from 2012 to present
    date have vanished from there sent items folder.
    they are adamant they have not deleted them and there not in there deleted items folder either or available for recovery.
    they do use outlook on there mobile so there is a chance that they inadvertently deleted them via there phone client 
    they are computer literate so i am inclined to believe that the issue lies with exchange,
    when they checked there sync issues folder on outlook it came back with hundreds of 
    "Synchronization
    of some deletions failed." errors and also "746
    item(S) deleted in online folder"
    i do have database backups so i can recover deleted emails
    from those if worst comes to worst 
    does anyone have any suggestions on what i can do to resolve
    this issue or point me in the direction of where to start troubleshooting from?
    many thanks
    Gordon

  • Users report app crash on startup on iPad Air 15.0.0.302

    Hi,
    the latest version of my app just got approved by the Apple team 2 days ago and so far I received 2 reports that the new version just closes immediately after startup on the iPad. Unfortunately so far I have no info about iPad or iOS version. I can also see a significant drop of registrations on iOS since the new version was released, so I am a bit worried. I am unable to reproduce any issue on iPhone 3GS with iOS 4.3, iPhone5 with iOS 7 or iPad2 with iOS 7.
    Did anyone receive similar user reports?
    Thanks

    Bug#3686856 - ios native libraries not linked properly to use subscripting in ios 5 deployments with ANEs
    Causes a crash with the Google Analytics ANE from milkman on iOS 5, I wish this was accepted as a bug

  • Itunes is saying my Irish Mastercard is not Irish. Other Irish users report same. Is this correct?

    itunes is saying my Irish Mastercard is not Irish. Other Irish users report same. Is this correct?

    Sorry, I was only able to get back to this issue today, but it worked.
    Thank you again Michael for your help. It was as simple as just buyng a free book from the iTunes store to create a Books area, then I was able to drag and drop my 3rd party book there.
    Still, I feel that there should already be a Books area in iTunes, but perhaps I am the only one who has updated iTunes on a computer without any previously purchased books on it from the iTunes store.

  • Stage Analysis Report Issue

    Hi,
    I have run a stage analysis report but it says no data inspite of open opportunities being present in the system. Could anyone kindly let me know what could be the issue?
    Regards
    Sharat

    Hi Sharat,
    Welcome you to the forum. Please close your first thread.
    Regarding your Stage Analysis Report Issue, what selection has been made? This report show closed opportunity only.
    Thanks,
    Gordon

Maybe you are looking for

  • MEIS Arrival INTRASTAT without GR / IR

    Hello All, In our business scenario we use regular Schedule agreement (LPA) for INTRASTAT Arrivals declarations at Germany plant (DE)for which goods shipped from France country (FR) plant. We have a very particular scenario where in there is no GR /

  • Memory Leak in 10.6.7?

    After a few days without a restart, MacMini running 10.6.7 with 2GB RAM is currently showing 1.15GB or wired memory utilization with no applications open.  After a restart, this is around 100MB but as days pass without a restart, it creeps up to 1-1.

  • Pdf to ePub, What program should I use?

    I know I can export from InDesign to ePub, but I was handed a .pdf that is 60+ pages and they want it converted to an ePub. Can this be done with InDesign or some other Adobe program?  I am ussing the Creative Suite.

  • JavaScript issue in PDF Form

    I am wanting to create a script in a PDF form format with Adobe 8.0 (or 5.0 if necessary, what I want it to do is when I fill out a form box "name" on page 3 I have the same thing "name" is there a way for it to bring the information from the first b

  • Flash header in iWeb - Links not working

    Here's the situation: I managed to get a flash header to show up on my  site by using an HTML Snippet. There are three buttons in this flash  file. Each of them open up drop-down menus with links to different pages  found on the site. Currently, when