Is there any exception used any where in the block

Hi All,
Is there is any Exception that can be used inside any where in the pl/sql block.
Thanks & Regards
Srikkanth.M

Yes, Srikanth.. many kind of exceptions are there which can be raised within a pl/sql block, after a begin keyword..
for example: if you have wrote select query, it can raise no data found exception (if select query doesn't return anything), multiple rows fond exception ( if query selects multiple rows) other select query related exceptions like table or column not found..
Exception List is here:
http://download.oracle.com/docs/cd/B10501_01/appdev.920/a96624/07_errs.htm#784
Regards,
Dipali..

Similar Messages

  • My os x mavericks got crashed accidentely while installing the windows 8 and I am trying to reinstall using recovery console, but its take very long time and forcing me to download OS X 8 from internet, is there any where can I get offline download of OS.

    My os x mavericks got crashed accidentely while installing the windows 8 and I am trying to reinstall using recovery console, but its take very long time and forcing me to download OS X mountain lion from internet, is there any where can I get offline download of OS file where I can install directely OS X Mavericks.

    Hi, original poster here. I did not realize this would generate more discussion so I never checked back. I still had my warranty, so I took it to the store and got it repaired. The original problem I had was a screen with this icon flashing when I attempted to boot it up:
    When I took it to the store, they told me that my computer was unable to communicate with the hard drive. I had this same problem three times in two months where this screen reappeared. Each time I went back to the store and they said the cause was different, but they were all hardware issues that physically made it impossible to communicate with the hard drive. After the third time, they simply replaced my laptop and I haven't had the same problem.
    So in short: The reason you can't reinstall or move anything when you encounter this screen appears to be because nothing can communicate with the hard drive in the first place. You can't reach the disk or anything on it. So I don't believe it's possible to do anything besides take it to a physical store and have it fixed.

  • Is there any where that I can voice why I returned my beloved new Ipad? I was told I could move my Keynote presentations to it and then use it for my business presentations. Unfortunately that turned out to not be true. I need the IPad to work with a remo

    Is there any where that I can voice why I returned my beloved new Ipad? I was told I could move my Keynote presentations to it and then use it for my
    business presentations. Unfortunately that turned out to not be true. I need the IPad to work with a remote.
    The Ipad is on a short cable to my projector. I am usually on a podium 30 feet away. No infra red receiver on the IPad and
    the Iphone remote needs wi fi which is not always available in all the locations I do my teaching and lecturing in.
    If you can build a remote into the Ipad in the future I would really like to use an Ipad to replace my heavier lap top for business travel. Thank You Kathy McNeil.

    "The Ipad is on a short cable to my projector."
    Get a longer cable?

  • Hello. I have two version of Office for Mac. 2008 and 2001. I want to delete the 2008 version. If I use the removal tool within the Offie 2008 folder, is there any danger of the 2001 version being removed too.  Thanks Dave UK

    Hello. I have two version of Office for Mac. 2008 and 2001. I want to delete the 2008 version. If I use the removal tool within the Offie 2008 folder, is there any danger of the 2001 version being removed too.  Thanks Dave UK

    Do you mean Office 2008 and 2011 or do you really want Office 2001? I think you mean 2011 since Office 2001 wouldn't make much sense.
    The Office uninstaller should be able to identify there are two versions and allow you to delete either one or both.

  • Would like to use an alarm clock.  I need the alarm clock to function from the sleep mode.  A review said that MAC products will not allow a program to wake up a Mac.  Is this correct ?  Are there any products in the Mac store what will function from the

    Would like to use an alarm clock.  I need the alarm clock to function from the sleep mode.  A review said that MAC products will not allow a program to wake up a Mac.  Is this correct ?  Are there any products in the Mac store what will function from the sleep mode ?  How do I check this out ?

    You can set times for your computer to turn on or wake from sleep in the Energy Saver system preference pane using the Schedule... button.

  • Are there any settings in the options (or anywhere else) that I can use to set up an auto confirm and resend without having to manually click the 'resend' butto

    There is a certain website I use that I refresh frequently. Every time I do I get a pop up message labeled ‘Confirm’ with a question mark in it that says;
    “To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier."
    It only seems to be a problem with this one particular site. Are there any settings in the options (or anywhere else) that I can use to set up an auto confirm and resend without having to manually click the ‘resend’ button in the pop up window?

    Hi cor-el, Thanks for responding;
    I am accustomed to seeing this type of pop up on occasion and understand why they are necessary to prevent duplicating orders, payments, etc. I am not using a back button, I wanted to use an auto-refresh app to search for reservation openings on a certain web site and can not because this pop up requires me to manually push a button every time the page refreshes. I am resending the same information every time (a date range) via the POST form, so, was hoping there was a way to either disable, override, or set up and auto response so I can use the auto-refresh app. Your description of how to avoid the pop up didn't entirely make sense to me, but If I have to do a bunch of manual steps in between each refresh attempt it doesn't matter because I'm no better off.

  • Is there any way you can block wifi use on 4s

    Is there any way you can block wifi use on 4s

    If you mean you want to set a restriction code for WiFi there isn't a way to do that.

  • Is there any where I can get my iPad repaired

    Is there any where I can get my iPad repaired because I dropped it it still works but it has a chip on the corner

    See this thread... https://discussions.apple.com/message/15905972#15905972

  • JPA and CAF BO - are there any editors of the JPA data (like CAF)?

    Hello!
    As you know SAP invented some layer above JPA and called it CAF. There is a very convenient way to edit data in CAF.
    But now I have to create a complex database scheme, also with CAF doesn't allow us to work with objects. So we can't use someObject.getChildren().
    So my question is are there any editors of the JPA data (like it is done in CAF)?

    Hi Kirill,
    at the beginning of our project at the end of 2009, we did a deep analysis of CAF since our architect vehemently suggested to use this framework.
    First about the history and purpose of CAF: Initially, CAF was never meant to be a layer above CAF since CAF was invented in the time before EJB 3.0 and JPA standard where writing persistence with EJB 2.x CMP forced the developer to write pages of boiler plate code. This background was approved by SAP.
    With upcoming of JPA, CAF ist mostly useless (except for very simply structured data) and prevents you from writing good software.
    It is easy just to write @Entity, @Id and @OneToMany (for complex database schemes) and CAF forces you to use an ugly, imperformant database scheme (e.g. CAF uses mapping tables even for 1:n relationships, a clear antipattern!)
    The CRUD-services generated with CAF are a pain, too. Usage of pessimistic locking is not up to date for web applications.
    With your complex database schemes, you exceed the limit of CAF.
    (We decided not to use CAF and did never regret this.)
    Concerning your question: There is an "JPA Details" view in NWDS that might help you. It needs JPA Persistence facet on your project to work. Developed by SAP. For JPA beginners, it is a good cheat sheet for JPA annotations and their attributes.
    You do not need more since a JPA POJO is easy to code.
    Regards,
    Rolf

  • Is there any way that the magic mouse might work on the iPad?

    I just got the iPad 3 and is there any way that the magic mouse can work alone or with the keyboard on it? If not, can the mouse work with a PC?

    tonefox wrote:
    The magic mouse can't be used with an iPad simply because Apple has chosen not to include support for it.
    Which is fair enough. Where are you going to put this mouse in order to use it with an iPad... you need a handy flat surface... oh, I know - the iPad screen. Much easier than moving your fingertip around it.
    You would put it the same place you put the wireless keyboard.
    In fact the existing keyboard support is one of the big reasons many of us would like to see mouse support added. You see the problem is that when you use a keyboard you have to reach up and over to tap the iPad screen. By Steve Jobs own admission* the arm tires quickly when you have to do this repeatedly. In this particular situation a mouse would be more ergonomically sound.
    There is also the issue of access for the disabled. Although iOS does have many accessibility option, at present none of them help those with severe spinal damage or certain amputees. Including mouse support means you could also use devices like the "suck and puff"... A mouth controlled joystick designed for people with these disabilities.
    * He was talking about touchscreens on notebook computers, but it's the same concept.

  • Is there any difference between the 2 different USB cords when syncing???

    I know this may be a paranoid question to ask but I just wanted to make sure.
    Is there any difference between the newer USB cords with the shorter plug (the end that goes into the iPhone) and the older ones with the bigger, square-shaped plugs that you can pinch on the sides to retract?
    Is there a difference in transfer speed, syncing speed, or reliability, or build quality?
    Just asking cuz the newer USB cord that came with my iPhone 3GS is getting frayed and so I'm using the older one instead.
    Thanks to whoever helps.

    No difference except, as you noted, you have to squeeze the older one to remove it. It's important that you do that so you don't damage it or the iPod.

  • Is there any BAPI returning the affected organisational units to users?

    Dear all,
    I would like to ask a question about organizational units. Whenever I want to affect a user to a given unit I
    use PPOME transaction. If I want to do this in ABAP level I use the function module RH_RELATION_WRITE.
    I would like to know, is there any BAPI returning the affected organizational unit to a given user?
    Thanks in advance,
    Kind Regards,
    Dariyoosh

    Alberto Sesma wrote:
    You can use Function Module RH_STRUC_GET
    >
    >
    > CALL FUNCTION 'RH_STRUC_GET'
    >   EXPORTING
    >      ACT_OTYPE = 'US'
    >      ACT_OBJID = user_name
    >      ACT_WEGID = 'US_CP_O'
    >   TABLES
    >        RESULT_TAB = LT_RESULT_TAB.
    >
    >
    > You will get the related org units in LT_RESULT_TAB. There are other two table parameters in that function module that you may find useful.
    >
    > If the function does not return any valid data you may try with other values for WEGID. You will find all the possible evaluation paths in transaction OOAW.
    >
    > Kind regards
    Dear Alberto,
    Thank you very much for your answer. I didn't know this FM and it solved my problem.
    For those who may be intered here is exactly I proceed. Suppose that in the table HRP1000 you have an
    structure (type S) with ObjID = 50000342 and you wish to have the SapUserID of the affected persons.
    DATA:
          affected_users TYPE STANDARD TABLE OF swhactor,
          user LIKE LINE OF affected_users.
    START-OF-SELECTION.
      CALL FUNCTION 'RH_STRUC_GET'
        EXPORTING
          act_otype              = 'S'
          act_objid              = '50000342'
          act_wegid              = 'A008'
          act_plvar              = '01'
          act_begda              = sy-datum
          act_endda              = sy-datum
          act_tdepth             = 0
       TABLES
         result_tab             = affected_users
    EXCEPTIONS
       NO_PLVAR_FOUND         = 1
       NO_ENTRY_FOUND         = 2
       OTHERS                 = 3
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      LOOP AT affected_users INTO user.
        WRITE: / user-objid.
      ENDLOOP.
    Also in transaction OOAW we can have all possible values for the third argument of the module function (act_wegid).
    For those who are interested, here are a few among many possible values which seem to be intesting for my
    problem.
    DFPS_DG1----
    Organizational Unit of User
    DFPS_DG3----
    All Org. Units Above a User
    ORGAS----
    Closest Organizational Unit and structure
    ORGASS----
    Closest Organizational Unit and structure     
    PPLEORG     -
    Organizational unit of an employee or position
    SAP_ORGP----
    Organizational assignments of a user/person
    SAP_USOG----
    Organizational Assignments of a User
    SAP_US_S----
    Positions and Personnel Number of a User
    US_S_S_C----
    All positions and jobs of a user
    WFM_ORGU----
    Organizational Assignment of User
    WF_ORGUN----
    Organizational unit of a user/person (module id Ben./Pers.)
    For example, let's say we have a userid named MYUSER01 and we would like to find all structures to which the user
    is affected. Here is how I proceed.
    DATA:
          itab_user_structures TYPE STANDARD TABLE OF swhactor,
          row_user_structures LIKE LINE OF itab_user_structures.
    START-OF-SELECTION.
    CALL FUNCTION 'RH_STRUC_GET'
        EXPORTING
          act_otype              = 'US'
          act_objid              = 'MYUSER01'
          act_wegid              = 'US_S_S_C'
          act_plvar              = '01'
          act_begda              = sy-datum
          act_endda              = sy-datum
          act_tdepth             = 0
       TABLES
         result_tab             = itab_user_structures
    EXCEPTIONS
       NO_PLVAR_FOUND         = 1
       NO_ENTRY_FOUND         = 2
       OTHERS                 = 3
      IF sy-subrc <> 0.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
      LOOP AT itab_user_structures INTO row_user_structures.
        WRITE: / row_user_structures-objid.
      ENDLOOP.
    Thank you very much for your help.
    Kind Regards,
    Dariyoosh

  • How to install my WVC210 Wireless-G PTZ Internet Camera so I can view it from any where in the world.

    Hi guys I just bught a
    WVC210 Wireless-G PTZ Internet Camera
    I need to install it so that I can view it from any where in the world. I have no Idea how to do this.
    I would like if some one can send me a video tutorial on how to do it.
    I have a website that I am runing so I guess I can use that if I need something like Hosting and Domain things.
    I want to know if it is posible that I can some how configure it so I can view the camera on one of my websites page.
    For exaple: www.example.com/mycamera???
    If not well I would love to here the options I have.
    Thank you very much in advance!

    Rogerio,
    I have never seen a router like you have and I wouldn't dare advise you about changing the settings. It appears that it is a router/modem that was provided by your ISP. If this is the case, I recommend that you call your ISP and ask them for Port Forwarding assistance. You need to forward port 80 to the LAN IP address of your camera. The LAN IP address of your camera is the IP address that you use to log into the web interface. You should not need to change any settings on the camera. After you have had the ISP help you forward the port to the camera, go to ipchicken.com and you will see your WAN IP address. Write that address down and then go to a remote location and type it into your web browser. You should get the login page of the camera. Note that your WAN IP is subject to change. You can ask your ISP to provide you with a static IP address which will be an additional charge each month but your IP address will not change. Another option is to use a service such as dyndns to create a unique URL that you can use to access the camera remotely even if your WAN IP address changes. We can discuss that after you get access to the camera if you have further questions.

  • Is there any solution to the colon translation bug?

    Mac OS X has reserved characters that cannot be used in file or folder names. One of them is the colon: It is used by the operating system in paths to designated separate directories and files, exactly as Microsoft uses the backslash character for the same purposed.
    However, Mac OS X is 'supposed' to translate colons to another character when saving files from within an application or the Mac OS X Save dialog. The typical translation is to forward slash or dash. For example, "Bug: Colon Translation" becomes "Bug- Colon Translation". Of if I am saving a web page to a PDF, the source name of an article with this title would change to "Bug/ Colon Translation".
    The bug: The above colon translation process does NOT work reliably in the Mac OS X Save Dialog with reliability. I guestimate that 95% of the time the translation of colons in source titles does NOT work. Using the example of translating a web article title to a PDF saved file, the results are typically the following: "Untitled.pdf". This forces the user to copy then paste in the actual title of the article. THEN, 100% of the time, the colon translation actually works. For example, if I have a web article titled "Bug: Colon Translation", it is extremely rare for that title to be anything but BLOCKED, resulting in 'Untitled.PDF' as the resulting title in the dialog box. When I then copy and paste the source title into the title area, replacing 'Untitled', I get: "Bug- Colon Translation".
    What will happen perhaps 5% of the time: The colon translation of the source title will actually work. When this occurs, using my example above, the OS provides the following translation: "Bug/ Colon Translation". Note that when it works in this situation I get a forward slash, not a dash.
    I research, read and save web articles all day long. A lot of articles use colons. I have to contend with this bug all day long every day. This bug is many years old. I can't recall when it started. But it certainly has been consistent in Mac OS X 10.5 Leopard, 10.6 Snow Leopard and now 10.7 Lion. Three versions of Lion are enough for me to realize that Apple is either oblivious to this bug or they don't care.
    Clearly, the colon translation CAN work. It is MEANT to work. No one can dispute that. The user is NOT supposed to be messed over with 'Untitled.PDF' files. They are MEANT to have actual PDF file titles, as seen in our example above.
    Therefore the question:
    Is there any solution to the colon translation bug?
    It is incredibly annoying.

    My guess is they don't care. Most likely they're illiterate and don't know what a colon is for. They probably think it's a little-used character. Remember: these are the people who don't know the difference between "deprecate" and "depreciate".
    I have the same colon problem as you do. But it's not the biggest problem I have encountered in Lion. If it was only that I'd be Mr. Delighted with Lion. There's worse than having a colon - uh -  that won't cooperate. A lot worse, in Lion.

  • Is i message free any where in  the world ie from canada to the philippines

    is imessage free any where in the world ie canada to the philippines

    Rogerio,
    I have never seen a router like you have and I wouldn't dare advise you about changing the settings. It appears that it is a router/modem that was provided by your ISP. If this is the case, I recommend that you call your ISP and ask them for Port Forwarding assistance. You need to forward port 80 to the LAN IP address of your camera. The LAN IP address of your camera is the IP address that you use to log into the web interface. You should not need to change any settings on the camera. After you have had the ISP help you forward the port to the camera, go to ipchicken.com and you will see your WAN IP address. Write that address down and then go to a remote location and type it into your web browser. You should get the login page of the camera. Note that your WAN IP is subject to change. You can ask your ISP to provide you with a static IP address which will be an additional charge each month but your IP address will not change. Another option is to use a service such as dyndns to create a unique URL that you can use to access the camera remotely even if your WAN IP address changes. We can discuss that after you get access to the camera if you have further questions.

Maybe you are looking for

  • Interest calculation on bank loan

    Hi guru, we have taken long term loan from 10 banks.we have to calculate interest on loan from each bank.we have maintained each bank loan a/c as a vendor.As we know the procedure as given by sap for balance interest calculation will be followed here

  • How to identify the encoding used in a file ?

    Hi all, I have to read a file and check it is encoded in UTF-8. How I can do this ?. If fiel is saved in MS Windows I can check for BOM. What if the file is saved using Java API ?. Is there any code(copy left code) available for doing this ? rgds Ant

  • XML parser Problem in Oracle 9iAS

    Dear All, I am trying to parse a xml file by using a SAX Parser. I am getting error "oracle.xml.parser.v2.XMLParseException: Invalid InputSource.'. I have already included 'xerces.jar' in the classpath. But it is always taking oracle xml parser. How

  • Problem with Access policy Provisioning on AD

    Hi, I have created an access policy, which will trigger the provisioning the user to AD when the user is added to group 'abc'. Its without approval. We have object form and process form. Process form is autosave. But, the problem is, as soon as the u

  • Possible to preorder Guardians of the Galaxy steelbook in store?

    I'm getting different answers from different associates on the phone...it's very frustrating. Am I able to pre-order the GotG exclusive steelbook in store? If not, will stores be receiving copies of this for sale on release date (i.e. copies other th