Hello Friends small query

Hi Friends,
I Start Studying Java in Oracle Database,
I have created a simple java class and java function as given in the developer guide.
But i want to know how exceptions are handled in a java Stored procedure and Functions.
can anyone give me a easy guide or may be a simple code for tracking errors in java stored procedure or function.
Thanks,
Dick

Hi ,
The exceptions are handled via the try... catch pattern...
For more info :
http://download-uk.oracle.com/docs/cd/B19306_01/java.102/b14187/chtwo.htm
http://download-uk.oracle.com/docs/cd/B19306_01/java.102/b14187/chthree.htm
http://download-uk.oracle.com/docs/cd/B19306_01/java.102/b14187/chfive.htm
http://download-uk.oracle.com/docs/cd/B19306_01/java.102/b14187/chseven.htm
NOTE: Post this subject to the JDeveloper Forum , as well.. to get more specialized help....
Regards and good start!!!!!,
Simon

Similar Messages

  • Hello friends - general query

    i have completed my training 4 months back and am looking for a break in sap sd . but unfortunately i am not getting interview calls even i have placed my profile in all the job sites, coming to my exp i have 6 yrs domain exp in marketing
    Even i am ready to face interviews, am not getting a chance to expose myself
    anyone can pls help me out in this situation , i will be thankful to you
    also pls provide me solutions for
    a) how do u create tasks and what are the min no of tasks one can create in a proj
    what is the diff b/n change request and task.is it possible to release a change request without releasing a task
    b)can we test global customization in dev  or prod test systems
    Any real time questions , if u can provide i will be thankful to you and hope you will provide me a good solution
    kishore

    Hi,
    Go through the some of the scenarios  so that u can be more confident in facing interviews.
    Try to acquire more knowledge on the scenarios and how configurations are done and if any customizations you had done,
    Some of the scenarios are:
    Duplicate customer purchase order
    Default First Date is not Today
    Auto proposed all the dates when creating Sales Order
    Define Material used at which Sales and Distri. Process
    Assign a Cost Center manually in a SO (VBAK-KOSTL)
    Transfer of Requirements
    Define Tax Determination Rules
    Taxation Explain with an example
    Return material From customer
    SAP SD: Scheduling Agreement Vs Contract
    Sales BOM Implementation
    How to Know that Sales BOM is working or not?
    Sales Order Mass Change
    Release strategy for Sales order
    How to do rebate processing
    Rebate Process with Ref. to SO
    Consignment Sales Process in SAP
    Issue free goods to selected Customers
    Supressing Fields in Sale Order
    Some Light on Batch Determination
    Diff. between Item Proposal and Material Determination
    Steps for SD Variant Configuration
    Process Flow for 3rd Party Sales
    Configure Intercompany Stock Transport Order
    Number Ranges In Sales Order
    What is Debit note and Credit note
    Mohan
    Award points if it helps.

  • HT4972 hello friends i have a problem in my ipod touch it has 4.2.1 version of software but it doesnot supports any aps so how to update the ios please anybody help me..

    hello friends i have a problem in my ipod touch 3g it has 4.2.1 version of software but it doesnot supports any apps so how to update the ios 5 or more than this please anybody help me..i am in trouble.

    I suspect you really have a 2G iPod. Those can only go to iOS 4.2.1.
    Identifying iPod models
    iPod touch (3rd generation)
    iPod touch (3rd generation) features a 3.5-inch (diagonal) widescreen multi-touch display and 32 GB or 64 GB flash drive. You can browse the web with Safari and watch YouTube videos with Wi-Fi. You can also search, preview, and buy songs from the iTunes Wi-Fi Music Store on iPod touch.
    The iPod touch (3rd generation) can be distinguished from iPod touch (2nd generation) by looking at the back of the device. In the text below the engraving, look for the model number. iPod touch (2nd generation) is model A1288, and iPod touch (3rd generation) is model A1318.
    Otherwise connect to yor computer and update via iTunes. Yo need iTunes 10 or later on the computer.
    To more easily find compatilbe apps for 4.2.1
    iOSSearch - search the iTunes store for compatible apps.
    Vintapps 3.1.3 - paid app.
    Apple Club - filter apps by iOS version.
    Discussion post by msgarmar - technique to sort apps by date.

  • Hello Friends...About integrating tomcat with apache

    Hello Friends...
    I want to integrate apache with tomcat. using JK connector.
    It is working for red hat 7.3 n 9.
    But it is not working for Red Hat Enterprise ES (Red Hat 3.2.3-47)
    I search for jk connector for Red Hat Enterprise ES.
    Cannot get help..
    Plz. help me
    Isparks

    Hi Alan.
    I've discovered the exact same problem.... 0.0.0.0 instead of 127.0.0.1
    You've obviously not had any replys here, but di you end up working it out on your own?

  • Small Query help

    small query i have data like below ,
    Month ProductNo CustomerNo     Units
    Jan 9001 1001-09 100
    jan 9002 1002-09 200
    jan 9003 1003-09 300
    jan 9001 ABCCustomer 400
    Jan 9002 1004-09 500
    for any record - if column - customerNo starts with numeric it has to show like CN_****** other wise the same name.
    Result should be
    Jan 9001 CN_1001-09 100
    jan 9002 CN_1002-09 200
    jan 9003 CN_1003-09 300
    jan 9001 ABCCustomer 400
    Jan 9002     CN_1004-09 500
    Can some one help to get the query

    Hi,
    try this,
    SQL>  select *from v$version;
    BANNER
    Personal Oracle Database 10g Release 10.1.0.2.0 - Production
    PL/SQL Release 10.1.0.2.0 - Production
    CORE    10.1.0.2.0      Production
    TNS for 32-bit Windows: Version 10.1.0.2.0 - Production
    NLSRTL Version 10.1.0.2.0 - Production
      1  with t  as
      2  (select 'Jan' Month ,9001 ProductNo, '1001-09' CustomerNo, 100 Units from dual
      3  union all
      4  select 'jan', 9002 ,'1002-09', 200 from dual
      5  union all
      6  select 'jan', 9003, '1003-09', 300 from dual
      7  union all
      8  select 'jan', 9001, 'ABCCustomer', 400 from dual
      9  union all
    10  select 'Jan', 9002, '1004-09', 500  from dual)
    11  select  Month,ProductNo,(case when regexp_like(customerno,'^[[:digit:]]') then
    12   'CN_'||CustomerNo
    13  else
    14* CustomerNo end)cudtomer_no, units from t
    SQL> /
    MON  PRODUCTNO CUDTOMER_NO         UNITS
    Jan       9001 CN_1001-09            100
    jan       9002 CN_1002-09            200
    jan       9003 CN_1003-09            300
    jan       9001 ABCCustomer           400
    Jan       9002 CN_1004-09            500or
    regexp_like(customerno,'^[0-9]')or
    regexp_like(customerno,'^[0123456789]')Edited by: user291283 on Sep 12, 2009 8:22 AM
    Edited by: user291283 on Sep 12, 2009 9:24 AM

  • Hello friends!! I have iprotect pro and I can't remember my password.I forgotten it ! can you help me?

    hello friends!! I have iprotect pro and I can't remember my password.I forgotten it ! can you help me?

    I believe this will be him: https://www.youtube.com/watch?v=LnGyDNKG0S0

  • Hello Friends, I am new in InDesign Java Script

    Hello Friends,
    I am new in InDesign Java Script. I want to edit the page's master text Frame Object through Java Script. Any Idea regarding this will help me a lot.
    thanks in advance

    Have you read any of the documentation? It doesn't seem so :-)
    Vivek Singh, the documentation is a great tool for understanding object model. Once you got the main concept of hierarchy between objects, accessing objects is quite a child game.
    I am not meaning scripting is easy but have a look on the documentation, it's a essential starting point. I bought too the Peter Karhel's guide
    http://oreilly.com/catalog/9780596528171/index.html
    it's really cheap regarding to the quality of the learning.
    Welcome in this world.
    BTW, masterspreads is a property of document. So you should work with something like :
    app.activeDocument.masterSpreads[0].xxx
    Loic

  • Hello friends  can help me Ipod shuffle

    Hello friends I have a ipod shuffle 2GB 5th generation so thought this when I bought by amazon 2GB correctly is all excellent until I happened to leave it connected to the pc .... about 6 or 8 hours at 4am that turn the pc .... leaving my ipod connected ... it forgetfulness .... hours later at about 5pm lift me .... disconnect the ipod shuffle attempt the same turn I cast orange light ... green .... and red last .... and not caught more ..... after that I connect to the pc on and only emits a red light ... and no charge, do not recognize the pc ..... nor itunes ..... ask for your help if you have a solution my problem or my ipod completely died and I buy a new one I have friends with 2g ipod shuffle and tell me that is normal for them that sometimes q by sticking files or die but then it removes them but not before hand thanks and hope you can help me ....

    Hey StatistaXS,
    Welcome to the Apple Support Communities! It sounds like your iPod shuffle may have had a very low charge when connecting to your computer:
    iPod shuffle: Checking the battery charge - Apple Support
    http://support.apple.com/en-us/HT1510
    If the iPod does not turn on after charging for an acceptable amount of time, it may need to be serviced. But first, check out the relative steps in this resource:
    iPod shuffle troubleshooting and service FAQ - Apple Support
    http://support.apple.com/en-us/TS1412
    Thanks,
    Matt M.

  • Small query on methods of classes

    Hi,
        I have a small query abt calling methods in oops...How will we get the exporting,importing and exception parameters when we r calling the methods manually without the patterns options ????

    Well,  the best way is of course to use the pattern, but you could also view the signature through SE24. 
    Transaction SE24
    Enter class name, click display/change.
    Click on methods tab.
    Click your method.
    Click the parameters button.
    This will show you the signature of the method, including the importing, exporting, changing, and returning parameters.
    Regards,
    Rich Heilman

  • Hello friends, what printer do you recommend for the iMac OS X Mt Lion?

    Hello friends, what printer would you recommend for the iMac OS X Mt Lion?

    There are hundreds that will work,  you need to determine what your needs are and then go shopping. For a list of compatible printers and all-in-one's please look over Apple's advice letter:
    http://support.apple.com/kb/HT3669

  • Hello friends , I have started with writing  c code on mac using xcode .....but one of my friend told me to use gcc for coding. He started with terminal And used a text editor to compil the c program on his mac.. So please tell me how to do the same

    Hello friends , I have started with writing  c code on mac using xcode .....but one of my friend told me to use gcc for coding. He started with terminal And used a text editor to compil the c program on his mac.. So please tell me how to do the same and is there any pre stalled text editor on mac if yes then where and if no then which text editor to install and how to install gcc...please help me out thanks in advance !!!

    I have started with writing  c code on mac using xcode .....but one of my friend told me to use gcc for coding.
    Why? If you are developing and writing code on a Mac why would you not use the tools Apple has given you? And Xcode, once you get use to it, is a very nice development environment that will make you life a whole lot easier.
    If you insist on using an editor and the terminal I would recommend  Emacs   but it has a long learning curve so  something like TextWrangler  will work too.
    As for the compiler if you have Xcode installed install the command line tools and you will be able to compile from the terminal.
    good luck

  • Small query  i Need ...

    hi
    i need a small query..
    here four columns are there..
    i want to need .between in two columns like
    u_month between and  u_empid between
    May i know how can i write the query...
    select U_empid,U_month,U_year,DocEntry    from  [@PR_OREIMCLM]
    where U_empid  between 843 and  846 and U_month  between dec and  apr
    u_empid u_month   u_year    Docen
    843
    DEC
    2013
    1
    827
    FEB
    2014
    2
    846
    APR
    2014
    3

    Hi,
    Could you try this,
    select U_empid,U_month,U_year,DocEntry    from  [@PR_OREIMCLM]
    where U_empid  between 843 and  846 and
    U_month in ('Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec')
    If U_month is datetime datatype, then we can use like
    select U_empid,U_month,U_year,DocEntry    from  [@PR_OREIMCLM]
    where U_empid  between 843 and  846 and
    substring(DATENAME(month,U_month),0,4) in ('Apr','May','Jun','Jul','Aug','Sep','Oct','Nov','Dec')
    or
    select U_empid,U_month,U_year,DocEntry    from  [@PR_OREIMCLM]
    where U_empid  between 843 and  846 and
    month(U_month) between 4 and 12
    Hope this helps you...
    Thanks & Regards,
    Parvatha Solai.N

  • Hello friends recently shifted from windows to mac need some suggestion on which software to go ahead with for editing, excel,power point presentation

    Hello friends recently shifted from windows to mac need some suggestion on which software to go ahead with for creating word editing, excel,power point presentation.

    Only Microsoft's Office for Mac 2011 14.4.8 will work on your Windows Office files in their native document format. Anything else, and particularly Apple's Pages, Numbers, and Keynote will perform translation on open, and export. This can, and will, introduce differences to your original documents, especially when sharing with others in the Windows Office 2010/2013 applications.
    Here is my short list.
    Office for Mac 2011 v14.4.8
    LibreOffice (latest)
    The current iterations of Apple's Pages, Numbers, and Keynote are not what I would term business/professional grade applications. Apple updates them infrequently, ignores user friendly features, omits others, and has introduced default backwards incompatibility between Yosemite and prior OS X releases of these applications. Read the reviews in the OS X App Store. Even for free with a recent Mac purchase, these products will transform your mood.
    The free LibreOffice is aggressively developed and designed as an MS Office replacement suite. There are occasions where it can open documents that Office for Mac, and Apple's products ignore. Extensive PDF manuals for the individual applications. Unlike Word, you can have two-up page viewing with a button click, or edit multi-page PDF. There is a forms designer. It can open nearly any document including MS Publisher and Visio documents from the Windows space. I use it.
    MS Office 2015 Preview for Yosemite is available, but as its title would suggest, it is not done yet, and some features are missing. I created a single-page Word document with a DRAFT watermark. Only LibreOffice v4.4.1 was able to open this document and preserve the watermark.

  • Hello friends ,   i have a unlocked iphone 4 . i just want to know is that work on chart wireless . i allready cutt a microsim card with sim cutter and when i insert the sim card in it says no sim card install. pls help me . thks

    hello friends ,   i have a unlocked iphone 4 . i just want to know is that work on chart wireless . i allready cutt a microsim card with sim cutter and when i insert the sim card in, it says no sim card install. pls help me . thks

    Why don't you ask chart wireless?

  • Hello Friends, Help Needed in Query

    Hi,
    I have a table with the structure
    SELECT * FROM PR_TST
    ID PRS_ID
    16 - 8
    17 - 9
    18 - 10
    20 - 10
    23 - 5
    25 - 5
    28 - 30
    30 - 32
    SELECT * FROM PR_PRS_TST
    PRS_ID - PRS_WT
    8 - 8
    9 - 9
    10 - 10
    5 - 12
    30 - 19
    32 - 17
    Now i want to add a new field in the Table PR_TST and want to update the prs_wt for the corresponding prs_id.
    Is this possible in a single update statement without using a for loop statement.
    Thanks,
    Dick

    Is this what you are looking for?
    create table pr_tst
    (ID int
    ,PRS_ID int
    , y int);
    insert into pr_tst values (16 , 8 , null);
    insert into pr_tst values (17 , 9 , null);
    insert into pr_tst values (18 , 10, null);
    insert into pr_tst values (20 , 10, null);
    insert into pr_tst values (23 , 5 , null);
    insert into pr_tst values (25 , 5 , null);
    insert into pr_tst values (28 , 30, null);
    insert into pr_tst values (30 , 32, null);
    create table PR_PRS_TST
    (PRS_ID int
    , PRS_WT int)
    insert into pr_prs_tst values (8 , 8  );
    insert into pr_prs_tst values (9 , 9  );
    insert into pr_prs_tst values (10 , 10);
    insert into pr_prs_tst values (5 , 12 );
    insert into pr_prs_tst values (30 , 19);
    insert into pr_prs_tst values (32 , 17);
    commit;
    update pr_tst t
       set t.y = (select x.prs_wt
                  from pr_prs_tst x
                 where x.prs_id = t.prs_id
    select *
      from pr_tst
    ID PRS_ID Y
    16  8  8
    17  9  9
    18 10 10
    20 10 10
    23  5 12
    25  5 12
    28 30 19
    30 32 17

Maybe you are looking for

  • Windows error 0xC1900101-0x40017 when trying to install windows 8.1

    Hello. I am standing with a problem who is beggining to pestering me. I have tried to update my windows 8 to windows 8.1 the past week. But every times i tries, my screen goes blue and it says windows have gone into a proplem and it need to restart.

  • Trouble with pci 16 sb4

    Trying to install card and get no sound. I let windows ME pull the drivers for the CD at start-up. Probably why I am having problems. I cannot unistall and try again. It automatically finds the drivers at startup. WHen I try to run set-up from the CD

  • IMac not printing out full pages - HELP!

    Hello, I'm using a friend's iMac, Version 10.4.11, and went into Printer Settings in an attempt to try and set the printer options so my printer (an HP Deskjet 920C) will actually print a full page (at this time, it's cutting off some of the page --

  • Can I create a process in 6.0 and recompile it to 4.0 for my customer?

    I have customer that has Lookout 4.0 and I have 6.0 integrator. What problems will I encounter if I develope on 6.0 and recompile it on his program? Have there been new objects added which do not exist in 4.0? It is difficult for me to program at my

  • Give Dynamic Text value problem

    Hello again, Currently I'm having another problem with AS3. I have 1 Scene, 2 Movie Clips. 1 Movie Clip is placed on the main Timeline, whereas the other is placed within that Movie Clip. I create a TextField with the instance name "question" in the