[1.2.0.29.98] reports close when disconnecting their connection

Hi,
is there any reason to close open reports when i disconnect their connection?
anita
(win xp pro, java 1.5.11, ora 9.2)

Anita,
These reports are tied to the connection. They are effectively a live data set which will not exist when the connection is closed.
This is something we could change by adding a preference to keep reports up, but inactive when the connection closes.
Barry

Similar Messages

  • [1.2.0.29.98] Close SQL Worksheet when disconnecting their connection

    Hello
    is there a way to set the SQL Worksheets to close when disconnecting their connection?
    I use SQL Developer 1.2.0.29.98.
    Regards
    Tryfonas

    Thanks, however having the two options available in the navigator would be a lot more powerful feature and more easy to implement for you guys.
    If I'm done with a connection, I'd like to dismiss all.
    If I'm not done, but the connection is lost (this happens like every hour to a remote DB I use), I have to manually close the (closed) connection, then connect again, to continue my work (due to the lack of a reconnect option). I need all windows to be left as they were in that case.
    So the two options are really compatible in the same environment. Having a preference would mean a loss in functionality. Any chance on reconsidering the implementation?
    Thanks,
    K.

  • Financial Reporting Error when creating grid/connecting to database

    Hi,
    This is new installation of EMP 11.1.1.2 and we are having issues with FR studio. We can open the studio and create a new report, but when trying to insert a grid we get following error:
    "DatasourceIDLogin.LoadDatasourceNames Error: -2147467259 Error Loading DatasourceList to Repository" from which I cannot get out, I have to shut down FR Studio.
    The only entry in the host file on the client machine I have is for localhost. If I try to add FR server host I get following error:
    "You are not authorized to use this functionality. Contact your administrator"
    Any help i.e. if I need to perform any configuration tasks on the client machine, changes in host files, changes on servers, etc will be very appreciated.
    Thank you.

    Hi,
    Does this prob occur in specific environment or all the three?
    You need to make sure that your print server,web server and report server are configured properly.
    Try to ping each of them and if still the problem persists make an entry in your host file of these servers with their complete names.
    Thanks.

  • Desktop Manager is forced to close when device is connected

    Some bacis information:
    Device: Bold 9700 v5.0.0.593
    Device PIN: 2228EE7B
    PC OS: Windows Vista Home Basic 32bit SP2
    Desktop Manager Version: 5.0.1.18 (installed from CD)
    Installation of the DM went through fine.  When it is started up, the following message is displayed:
    "Before you begin, verify that your current Blackberry device is connected to your computer."
    When I connect the device to the computer via USB cable, DM is forced to close.
    Any help is greatly appreciated.  Thanks in advance!

    ellistai wrote:
    The first article you posted is basically the user manual of the device which comes with the package.  I have the same manual and it doesn't give any hint on the trouble I am having.
    The documentation I gave you lists where to start  problem solving specific to the Bold 9700 and version 5.0x desktop software. The user manual and release notes are not "basically" where to start trouble shooting , they are "exactly" where to start.
    Your description of a "generic" connection failure is documented for each version of desktop
    Software and corresponding device type since desktop manager 4.2.1.  There are literally
    Hundreds of  knowledgebase articles covering a wide range of software, hardware platforms
    And device types  Let me know how it goes.
    Here is the search link :
    BlackBerry Technical Solution Center
     Thanks,
    Bifocals
    Click Accept as Solution for posts that have solved your issue(s)!
    Be sure to click Like! for those who have helped you.
    Install BlackBerry Protect it's a free application designed to help find your lost BlackBerry smartphone, and keep the information on it secure.

  • 10.4.x clients reporting slow and disconnected afp connections from 10.5.4

    I have a Leopard server serving a small group of users. Most of the clients are on 10.4 (there may be one on 10.3.9). I have one guy on 10.5.5. The guy on Leopard has not had any issues since he has been on Leopard.
    The 10.4 users seem to be experiencing sporadic slowness throughout the day, and sometimes disconnects from the AFP shares. I have not seen anything going on with the server during the times this happens. I even moved a small backup database backup job to run at night rather than during the day. This didn't seem to have any affect.
    The data the users are accessing is on a fiber attached raid array. Thought I'd throw that in if it would be of any help.
    I am trying the suggestion for tuning afp on Tiger clients by changing the afpwanquantum preference on one of the clients, but I'm thinking that this is not the cause.
    Has anyone experienced this? Any help is greatly appreciated.
    Thanks,
    Ken

    Chiming in with another me too! When we noticed it never happens on leopard clients we stepped up our leopard roll out! so far still no leopard client problems.
    We had a workround that we deployed multiple times a day which was to 'shake off' the server with an IP change . To expand:
    If a client was suspected of having what we called the 'slow homes' issue we checked it out by copying a small 1MB file from the home to the clients local disk. when it wasn't instant - and sometimes it took a loooooong time and tied up finder for a while - then that was proof +ve.
    workround was to change the IP address of the client. now we have a DHCP environment (MS-infrastructure of course), so how we did that was
    1 - "DHCP with manual address" and assign a known free address (around .150 in that VLAN usually)
    2 - find an unused 'sacrificial client' in the same VLAN and set it to "DHCP with manual address" and the original client's address - effectively squatting/occupying that spot from the DHCP-server's PoV
    3 - return the original client to plain DHCP and wait for a new address to be assigned.
    4 - wait for the mac to sort itself out and do the 1MB copy test. much faster? then sorted
    5 - return the sacrificial client to DHCP too
    hope this helps someone out there.

  • SAP B1 Closes when Running the Crystal Report

    Hi SAP Expert,
    I have a problem during running the customized report i've created in Crystal. I created a stored procedure please see my code below. The Crystal Report is running during development but when i exported to SAP B1 and run the report. The SAP Business One will terminated. Any help please...
    CREATE PROCEDURE [dbo].[SP_ACTUALPURCHASESV3]
         -- Add the parameters for the stored procedure here
         @FROM DATETIME,
         @TO DATETIME
    AS
    BEGIN
         SET NOCOUNT ON;
         SET @FROM = CAST(CAST(MONTH(@FROM) AS NVARCHAR) + '/' +
                        CAST(DAY(@FROM) AS NVARCHAR) + '/' +
                        CAST(YEAR(@FROM) AS NVARCHAR) + ' 00:00:00:000' AS DATETIME)
         SET @TO = CAST(CAST(MONTH(@TO) AS NVARCHAR) + '/' +
                        CAST(DAY(@TO) AS NVARCHAR) + '/' +
                        CAST(YEAR(@TO) AS NVARCHAR) + ' 23:59:59:000' AS DATETIME)
         SELECT
              (SELECT DocEntry FROM OPOR WHERE OPOR.DocNum = PDN1.BaseRef) as  PODocentry,
              PDN1.BaseRef AS PONum,
              OPDN.DocEntry,
              OPDN.DocNum,
              OPDN.DocType,
              (select ocrd.lictradnum from ocrd where ocrd.cardcode = opdn.CardCode) as LicTradNum,
              OPDN.CardCode,
              OPDN.CardName,
              OPDN.DocDate,
              CASE WHEN PDN1.WhsCode IS NULL THEN PDN1.AcctCode ELSE PDN1.WhsCode END AS WhsCode,
              CASE WHEN PDN1.WhsCode IS NULL THEN (SELECT OACT.AcctName FROM OACT WHERE OACT.AcctCode = PDN1.AcctCode) ELSE (select OWHS.WhsName from OWHS where OWHS.WhsCode = PDN1.WhsCode) END AS WhsName,
              CASE WHEN PDN1.ItemCode IS NULL THEN 'N/A' ELSE PDN1.ItemCode END AS ITEMCODE,
              PDN1.Dscription,
              PDN1.Quantity,
              PDN1.unitMsr,
              PDN1.Price,
              PDN1.PriceBefDi,
              PDN1.PriceAfVAT,
              CRD4.WTCode,
              OWHT.RATE,
              (case when pdn1.quantity > 0 then (pdn1.Price * pdn1.Quantity) else PDN1.Price end ) * (OWHT.rate/100) as EWTVALUE
         FROM OPDN JOIN PDN1 ON OPDN.DOCENTRY = PDN1.DOCENTRY left join CRD4 on OPDN.CardCode = CRD4.CardCode left join OWHT on OWHT.WTCode = CRD4.WTCode
         WHERE OPDN.DocDate BETWEEN @FROM AND @TO  and OPDN.CANCELED = 'N'
         --WHERE OPDN.DocNum = 2542
         ORDER BY OPDN.DocDate
    END

    Hi,
    Does it means we are allowed to create stored Procedure inside the Company Database. We only use selecting and joining tables and somehow some complex sql procedures to meet our requirements.
    Thanks, but my question is if there's nothing wrong with it why my SAP B1 Closes when previewing the Crystal Report. Im running on Windows 7 64-bit, i will not imagine that the capacity of memory of my Terminal Unit is not enough because my memory is 8GB. I run crystal report but it shows the record, but when running the Cystal Viewer inside SAP B1 it illegally terminated.
    Thanks for clarifying the creation of Stored Procedure.
    Ben

  • Close report window when exit form

    Hi all,
    I successfully use Forms 10g to call a report with web.show document.
    I now need to close the report page when the user exits the form.
    Is this possible??
    Kind regards,
    Pablo

    It is not possible to close the report window as it is opened in new browser window

  • My mail will not open or close when aim done using it? Is there any update i need to do to make this work properly??

    If some can help me?? My mac mail will not close when iam finished with it, or will it open when i awake my computer is there an update i need to do??

    As the message comes from AVG yo will need to read about AVG to stop those alerts.
    If you think there is a genuine problem with firefox
    * see [[high memory usage]] <-- clickable link -- <br/> that contains some tips and information about memory usage
    * go to ''about:memory'' by keying that into the location bar <br/> the report that is generated may be of help - it gives tooltip info on mouseover of items, and has a button that tries to reduce memory usage

  • IPhoto closes when double clicking thumbnails or importing

    Hi, iPhoto keeps closing every time I double-click a thumbnail in an album. It also closes when trying to import photos. By "close" I do not mean crash/unexpectedly closed; the window and application just disappears.
    I looked into my CrashReport logs and no iPhoto file is there. However, the following screenshot is from Console after iPhoto closed.
    I'm not sure if this is the culprit but I did use the application Monolingual a week ago. I can't remember if iPhoto worked after using Monolingual. I removed every language except English, removed every input menu except AppleKeyboardsLayouts, and I removed the ARM and PowerPc architectures (which were all highlighted by default). I can post Monolingual's log file if it can be of any help to you.
    Thanks for your help. I appreciate it.

    Thanks for your replies guys. First I don't know happened to the screenshot I posted but here it is again. I hope you guys were/are able to get anything from it.
    When I first noticed the issue I backed up my iPhoto library. Next I upgraded to Snow Leopard since this computer was running Leopard. I also upgraded to iPhoto '09 since it was running an older version. Still no fix. I then uninstalled iphoto and its pref files with appzapper and then reinstalled iPhoto '09. Again no luck. I then created a new user account and the same thing happens- no fix.
    @Terrance- I opened the app Monolingual and I see that the default languages selected include: Austrailia, Canada, New Zealand, UK, and US English, which I deleted. The Language just "English" is not selected and was not deleted. Could this be it?
    Thanks again. I will look into the links you provided, Madison and will be back to report with points.

  • Google chrome install wont close when click the X

    google chrome install wont close when click the X . I dont know why but it is like the X is not there, ~I click in the X button and nothing happens in this browser, i am tlaking about the google site and the box in the uppper corner right,these happens since installed the new version of mozilla.

    Hello,
    Try disabling graphics hardware acceleration. Since this feature was added to Firefox, it has gradually improved, but there still are a few glitches.
    You might need to restart Firefox in order for this to take effect, so save all work first (e.g., mail you are composing, online documents you're editing, etc.).
    Then perform these steps:
    *Click the orange Firefox button at the top left, then select the "Options" button, or, if there is no Firefox button at the top, go to Tools > Options.
    *In the Firefox options window click the ''Advanced'' tab, then select "General".
    *In the settings list, you should find the ''Use hardware acceleration when available'' checkbox. Uncheck this checkbox.
    *Now, restart Firefox and see if the problems persist.
    Additionally, please check for updates for your graphics driver by following the steps mentioned in the following Knowledge base articles:
    * [[Troubleshoot extensions, themes and hardware acceleration issues to solve common Firefox problems]]
    * [[Upgrade your graphics drivers to use hardware acceleration and WebGL]]
    Did this fix your problems? Please report back to us!
    Thank you.

  • Dispose Report closes all Excel spreadsheets

    With Report generation toolkit, I am creating an excel spreadsheet. I create a "New Report", do stuff and "Dispose Report". When I "Dispose Report", it closes ALL excel spreadsheets that are open, including ones that are not part of the LabVIEW application, with no warning. Is this correct? How do I avoid this annoying behavior?

    Henry,
    As Zvezdana mentioned the 1.0 version of the Report Generation Toolkit does work this way. Since that behavior isn't very desirable it has been changed in the 1.1 version of the toolkit which released in March. The new version only closes the report for the particular reference being disposed. You also have the option of not closing the report when you dispose the reference.
    Kennon

  • Crystal Report Close

    Hi all
    I have a problem with a Crystal Report when I try open a BW query, the Crystal Report close, I donu2019t have a message or error. Only in the Event Viewer I have this messege u201CFaulting application crw32.exe, version 12.0.0.683, faulting module crw32.exe, version 12.0.0.683, fault address 0x008360fe.u201D
    Any idea?
    Thanks

    I saw my mistakes but do like the solution?
    this are de messages
    ++++++++++++++++
    Warning: At least one delay-load dependency module was not found.
    Warning: At least one module has an unresolved import due to a missing export function in a delay-load dependent module.
    ++++++++++++++++
    and this other
    DWMAPI.DLL - Error opening file. The system cannot find the file spacified(2)
    any idea i need to do,
    thanks
    Saludos

  • Apple Mail App Doesn't Close When Quit Button Is Pressed

    My apple mail application on my iMac Running Mountain Lion is responding extremely slow and doesn't close when I press the quit button.
    I have to use force quit to close the mail application.
    Also the mail appliation stops spontanuously and a crash report is generated which I send to apple.
    Problem exist now for about 3 weeks.
    I have 4 email boxes (icloud using imap; and 3 pop3)
    Rebuilding my mailboxes didn't solve the problem
    Hope someone has a sollution.

    Please follow these directions to delete the Mail "sandbox" folder.
    Back up all data.
    Quit Mail.
    Triple-click the line below to select it:
    ~/Library/Containers/com.apple.mail
    Right-click or control-click the highlighted line and select
    Services ▹ Reveal
    from the contextual menu.* A Finder window should open with a folder named "com.apple.mail" selected. If it does, move the selected folder — not just its contents — to the Desktop. Leave the Finder window open for now.
    Relaunch Mail and test. If the problem is resolved, you'll have to recreate some of your Mail settings. You can then delete the folder you moved and close the Finder window. If you still have the problem, quit Mail again and put the folder back where it was, overwriting the one that may have been created in its place. Post your results.
    Caution: If you change any of the contents of the sandbox, but leave the folder itself in place, Mail may crash or not launch at all. Deleting the whole sandbox will cause it to be rebuilt automatically.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard (command-C). In the Finder, select
    Go ▹ Go to Folder...
    from the menu bar, paste into the box that opens (command-V). You won't see what you pasted because a line break is included. Press return.

  • SQL Connections remain open after Crystal Report closes

    I am wirting an interface to use the crystal report viewer to print reports, connecting to a Progress Open Edge 10.1B database.  From our application we declare the application, report, exportoptions and connectionproperties objects and pass these to the crystal reports viewer.  Once the report is printed we release the objects and set their variables for null.  However we are finding that the SQL connection to the database is remaining connected and we can only release the connection by manually going in a disconnecting.
    I have read in forums that people use .dispose or .close to release the connection, however we do not have access to these methods as we do not use .NET.  Are there any methods we can use to disconnect these sql connections?

    Hi Dean,
    Moved to the Legacy Application forums. Likely using the RDC as your report engine.
    You should still be able to close and dispose of the report objects. They are not specific to .NET.
    In VB it would look something like these lines::
        crReport.Close
        Set CrystalActiveXReportViewer1.ReportSource = Nothing
        Set crReport = Nothing
    Once the report is closed it should disconnect from the DB. If you close the application does that disconnect?
    Have you looked on 4GL's site for info on how to?
    Thank you
    Don

  • VI front panel won't close when it's done executing, when this vi was called by reference.

    I've created a simple vi set to demonstrate the issue I'm having. I'm dynamically launching sub vi's from a main application. Simply put the main application is my test exec and the subvi's I'm calling dynamically are different tests. In the example I'm posting here the test vi is called Electrical Test 1.vi. I've configured this Electrical Test 1.vi to show front panel when called and close afterwards if originally closed.  Problem is it won't close the front.
    Other things to keep in mind
    I want to be able to launch the test vi and not wait till it's done.
    I'm using LabVIEW 2012 SP1.
    Solved!
    Go to Solution.
    Attachments:
    vi_launcher - v5.zip ‏73 KB

    Basically the close after call only matters if the VI is called as a subVI (just like if you open a VI yourself and run it, it doesn't close when it is done).  The two ways around this are to either have your top lvl app close the VI when it is done, this is explained here:
    http://digital.ni.com/public.nsf/allkb/987B2026B41BD39786256CF800032E8C
    or to have your VI close itself when it is done.  Use a This VI reference and the Front Panel:Close invoke node.
    Hope this helps.

Maybe you are looking for

  • How to decrease the column size in a tabular report

    Hi , How can i reduce the column size in a tabular report in oracle apex. my report is having 90 coulmns and i want that should come in once sceen so i want to decrease the size of columns as well as the font size of values + column_name.. any sugges

  • Cannot create and add a new entry to LDAP

    Hi, I'm pretty new at LDAP and JNDI, i've been trying to create and add a new entry to the directory but somehow it's not working. here is my code and I would appreciate it if someone can help. import java.util.Hashtable; import javax.naming.ldap.*;

  • Cannot connect Wii, TV,

    Today, three of our internet-enabled devices, Wii, TV, and BD player, quit connecting to the internet.  Our computers (macbooks and an iMac), iPads, and iPhones connect just fine.  The iMac and the three internet enabled devices use a wired connectio

  • After reinstall, Premiere CS4 will not open

    To solve an Encore problem, I had to uninstall the Production Premium suite, run the cleaner, reboot, and reinstall the suite.  This did not solve my Encore problem, and also created a new one for Premiere. When I launch Premiere, it starts to open,

  • Has anyone successfully put an SSD in an iPod Photo?

    Most of the posts on the web are dated, and I haven't really run across any recent useful and accurate info.