Error message when Database details are not configured properly

Hi,
I am using JDeveloper 11.1.1.1.4 and ADF-BC in my project.
I use Weblogic Data Source connection to connect to Database.
I have a requirement that when data base details are not configured properly in Weblogic Data Source or when Database is down,I need to display an error message either when I access application task flows or in login page itself when application starts.
Can I achieve this???Please advice.
Regards,
Praveen

Praveen,
Check out Steve's example
https://blogs.oracle.com/smuenchadf/resource/examples#129
-Arun

Similar Messages

  • Can iMessage be used with non iOS 5 users, ie non-apple users. My new i-pad 2 error message says these contacts are not recognized by imessage when I try to text some of these contacts.

    Can iMessage be used with non iOS 5 users, ie non-apple users?
    My new i-pad 2 error message says these contacts are not recognized by imessage when I try to send them a text.

    So that means that I can send text messages through my i-phone to reach non iOS 5 users, but not through my i-pad 2.

  • I get an error message when downloading ITunes :could not access the network location %public%\desktop\

    I get an error message when downloading ITunes "could not access the network location" %public%\desktop\?
    windows vista 32 bit

    Try the following user tip:
    "Could not access network location %PUBLIC%\Desktop\" install errors

  • Black only error message when all inks are full

    My printer ran out of a color some time ago and popped up the black only message box. I have since replaced all of the colored inks and it still gives me the black only message when I go to print and says I need to replace magenta. I just replaced it! My printer is the photosmart C6280. Thank you

    Hello Sudharshan,
    "Status can only be set when all originals are stored" Also I see that the model is not having Status in CAD VIEW.
    This is error is indicating that your original CAD model is not checked in and as per your configuration you require the original to be checked in before moving to next status.
    Please:
    1. Check your document status network.
    2. ensure that you have proper set up for the fields "check in" in the current status. This indicator should be set. This ensures that the document is automatically checked in before moving to the next status. This will solve your problem.
    When I double click on that object in CAD VIEW, it takes me to DIR creation screen with Document Type DES. Can someone help me in this ?
    Because of the above set up missing the original DIR is missing the original document and hence the system assumes you are creating a new DIR when you click on the object in CAD view.
    regards,
    N K

  • Error message when posting revaluation "deprecation not posted completely"

    Hi Gurus
    When I am trying to post revaluation to an asset, using AR29, I get an error message APERB027 "deprecation not posted completely".
    I have run AFAB for period 01/2010 and the entry in TABA is correct.
    Can any one help me solve this?
    Thanks
    Gil

    Hi
    I am trying to post revaluation for 31.01.2010 (asset was capilized on 01.01.2010)
    I have ran AFAR, and it didn't have any effect

  • "Missing fonts" message when the fonts are *not* missing

    I get the "Missing fonts" message fairly often for fonts that are not really missing. Then I have to specify the fonts that I used to create a given document, which are installed on my Windows XP system and have never left.
    Has anyone else encountered this problem? Is there any way to stop it from recurring? It happens every so often, not every time I open a document but every once in a while. It involves a particular set of fonts (Geometric).
    Any suggestions? Thanks.
    Orson

    >I don't see any AdobeFnt*.lst files in my Fonts folder. But is that where to look?
    No. They're scattered through all of the Adobe application folders. Do a search for AdobeFnt*.lst (using the *) and it should find them all. They get rebuilt automatically as required after deletion. Don't delete any file ending in .db.
    Peter

  • I have tried to update my itunes program. It was running great until I attempted the update now all I get is an error message that says "Itunes was not installed properly, Please reinstall itunes, Error 7 (Windows erroe 126)". What can I do to get my it

    I tried updating my itune program. Now all I get is the following message "Itunes was not installed properly. Please reinstall itunes. Error 7 (Windows error 126). WHAT can I do to get back to where my itunes program is running again?
    I have uninstalled the proram and tried reinstalling and get the same error message. The other error message I get is "The program can't start because MSVCR80.dll is missing from your computer. Try reinstalling the program to fix this problem".  I have tried that twice with no luck. Can someone help me get my music back???

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • How to pop up error message when printing invoice / delivery note

    i have a problem that when I'm going to print the invoice (VF03), i have to check the field displayed e.g. port of loading, final destination should not be empty.If both are empty, when user is ready to print, then alert message is displayed (e.g. Please return to the invoice to fill in the port of loading / final destination) and is not allowed to print it out
    i'm using Zxxxxx program (including the subroutine)  and SAPScript form Zxxxxxx ,in the form, i use "PERFORM XXX IN PROGRAM ZXXXX" to call the parameter,so how can I do the alert message and stop the printing process and Do i write a checking subroutine in the program and perform that subroutine , so that when that required fields are empty, then show alert when printing?
    PLs advise

    Hi Sky,
    i wont suggest you to give a pop up as if you try and execute the invoice in background it would cause termination.
    Standard way of doing it is by updating nast entries. You can refer below mentioned pseudo code. You can also refer to any standard driver program & form attached to a output type for  more code.
    The below code would show your output condition in error status if your condition fails.
    **Do you validations in the print program and  check for return code.
      IF SY-SUBRC NE 0.
        PERFORM PROTOCOL_UPDATE.
        RETCODE = 1.
        EXIT.
      ENDIF.
          FORM PROTOCOL_UPDATE                                          *
          The messages are collected for the processing protocol.       *
    FORM PROTOCOL_UPDATE.
      CALL FUNCTION 'NAST_PROTOCOL_UPDATE'
           EXPORTING
                MSG_ARBGB = SYST-MSGID
                MSG_NR    = SYST-MSGNO
                MSG_TY    = SYST-MSGTY
                MSG_V1    = SYST-MSGV1
                MSG_V2    = SYST-MSGV2
                MSG_V3    = SYST-MSGV3
                MSG_V4    = SYST-MSGV4
           EXCEPTIONS
                OTHERS    = 1.
    ENDFORM.
    Hope this Helps you.
    Sumit

  • HT1386 Received this error message when syncing iPad: Could not sync apps to iPad because apps installed on the iPad could not be determined. I have no idea what apps it could refer to. It's my daughter's iPad.

    Error when syncing my daughters iPad: "Could not sync apps to iPad because apps installed on iPad could not be determined."
    I have no clue where to go from here. Any ideas?

    https://discussions.apple.com/message/17259204#17259204
    https://discussions.apple.com/message/16469359#16469359

  • Error message when syncing; "required disc not found" ???

    when i try syncing i get the message that the required disc was not found,, what disc!? it never acted like this before. any helpp is greatly appreciated

    it means a USB adapter. one that is connected to your computer in order to give you more USB ports than are built into your machine.

  • Error message when importing from CD -Not enough room on "" to copy all of

    I am just importing CD music onto my laptop and after 316 songs I get the erro message, "There is not enough room on "" to copy all of the requested files. iTunes will copy as many files as possible."
    Why the error and how do I fix it?

    I am having the same problem and I know my hard drive is definitely not full

  • Trying to send an email to a group contact(Newspapers) and get error message telling me they are not properly framed?

    The address "<"Bay Times" [email protected]>" in the "To" field was not recognized. Please make sure that all addresses are properly formed

    Don't know if this will work for AOL, but here's how I solved the problem last night: I stopped using the 2nd SMTP info, and only used the first one (alphabetically). It would appear to this layman that the iPhone doesn't like logging into an SMTP server with two sets of credentials. So, when you try to do it with the second account, it just chokes.
    Here's step-by-step as to how I did it:
    1 - Settings
    2 - Mail, Contacts, Calendars
    3 - Under Accounts, select the second account that uses the same SMTP server
    4 - Outgoing Mail Server > SMTP
    5 - Change Primary Server to Off (assuming this is the SMTP with this account's login credentials)
    6 - Under Other SMTP Servers, change the duplicate SMTP server to ON
    I had no problems after this and was immediately able to send an email from that account.

  • Unspecified Error message when trying to srt sync configuration

    I'm having same problem. Performed recommended upgrade to Software Version 5.0. Didn't like it. Re-installed version 4.6, and now I can't synchronize.
    Already tried all of the above. I'll be watching for a solution too.

    A month later, and I'm still trying to resolve this issue.
    I have cold booted the device (by removing the battery etc. etc.)
    I have turned off all Wi-Fi.
    I have un-installed desktop software, and then re-installed after cold boot.
    Cannot think of any other solution.
    Music syncs fine.
    But cannot, for the life of me get the sync to allow me to set up my configuration.
    Every time this 'UNKNOWN ERROR REPORTED
    Doh!

  • Error message when installing Lion "disk not formatted as Mac OS extended journalled".

    Ran disk utility repair from Snow Leopard install disk. Same error.  Is there a way to enable journalling without erasing disk and reformatting? I have a TIme Machine back up but am nervous doing a compete erase and restore.

    Not according to the last reply in this thread:
    https://discussions.apple.com/thread/3293781?tstart=150
    Regards,
    Colin R.
    PS Time Machine restore instructions here:
    http://web.me.com/pondini/Time_Machine/14.html

  • Updated to Yosemite a few weeks ago and I'm now being confronted with a plug-in error message when loading illustrator. Not sure what to do.

      this is a screen grab of the plug in errors.
    Any body know how to fix this????

    Did you reinstall your AI from the original disks or a clean download after updating to Yosemite? Adobe products don't take kindly to migration or in place updates of the OS.

Maybe you are looking for

  • How do you prevent your hyperlinks in Keynote 6.5. from changing?

    Dear Apple community, Since I installed the new Keynote version 6.5. I have troubles creating hyperlinks. Whenever I link an email-address or URL to a text object or shape the link gets changed afterwards. For example: Display: [email protected] Emai

  • Shadow/Gradient Fade to Transparent Effect

    Hello. I am using PS CS3 on MAC and I am trying to create the inner shadow gradient fade to transparent show in the sidebar of this webpage: http://kinoma.com/about/ First, I create a rectangle with linear gradient fill that fades to transparent. The

  • Ctrl + Mouse Click to Advance - Possible?

    In the course I'm working on, I want the user to select several options from a list and it uses typical Windows behavior - the user would click and hold ctrl and left mouse click each option.  When I recorded the screen in Captivate 7, the dialogue b

  • Ck source data from BW side

    HI, I have a question ... How can we see the SAP HR  source data from BW . I dont want to check the PSA. Is there any option or shall I have to go directly to the source system? can we check the Source data through RSDS from BW side.?

  • Aironet 1552E with 8-dBi Directional Antenna AIR-ANT2588P3M-N

    Hello everyone, Im building a local wireless network and im going to use the Aironet 1552E outdoor cisco access point, with 2 patch-directional Antenna 8dBi (AIR-ANT2588P3M-N) at 2,4 GHz. The problem im facing is that i have to cover a specific area