With out try and catch

with out any try and catch is exception handling is possible in java when doing manupulation with database.
assume mydatabase is oracle,if i am going to insert a record of a primarykey field, which is already existing.i don't want to put with in try and catch.This is my case.if u have the answer for this please mail me.
thanks
rajan

assume mydatabase is oracle,if i am going to insert a
record of a primarykey field, which is already existing.
i don't want to put with in try and catch.why not? i thought the fact that checked exceptions get thrown from methods is a good thing, since you're forced either to deal with the fault immediately, or throw to the next level up, possibly transformed into an application-level exception. if methods were to simply return method-specific error codes, nothing forces anything in the program to deal with errors in a reasonable manner. not that exceptions force sensible handling of the fault--but they do force recognition of the fault.
what alternative do you desire?
--p

Similar Messages

  • Try and Catch don't work on powershell module

    Hi everyone,
    i'm tring to create a module with a try and catch, but when i call it, the block of expetion doesn't work as i expect, while if i use the code as a function only it works...
    Here the code
    function global:Process{
    param([string]$Process)
    ######################################MAIL################################
    function global:SendMail(){
    param([string]$Services)
    $Dest="xxx"
    $smtpServer = "xxx"
    $msg = new-object Net.Mail.MailMessage
    $smtp = new-object Net.Mail.SmtpClient($smtpServer)
    $msg.From = "xxx"
    $msg.To.Add($Dest)
    $msg.Subject = "Notification about $Services activity"
    $msg.Body = "xxxx"
    $smtp.Send($msg)
    switch($Process){
    "DSP"{
    if((Get-Service Fax | ForEach-Object {$_.Status}) -eq "Stopped"){
    try
    start-service Fax -ea Stop
    catch
    if ( $error[0].Exception -match "Microsoft.PowerShell.Commands.ServiceCommandException")
    $error[0].Exception | Out-File C:\log.txt
    $SendMail $Process
    elseif((Get-Service Fax | ForEach-Object {$_.Status}) -eq "Running"){
    Stop-Service Fax}
    Export-ModuleMember -Function Process
    Could you help me? Thanks so much
    Cristian

    Hello,
    You should ask in the
    Windows PowerShell forum.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer.
    My Blog: Unlock PowerShell
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ('6F6C646B61726C406F75746C6F6F6B2E636F6D'-split'(?<=\G.{2})'|%{if($_){[char][int]"0x$_"}})

  • Textfields Try and Catch

    Hi All, just a quick question really...
    Was wondering how I would go about checking user inputs into textfields?
    For example if the user enters the number 12 and you're only allowed to enter numbers between 1-10 how could I send a pop up error message to say "You can only enter numbers between 1-10"
    A way I thought about doing this was with a try and catch method, there could be another way of doing this, all other methods appreciated too.
    function captureNumbers(evt:MouseEvent):void {
    try{
    numberSelect.push(Number(number1.text));
    catch{
    if (numberSelect > 10){
    throw new Error("You must choose a number between 1 - 10");
    button1.addEventListener( MouseEvent.MOUSE_UP, captureNumbers);
    This is what ive got so far which doesn't seem to be working...
    Thanks in advance

    public class userBean(String user) {
         // Loads user preferences
         String fname;
         String lname;
         String greeting;
         void public readDB()
              Connection conn = null;
              PreparedStatement pstmt = null;
              ResultSet result = null;
              try {
                   Class.forName("oracle.jdbc.driver.OracleDriver");
              catch (Exception e) { System.out.println("Can't load JDBC driver:" + e); return; }
                   try{
                   conn = DriverManager.getConnection
                       ("jdbc:oracle:thin:@username.domain.com:1521:adm2", "login", "pass");
                   // @machineName:port:SID,   userid,  password d     
                   stmt = conn.prepareStatement("select fname,lname,greeting from people where userid = ?");
                     stmt.setString(1,user);
                     result= stmt.executeQuery();
                     fname = result.getString(1);
                     lname = result.getString(2);
                     stmt.close();
                   catch (Exception e) { System.out.println("Error with JDBC Connection:" + e); return;}          
    }

  • Repost as question for points: What did I do wrong? (Try and Catch program)

    This has to be a try and catch program.
    This is the given output sample:
    OUTPUT SAMPLE #2 for input.txt: 12345 222256 -3 123 -56784 555557 6345678 x x x 81234 121212 x x 123434 x x 1009098 2099
    Please input the name of the file to be opened: input.txt
    For number 12345 the sum of digits is: 15
    For number 222256 the sum of digits is: 19
    Found an integer (-3), but it is negative. Will ignore!
    For number 123 the sum of digits is: 6
    Found an integer (-56784), but it is negative. Will ignore!
    For number 555557 the sum of digits is: 32
    For number 6345678 the sum of digits is: 39
    For number 81234 the sum of digits is: 18
    For number 121212 the sum of digits is: 9
    For number 123434 the sum of digits is: 17
    For number 1009098 the sum of digits is: 27
    For number 2099 the sum of digits is: 20
    Here is what I have so far.
    import java.util.Scanner;
      import java.io.*;// FileNotFoundException
    public class Assignment3b {
      public static void main (String[]args){
        Boolean fileOpened = true; 
        String fileName;
        int n,mod=0,sum=0,t=0;
        Scanner inputFile = new Scanner(System.in);
        System.out.print("Please input the name of the file to be opened: ");
        fileName = inputFile.nextLine();
        System.out.println();
        try {
                inputFile = new Scanner(new File(fileName));
            catch (FileNotFoundException e) {
                System.out.println("--- File Not Found! ---");
                fileOpened = false;
            if (fileOpened) {
              while (inputFile.hasNext()){
                if (inputFile.hasNextInt()){
                  n = inputFile.nextInt();
                  t=n;
                  while(n>0){
                    mod = n % 10;
                    sum = mod + sum;
                    n = n/10;
                  System.out.println ("For number " + t + " the sum of digits is : " + sum);
                  mod = 0;
                  sum = 0;
                  while (n<0) {
                    System.out.println ("Found an integer (" + t + "), but it negative. Will ignore!");
                    inputFile.next();
                    n = inputFile.nextInt();
                else {
                  inputFile.next();
    }Everything seems to work fine until, it is time to deal with negative numbers. How can I fix this. Please put your reply in layman's terms to the best of your ability.
    Thanks and God Bless.

    // COSC 236                                Assignment # 3
    // YOUR NAME: Anson Castelino
    // DUE-DATE:
    // PROGRAM-NAME: Assignment # 3 Prt2
    //import packages
      import java.util.Scanner;
      import java.io.*;// FileNotFoundException
    public class Assignment3b {
      public static void main (String[]args){
        Boolean fileOpened = true; 
        String fileName;
        int n,mod=0,sum=0,t=0;
        Scanner inputFile = new Scanner(System.in);
        System.out.print("Please input the name of the file to be opened: ");
        fileName = inputFile.nextLine();
        System.out.println();
        try {
                inputFile = new Scanner(new File(fileName));
            catch (FileNotFoundException e) {
                System.out.println("--- File Not Found! ---");
                fileOpened = false;
            if (fileOpened) {
              while (inputFile.hasNext()){
                if (inputFile.hasNextInt()){
                  n = inputFile.nextInt();
                  t=n;
                  while(n>0){
                    mod = n % 10;
                    sum = mod + sum;
                    n = n/10;
                  System.out.println ("For number " + t + " the sum of digits is : " + sum);
                  mod = 0;
                  sum = 0;
                  if (n<0) {
                    System.out.println ("Found an integer (" + t + "), but it is negative. Will ignore!");
                    inputFile.next();
                  inputFile.hasNext();
                else {
                  inputFile.next();
    }Updated code.
    current output is as follows:
    Please input the name of the file to be opened: [DrJava Input Box]
    For number 12345 the sum of digits is : 15
    For number 222256 the sum of digits is : 19
    For number -3 the sum of digits is : 0 <-------- this part is not suppose to be here.
    Found an integer (-3), but it is negative. Will ignore!
    For number -56784 the sum of digits is : 0 <-------- this part is not suppose to be here.
    Found an integer (-56784), but it is negative. Will ignore!
    For number 6345678 the sum of digits is : 39
    For number 81234 the sum of digits is : 18
    For number 121212 the sum of digits is : 9
    For number 123434 the sum of digits is : 17
    For number 1009098 the sum of digits is : 27
    For number 2099 the sum of digits is : 20
    >

  • Class that contains finally block with out try block

    How can we make a class that will contain finally block with out try block.

    dkpadhy wrote:
    How can we make a class that will contain finally block with out try block.You can�t.
    And frankly it seems to me that you don�t understand what you�re doing.
    Care to explain further?

  • How the try and catch blocks work?

    For the following section of code from the class QueueInheritanceTest...how the try and catch blocks work?
    The Class...
    public class QueueInheritance extends List {
    public QueueInheritance() { super( "queue" ); }
    public void enqueue( Object o )
    { insertAtBack( o ); }
    public Object dequeue()
    throws EmptyListException { return removeFromFront(); }
    public boolean isEmpty() { return super.isEmpty(); }
    public void print() { super.print(); }
    Testing...
    public class QueueInheritanceTest {
    public static void main( String args[] ){
    QueueInheritance objQueue = new QueueInheritance();
    // Create objects to store in the queue
    Boolean b = Boolean.TRUE;
    Character c = new Character( '$' );
    Integer i = new Integer( 34567 );
    String s = "hello";
    // Use the enqueue method
    objQueue.enqueue( b );
    objQueue.enqueue( c );
    objQueue.enqueue( i );
    objQueue.enqueue( s );
    objQueue.print();
    // Use the dequeue method
    Object removedObj = null;
    try { while ( true ) {
    removedObj = objQueue.dequeue();
    System.out.println(removedObj.toString()+" dequeued" );
    objQueue.print();
    catch ( EmptyListException e ) {
    System.err.println( "\n" + e.toString() );

    If you want a basic introduction to try/catch blocks, read any introductory text or the tutorials on this site.
    Here are some:
    Sun's basic Java tutorial
    Sun's New To Java Center.
    JavaRanch. To quote the tagline on their homepage: "a friendly place for Java greenhorns."
    In terms of this particular case, it looks like the code is using an exception being thrown to get out of a loop. IMHO that's bad design -- exceptions should be used for exceptional circumstances, and if you use it to get out of a loop, then you're certain it's going to happen, and that means that it's not exceptional.
    When you post code, please wrap it in  tags so it's legible.

  • The email address connected to an old itunes account is no longer active. Can't access music i bought many years ago with out it and the old password.

    the email address connected to an old itunes account is no longer active. Can't access music i bought many years ago with out it and the old password.

    neilfromvancouver wrote:
    the email address connected to an old itunes account
    Old iTunes account?
    You created a new iTunes account instead of updating the old account with new info?'
    Contact iTunes support.

  • Is there try and catch in oracle query ?

    hi
    is there try and catch in oracle query ?
    try
    do some update
    catch
    if there was error go to here
    }

    >
    is there try and catch in oracle query ?
    >
    Yes - except it uses BEGIN --- EXCEPTION --- END where BEGIN replaces the try and EXCEPTION replaces the catch.
    BEGIN
    -- Calculation might cause division-by-zero error.
       pe_ratio := stock_price / net_earnings;
       dbms_output.put_line('Price/earnings ratio = ' || pe_ratio);
    EXCEPTION  -- exception handlers begin
    -- Only one of the WHEN blocks is executed.
       WHEN ZERO_DIVIDE THEN  -- handles 'division by zero' error
          dbms_output.put_line('Company must have had zero earnings.');
          pe_ratio := null;
       WHEN OTHERS THEN  -- handles all other errors
          dbms_output.put_line('Some other kind of error occurred.');
          pe_ratio := null;
    END;  -- exception handlers and block end here
    /The multiple WHEN conditions correspond to using multiple 'catch' statements in Java.

  • Is lag to be expected? Brush with Outer Glow and Stroke

    I have a new Dell XPS One 2720 running Windows 8, 4th Gen i7, 16GB RAM, Nvidia 750M 2GB and Cintiq 21UX hooked up via HDMI as a second monitor in Extended Desktop mode.
    I am a comic artist and am working on an A4, 400 dpi document in Photoshop CC 64bit and if I try to draw a line with an Outer Glow and 5 point Stroke applied I get crippling lag.
    Is this normal for this spec machine, I've just 'upgraded' from a 4 year old iMac and I would say Photoshop ran better on that machine than my new PC. That can't be right, can it?

    Thanks for the link to the other thread JJMack, will check that out.
    Curt Y, Turned off all visual effects in System Properties > Advanced > Performance and problems contrinued.
    Might be getting somehwere though. Opened up the exact same file in the 32 Bit version of Photoshop CC and I don't get any lag at all when drawing a line with a stroke and outer glow applied.
    Obvious difference between the 32 and 64 Bit versions and  is that the former uses less of my systems RAM, so I went in to the Performance Tab in Preferences and changed all the values in the 64 bit version to the same as the 32 bit version and the lag was gone in the 64 bit version too.
    Downside to this is that Photoshop is now using only 13% of my available RAM (1895Mb). I also changed the Cache Tile Size from 1024K to 128K and unticked USE Open CL in the Graphics Processor Settings.
    Does this point to some bad RAM?

  • Invoice creation with out PO and Item using BAPI_INCOMINGINVOICE_CREATE

    Hello,
    I have a requirement to create the invoce with out PO number. Is there any chance to create the invoice through BAPI_INCOMINGINVOICE_CREATE with out using PO number and item ( ITEMDATA table ).
    Thanks for your support.
    Regards
    Nags

    Hello Burak, 
    Now i am able to post the docuemnt through BAPI_ACC_DOCUMENT_POST, unable to post the parking docuemnt.
    WIth this Function module PRELIMINARY_POSTING_FB01  it very big process to map the fields, because SAP it self
    filling lot of fields.  
    Mean while i have tried the BDC to park the document, but i am getting an error that 'Parking is not possible through batch input'.
    RECENTLY ADDED
    Now i am getting an issue when we post with the function moduel :PRELIMINARY_POSTING_FB01 , after executing the function module it is giving the document number, but if it fails there is no return table or exeptions to catch the errors . is there any way to over come the problem.
    I need to post the document and park the docuemnt.
    please suggest.
    Thanks & Regards
    Nags

  • I brought a new computer is there any way to put the items that i have on my iphone and ipad on my itunes with out erasing and reformating my divices.

    I brought a new computer is there any way to put the items that i have on my iphone and ipad in my itunes. I know the music and apps i paid for but what about the songs and photos. that are not paid for. and having it sync with out it telling me that it has to erase all my things.

    See Recover your iTunes library from your iPod or iOS device.
    tt2

  • Can analytics can be performed with out BI and analytics implemented on CRM

    Hi all,
    I want to configure CRM system with marketing, Sales, service scenarios only and i want to perform some Lead analysis, Campaing analysis etc. is it possible with out integration of BI, any installations of CRM analytics modules?
    Rgds,
    Rao

    Hi Rao
    With just ABAP reports you can do reporting like in any OLTP system be it R/3 or CRM. The OLAP systems were initially made in order to get in-depth reporting using the data warehousing techniques to store, extract, retrieve data for presentation so that there is no performance degradation on the OLTP system.
    Now CRM analytics is just technically like any ERP module analytics (be it CO, FI, SD etc.: if you put aside the diff. kinds of extraction techniques) and like them needs a BI system. The different modeling techniques have to be built normally on a separate BIW system and the results are applied back to business processes in CRM/ERP.
    Since netweaver 2004 the BI content as an addon as against the prior releases. Not many customers follow the idea of performing the BI related transactions on the same system as the CRM is unless you have a really robust hardware.

  • Help with try and catch

    I know I posted this quesiton earlier,but I am sitll having problems. In the following code, the exception IS caught if the user enters a String instead of a Int. But the Exception is NOT caught if the user enters
    the "Enter" key.
                do
                              flag=false;
                     //set the quantity to user input                                                   
                     System.out.print("Enter the quantity:");
                     try
                       amount = input.nextInt();
                          if (amount > 0)  //executes when amount is less then or equal to zero
                             flag=false; 
                          } //end of if
                          else
                               System.out.println("You must enter a positive quantity");
                                              flag=true;
                     }  //end of try
                     catch (Exception e)
                                      input.nextLine();
                                      System.out.println("You must enter a number");
                                      flag=true;
                }while(flag==true);  //end of do while
                          

    nextInt won't read "just the enter key"... it blocks until reads "something".
    Try something like this instead...
    Note: java.io.Console is new in 1.6
    package krc.utilz.io;
    // usage:
    // import krc.utilz.io.Console;
    // String name = Console.readLine("Enter your name : ");
    // while ( (score=Console.readInteger("Enter a score between 0 and 100 (enter to quit) : ", 0, 100, -1)) != 1) { ... }
    import java.util.Date;
    import java.text.DateFormat;
    import java.text.SimpleDateFormat;
    public abstract class Console
      private static final java.io.Console theConsole = System.console();
      private static final DateFormat dateFormatter = new SimpleDateFormat("dd/MM/yyyy");
      public static String readLine(String prompt) {
        while(true) {
          try {
            System.out.print(prompt);
            return theConsole.readLine();
          } catch (Exception e) {
            System.out.println("Oops: "+e);
      public static Date readDate(String prompt) {
        while(true) {
          try {
            String response = readWord(prompt+" (dd/mm/yyyy) : ");
            return dateFormatter.parse(response);
          } catch (Exception e) {
            System.out.println("Oops: "+e);
      public static String readWord(String prompt) {
        String response = null;
        while(true) {
          try {
            response = readLine(prompt);
            if( response!=null && response.length()>0 && response.indexOf(' ')<0 ) break;
            System.out.println("A single word is required. No spaces.");
          } catch (Exception e) {
            System.out.println("Oops: "+e);
        return(response);
      public static char readLetter(String prompt) {
        char c = '\0';
        while(true) {
          try {
            String response = readLine(prompt);
            if ( response!=null && response.length()>0 ) {
              c = response.charAt(0);
              if(Character.     isLetter(c)) break;
            System.out.println("A letter (A through Z) is required. Upper or lower case.");
          } catch (Exception e) {
            System.out.println("Oops: "+e);
        return(c);
      public static int readInteger(String prompt) {
        int i = 0;
        String response = null;
        while(true) {
          try {
            response = readLine(prompt);
            if ( response!=null && response.length()>0 ) {
              i = Integer.parseInt(response);
              break;
            System.out.println("An integer is required.");
          } catch (NumberFormatException e) {
            System.out.println("\""+response+"\" cannot be interpreted as an integer!");
          } catch (Exception e) {
            System.out.println("Oops: "+e);
        return(i);
      public static int readInteger(String prompt, int lowerBound, int upperBound) {
        int i = 0;
        while(true) {
          i = readInteger(prompt);
          if ( i>=lowerBound && i<=upperBound ) break;
          System.out.println("An integer between "+lowerBound+" and "+upperBound+" (inclusive) is required.");
        return(i);
      public static int readInteger(String prompt, int defualt) {
        int i = 0;
        String response = null;
        while(true) {
          try {
            response = readLine(prompt);
            return (response!=null && response.trim().length()>0
              ? Integer.parseInt(response)
              : defualt
          } catch (NumberFormatException e) {
            System.out.println("\""+response+"\" cannot be interpreted as an integer!");
          } catch (Exception e) {
            System.out.println("Oops: "+e);
      public static int readInteger(String prompt, int lowerBound, int upperBound, int defualt) {
        int i = 0;
        while(true) {
          i = readInteger(prompt, defualt);
          if ( i==defualt || i>=lowerBound && i<=upperBound ) break;
          System.out.println("An integer between "+lowerBound+" and "+upperBound+" (inclusive) is required.");
        return(i);
      public static double readDouble(String prompt) {
        double d = 0;
        String response = null;
        while(true) {
          try {
            response = readLine(prompt);
            if ( response!=null && response.length()>0 ) {
              d = Double.parseDouble(response);
              break;
            System.out.println("A number is required.");
          } catch (NumberFormatException e) {
            System.out.println("\""+response+"\" cannot be interpreted as a number!");
          } catch (Exception e) {
            System.out.println("Oops: "+e);
        return(d);
      public static double readDouble(String prompt, double lowerBound, double upperBound) {
        while(true) {
          double d = readDouble(prompt);
          if ( d>=lowerBound && d<=upperBound ) return(d);
          System.out.println("A number between "+lowerBound+" and "+upperBound+" (inclusive) is required.");
      public static boolean readBoolean(String prompt) {
        while(true) {
          try {
            String response = readWord(prompt+" (Y/N) : ");
            return response.trim().equalsIgnoreCase("Y");
          } catch (Exception e) {
            System.out.println("Oops: "+e);
    }

  • I rented a movie on an iPad mini while connected to wifi. Now I'm in the car with out Internet and when I try to play the movie is says "could not load movie" what can I do? I purchased it from iTunes and let it load fully before leaving.

    Can somebody help me figure this out? So before a road trip I rented a movie on my Ipad mini. The movie fully loaded before I left. It downloaded under wifi. Now that I'm in the car I tried to watch the movie but it isn't working. When I press play an error message pops up saying "could not load movie" can I not watch it with our wifi? What's going on? What can I do to watch the movie?

    Having the same problem. Watched 25 minutes of a rental and it stopped with the message"unable to load video"
    Using current version IPad mini.
    Ios7 is  HUGH PIECE OF CRAP!!!!

  • Stack that implements try and catch problem

    Hi guys, i'm pretty new to java (and programming all together) , have a difficulties with this calculator i'm working on.
    I've got a stack which holds for instance 5 + 6 * 2
    which equals 17. What i have is:
    Stack<String> expression = new Stack<String>(
    while(expression.size() >= 2){
    String X = new String();
    String Y = new String();
    X = expression.pop();
    System.out.println("popin stack"+X); //debuggin purposes
    try {double x = Double.parseDouble(X);  
                   if (X.equals('+')) {
                       Y = expression.pop();
                       double y = Double.parseDouble(Y);
                       String result = Operation.PLUS.eval(x,y);
                       System.out.println(result);
                       expression.push(result);
    else if (X.equals('-')) {
    Y = expression.pop();
    double y = Double.parseDouble(Y);
    String result = Operation.MINUS.eval(x,y);
    System.out.println(result);
    expression.push(result);
    else if (X.equals('/')) {
    Y = expression.pop();
    double y = Double.parseDouble(Y);
    String result = Operation.DIVIDE.eval(x,y);
    System.out.println(result);
    expression.push(result);
    else {
    Y = expression.pop();
    double y = Double.parseDouble(Y);
    String result = Operation.TIMES.eval(x,y);
    System.out.println(result);
    expression.push(result);
    catch () { }
    My idea behinde this was i'd used the try statement
    to prevent the element being converted to a double if it isn't a String which this can be done to i.e any integer. I'm not sure if i've gone about this right. And have not idea of what i'm suppose to be catchin i.e the throwable?. Any input/direction would be great, thanks.

    Hi guys, i'm pretty new to java (and programming all together) , have a difficulties with this calculator i'm working on.
    I've got a stack which holds for instance 5 + 6 * 2
    which equals 17. What i have is:
    Stack<String> expression = new Stack<String>(
    while(expression.size() >= 2){
         String X = new String();
         String Y = new String();
         X = expression.pop();
         System.out.println("popin stack"+X); //debuggin purposes
         try {double x = Double.parseDouble(X);
         if (X.equals('+')) {
               Y = expression.pop();
               double y = Double.parseDouble(Y);
               String result = Operation.PLUS.eval(x,y);
               System.out.println(result);
               expression.push(result);
          else if (X.equals('-')) {
               Y = expression.pop();
               double y = Double.parseDouble(Y);
               String result = Operation.MINUS.eval(x,y);
               System.out.println(result);
               expression.push(result);
         else if (X.equals('/')) {
               Y = expression.pop();
               double y = Double.parseDouble(Y);
               String result = Operation.DIVIDE.eval(x,y);
               System.out.println(result);
               expression.push(result);
         else {
               Y = expression.pop();
               double y = Double.parseDouble(Y);
               String result = Operation.TIMES.eval(x,y);
               System.out.println(result);
               expression.push(result);
         catch () { }
    } My idea behinde this was i'd used the try statement
    to prevent the element being converted to a double if it isn't a String which this can be done to i.e any integer. I'm not sure if i've gone about this right. And have not idea of what i'm suppose to be catchin i.e the throwable?. Any input/direction would be great, thanks.
    Edited by: javaUser on Dec 30, 2007 5:59 PM

Maybe you are looking for

  • Problem when creating connection pool for Informix

    Hi all, could you please help me to create a connection pool for informix? I use a com.informix.jdbcx.IfxXADataSource driver and here are the properties user=informix password=informix url=jdbc:informix-sqli://TW010766:1526/vka:informixserver=TW01076

  • Current version of 2014

    What is the current of cc 2014, and when is the next update scheduled?

  • Classic to epma

    Hi, can anyone pls tell me how to migrate a classic application to an epma application?? I am using ver 11.1.1.1. Also i am thinking of installing ver 11.1.1.3.... is it the same process as in version 11.1.1.1?? Thanks.

  • Need to know at what point does file get copied to table

    Hi. I'm looking at the file browse page item and wanted to find out at what point does the file's data get placed in wwv_flow_files? Does it do it automatically on page submit/refresh?

  • Auto resolution not adapting to zoom level

    As the title states, the resolution does not adapt to the zoom level dispite having Auto selected. I also checked in the advanced composition options and preserve resolution when nested is selected. This issue happens in every comp and different proj