Need help in urgent!!!

May I know how to solve this problem, the error code as below:
CDR-20014
I am new to oracle designer 6i and I am a srudent. I am currently have a project on-hand which due on 7th April 2004. Please help me....
Thank you

Normally I would advise you to go to the appropriate forum (the Designer forum is under OTN >> Products >> Developer Suite) but my recent experience of trying to use it suggests it to be a bit of a ghost town - lots of questions, not many answers, just tumbleweeds blowing through.
Trying increasing the space allocated to the Diagram_Tables tablespace, either by adding another datafile or setting AUTOEXTEND for the existing datafile. You may need a DBA's help for this.
Cheers, APC

Similar Messages

  • Please i need help very urgent !!! after deleting my exchange account because the company changed the password , I lost 150 200 contacts and i need to get them back very soon ! please help

    Please i need help very urgent !!! after deleting my exchange account because the company changed the password , I lost 150 200 contacts and i need to get them back very soon !  i never backed up on itunes ..please help

    No. The contacts are "owned" by the Exchange server.
    The Exchange server is owned by the company.
    Everything on the Exchange server is owned by the company.
    If you quit or were terminated, and your access to the system has been revoked, then there is nothing you and do at this point. Once you deleted the account from your phone, all of the associated data was deleted.
    NEVER store personal information on company systems.

  • Need Help in Urgent please~

    Hello! Need help please~ I cannot erase and partition disk in disk utility. It always alert message that" Partition Failed with error. Couldn't open device". How can I fix this? Help please~

    Try this procedure:
    http://osxdaily.com/2012/03/05/fix-partition-failed-error-mac/

  • Installing Collaboration Suite on Remote Linux Server! Need Help! URGENT!

    Hi everybody,
    I am a beginner having few months of exp as Apps DBA. I was given a task of installing OCS on a remote linux server. How to install from my local windows desktop. Wht r the steps to be followed? I need help Immediately! Is it possible through SSH ?
    Thanks in advance,
    Manoj.

    You need to have:
    - Ssh running on the remote server
    - An ssh client on your local PC (e.g. PUTTY, it's a freeware), capable to tunnel and forward X traffic
    - An X client running on your local PC
    Then:
    - On the server, configure X to accept connections from your PC:
    export DISPLAY=your_ip_address:0
    - Then, on the server, you have to enable your PC to use X but I can't remember the command.... will search for it and update the thread
    - Configure and activate the local X client on your PC
    - Configure PUTTY to forward X traffic. Connect via ssh logging in normally to the remote machine. Just leave the session open (maybe it's a good idea to remove any timeouts parameters). The SSH tunnel is now built, and the X traffic should be OK
    - Test the connection: if you type "xclock" in the SSH window, a nice little analogic clock will appear on your PC desktop (if everything is OK).
    - If the clock appears.... Well, go on with your remote installation! :-)
    Bye,
    Roberto

  • I need help! urgent !!! MAIL CLIENT

    I need "simple" mail client in made Jbuilder for my school. Please help me. I have no idea how to do it. I need source etc. Please help me. It's very urgent. Thanx very much.

    Thx U. But I need sometnihg more... My english isn't
    perfect, maybe this is the reason why u didn't
    anderstand me. Here's how I interpreted what you said. Please point out where I misinterpreted:
    "This has been assigned to me. It is my responsibility. I am supposed to do it so I can learn. But I don't care about learning. All I care about is the number or letter that signifies the quality of the work turned in. I do not wish that number or letter to accurately reflect what I have learned in this class, because I've learned nothing, or else I have learned something, but am too lazy to demonstrate that.
    "Therefore, I'm requesting that somebody else do my work for me, so that I can take credit for their work, and receive a value that I did not deserve.
    "I have no respsect for my insructor, my classmates, or the people I'm asking for help. All that matters is my own selfish, short-sighted, misguided objective."

  • I need help -extremely urgent!

    Hi there
    i have an assignment to submit in one month and i'm stuck using Java on my personal computer. I installed the lastest version 1.5 and when working with Textpad and compiling the code it leaves me with the following message:
    Registry key 'Software\JavaSoft\Java Runtime Environment\CurrentVersion'
    has value '1.5', but '1.3' is required.
    Error: could not find java.dll
    Error: could not find Java 2 Runtime Environment.
    Tool completed with exit code 2
    Please can someone help me out i'm really frustrated and lost. Thanx

    1) subject says "urgent" - STRIKE ONE
    2) message starts, "I have an asignment" - STRIKE TWO
    3) message states further, "I'm stuck using Java" - STRIKE THREE
    Mind you, I'd help you if I knew the answer, but unfortunately I don't. But as an FYI, a lot of potential helpers jusy went out the window with you 3 strikes mentioned above.
    Good luck.

  • I need help in urgent..please!!!

    my illustrator just freezed while saving my work file and it still like the picture down you see...
    please help, i'cant lose my works.. Illustrator not responding and i can't do anything.
    there are 2 files open, because of this i don't want to close illustrator... i need save these files there are lot of work !!!
    cs6 and W7 btw...

    yes it's frozen too..
    2 files open but no linked illustrator file in one try save, just images which already embeded...
    the other file may have linked files in it, but i don't know is that effects this file's save progress ?
    btw illustrator still same and save pop-up screen dosent moved even one bit!!!
    and as a note: i can press "stop" button but it's seems not working!
    Message was edited by: marimor77

  • I need help an urgent help in vectors

    I am comparing the elements of one vector with everyother element of another vector.If a match is found I need to remove the element from the second vector and should obtain the remaining elements of the second vector.Could u please help in this!
    ie)
    Vector v1=new Vector();
    Vector v2=new Vector();
    v1.addElement("apple");
    v1.addElement("grapes");
    v1.addElement("mango");
    v1.addElement("orange");
    v1.addElement("pineapple");
    v1.addElement("banana");
    v2.addElement("cherry");
    v2.addElement("berry");
    v2.addElement("papaya");
    v2.addElement("mango")
    v2.addElement("apple");
    here in this example , if i compare the vectors (v1,v2), the elements in v2(mango and apple) are contained in v1 also.so i need to remove the elements from vector v2 which are common and need to fetch the remaining elements in the v2 vector.so the resulting v2 vector should contain only 'cherry','berry','papaya',and i need to display the content of v2 vector after the removal of similar elements .could u please help me how to do this!!!!!.

    Much easier way, use Vector.removeAll(Collection c).
    As class Vector is an instance of interface Collection, you can pass in a vector.
    i.e.
    import java.util.*;
    public class tester
         public static void main(String[] args)
              tester.refineList();
         public static void refineList()
              Vector v1=new Vector();
              Vector v2=new Vector();
              v1.addElement("apple");
              v1.addElement("grapes");
              v1.addElement("mango");
              v1.addElement("orange");
              v1.addElement("pineapple");
              v1.addElement("banana");
              v2.addElement("cherry");
              v2.addElement("berry");
              v2.addElement("papaya");
              v2.addElement("mango");
              v2.addElement("apple");
              v2.removeAll(v1);
              for(int a = 0; a < v2.size(); a++)
                   System.out.println(v2.elementAt(a).toString());
    }Hope this helps
    D

  • Need Help it urgent for me

    Hello Experts,
                       can anyone help me how to call the executable report in BSP. Is it possible through SUBMIT ? If it is possible then provide me the code.
    Thanks in Advance.
    Regards,
    Hetal

    If u just wanna execute a report:
    submit ZCRM_DNO_SERVICE_MONITOR_BSP and return
    If u just wanna execute a report ALV and return the info to BSP:
    1- Fill the selection screen parameteres/select-options:
    IF l_tkt IS NOT INITIAL.
          wa_table_monitor-SELNAME = 'SOBJECT'.
          wa_table_monitor-KIND = 'S'.
          wa_table_monitor-SIGN = 'I'.
          wa_table_monitor-OPTION = 'EQ'.
          wa_table_monitor-LOW = l_tkt.
          wa_table_monitor-HIGH = ' '.
          APPEND wa_table_monitor TO table_monitor.
          l_tkt_low = l_tkt.
        ELSE.
          CLEAR l_tkt_low.
        ENDIF.
        IF l_date IS NOT INITIAL AND l_date_high IS INITIAL.
          CONCATENATE l_date+6(4) l_date+3(2) l_date(2) INTO l_date_int.
          wa_table_monitor-SELNAME = 'SPOST'.
          wa_table_monitor-KIND = 'S'.
          wa_table_monitor-SIGN = 'I'.
          wa_table_monitor-OPTION = 'EQ'.
          wa_table_monitor-LOW = l_date_int.
          wa_table_monitor-HIGH = ' '.
          APPEND wa_table_monitor TO table_monitor.
          l_date_low = l_date_int.
        ELSEIF l_date IS NOT INITIAL AND l_date_high IS NOT INITIAL.
          CONCATENATE l_date+6(4) l_date+3(2) l_date(2) INTO l_date_int.
          CONCATENATE l_date_high+6(4) l_date_high+3(2) l_date_high(2) INTO l_date_high_int.
          wa_table_monitor-SELNAME = 'SPOST'.
          wa_table_monitor-KIND = 'S'.
          wa_table_monitor-SIGN = 'I'.
          wa_table_monitor-OPTION = 'BT'.
          wa_table_monitor-LOW = l_date_int.
          wa_table_monitor-HIGH = l_date_high_int.
          APPEND wa_table_monitor TO table_monitor.
          l_date_low = l_date_int.
          l_date_high = l_date_high_int.
        ELSE.
          CLEAR: l_date_low, l_date_high.
        ENDIF.
        IF l_cliente IS NOT INITIAL.
          wa_table_monitor-SELNAME = 'PONUM'.
          wa_table_monitor-KIND = 'S'.
          wa_table_monitor-SIGN = 'I'.
          wa_table_monitor-OPTION = 'EQ'.
          wa_table_monitor-LOW = l_cliente.
          wa_table_monitor-HIGH = ' '.
          APPEND wa_table_monitor TO table_monitor.
          l_cliente_low = l_cliente.
        ELSE.
          CLEAR l_cliente_low.
        ENDIF.
          wa_table_monitor-SELNAME = 'P_VARI'.
          wa_table_monitor-KIND = 'P'.
          wa_table_monitor-LOW = '/ALL'.
          APPEND wa_table_monitor TO table_monitor.
        submit ZCRM_DNO_SERVICE_MONITOR_BSP and return WITH SELECTION-TABLE table_monitor.
        import gt_report_list to it_monitor from memory id sy-uname.
    2- in your report coment the call of the ALV and replace with a export to memory statement:
    export gt_report_list to memory id sy-uname.
    ** call list viever
    *  CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
    *    EXPORTING
    *      i_callback_user_command  = gc_user_command
    *      i_callback_pf_status_set = gc_pf_status
    **      i_background_id          = 'ALV_BACKGROUND'
    *      i_callback_program       = gv_repid
    *      i_default                = 'N'           "use gs_variant
    *      it_event_exit            = gt_event_exit
    *      it_fieldcat              = gt_fieldcat
    *      is_layout                = gs_layout
    *      i_save                   = gv_save
    *      is_variant               = gs_variant
    *      it_special_groups        = gt_special_groups
    *    TABLES
    *      t_outtab                 = gt_report_list.
    If u need to execute the report in a specific event or moment, explain me more the situation to guide you.
    gl

  • Shopping Cart .. need help..URGENT!!

    can somebody help me regarding abt my shopping cart.. i have successfully add the item to the cart.. but the problem is, whenever i add the same item in the cart, the quantity does not increased by one.. instead it duplicate itself in the cart... ?!?!?!?
    below are the codes...
    cart.java
    package OnlineShopBeans;
    import java.util.*;
    public class cart {
    private int noItems = 0;
    private Vector prodNames = new Vector(4);
    private Vector prodPrices = new Vector(4);
    private Vector prodSize = new Vector(4);
    private Vector prodColour = new Vector(4);
    private Vector prodOther = new Vector(4);
    private Vector prodQty1 = new Vector(4);
    /* Create a new cart */
    public cart() {};
    /* Add a shopper item */
    public void addItem(String strName, String dPrice, String dSize,String dColour,String dOther, String dQty) {
    noItems++;
    prodNames.add(strName.trim());
    prodPrices.add(dPrice);
    prodSize.add(dSize);
    prodColour.add(dColour);
    prodOther.add(dOther);
    prodQty1.add(dQty);
    /* Remove a shopper item */
    public void removeItem(int itemIndex) {
    if (itemIndex >= 0) {
    noItems--;
    prodNames.remove(itemIndex);
    prodPrices.remove(itemIndex);
    prodQty1.remove(itemIndex);
    prodSize.remove(itemIndex);
    prodColour.remove(itemIndex);
    prodOther.remove(itemIndex);
    /* Update the quantities */
    public void updateQtys(String[] qtys) {
    for (int i=0; i < qtys.length; i++) {
    prodQty1.setElementAt(qtys, i);
    /* Clear all items */
    public void clearItems() {
    noItems = 0;
    prodNames.clear();
    prodPrices.clear();
    prodQty1.clear();
    prodSize.clear();
    prodColour.clear();
    prodOther.clear();
    /* Get all items' ProdName */
    public String[] getProdNames() {
    String[] allProdNames = new String[noItems];
    for (int i = 0; i < noItems; i++) {
    allProdNames[i] = (String)prodNames.elementAt(i);
    return allProdNames;
    public double[] getProdPrices(){
    double[] allProdPrices = new double[noItems];
    for (int i = 0; i < noItems; i++) {
    allProdPrices[i] = Double.parseDouble((String)prodPrices.elementAt(i));
    return allProdPrices;
    public String[] getProdSize() {
    String[] allProdSize = new String[noItems];
    for (int i = 0; i < noItems; i++) {
    allProdSize[i] = (String)prodSize.elementAt(i);
    return allProdSize;
    public String[] getProdColour() {
    String[] allProdColour = new String[noItems];
    for (int i = 0; i < noItems; i++) {
    allProdColour[i] = (String)prodColour.elementAt(i);
    return allProdColour;
    public int[] getProdQty1() {
    int[] allProdQty1 = new int[noItems];
    for (int i = 0; i < noItems; i++) {
    allProdQty1[i] = Integer.parseInt((String)prodQty1.elementAt(i));
    return allProdQty1;
    public String[] getProdOther() {
    String[] allProdOther = new String[noItems];
    for (int i = 0; i < noItems; i++) {
    allProdOther[i] = (String)prodOther.elementAt(i);
    return allProdOther;
    this is some of the code.jsp
    <% if (actionType.equals("add")) {
    String prodName = request.getParameter("name");
    String prodSize = request.getParameter("s");
    String prodColour = request.getParameter("co");
    String prodPrice = request.getParameter("price");
    String prodQ = request.getParameter("qty");
    String prodOther = request.getParameter("ot");
    int found=0;
    for (int j=0; j < prodLength.length; j++) {
    if (prodName.equals(prodLength[j])) {
    found = 1;
    //what should i type here???? }
    if (found == 0) {
    cart.addItem(prodName, prodPrice, prodSize, prodColour,prodOther, prodQ);

    hi.. JSP is a new thingy for me.. i appreciate if u can help me in solving these 2 problems.. thanks..
    i have write a new code and now i can update the quantity when the user click "add to cart" on the same item.. but i need ur help.. i have 2 problems..
    (1):
    if i had a textbox for the buyerto enter how many qty they want to purchase for that item, then update the qty respectively to how many the buyer want.
    e.g. first enter 5 qty... display 5 in the cart. then enter 2 qty.. display 7 in the cart..
    how will the code be?? should it be in the java beans??? or the cart.jsp??
    (2):
    i cannot remove the item in the cart.. try to remove one item at a time.. but the system does not remove the item.. can u also help me in this..
    below are the new code..
    ---JAvaBeans---
    public class ShoppingCart {
           //private int noItems = 0;
         Vector products = new Vector();
              public void addProduct(Product i){
                   boolean productFound = false;
                   Enumeration productEnum= getProducts();
                   while(productEnum.hasMoreElements()){
                             Product product = (Product)productEnum.nextElement();
                             if(product.getId().equals(i.id)){
                                  productFound = true;
                                  //product.quantity += 1;
                                  product.quantity += product.quantity;
                                  break;
                   if(!productFound){
                        products.addElement(i);
              public void deleteProduct(String id){
               Enumeration productEnum = getProducts();
                   while(productEnum.hasMoreElements()){
                             Product product = (Product)productEnum.nextElement();
                             if(product.getId().equals(id)){                                             
                                  products.removeElement(product);
                                  break;                         
              public void emptyCart(){
                   products = new Vector();
              public int getNoProducts(){
                   return products.size();     
              public Enumeration getProducts(){
                   return products.elements();
              public double getTotal(){
                   Enumeration productEnum = getProducts();
                   double total=0;
                        while(productEnum.hasMoreElements()){
                             Product product = (Product)productEnum.nextElement();
                             total = total + product.getTotal();
                        return total;
    JSP Page-
    <%@page import="java.util.*"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <HTML>
    <HEAD>
    <META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
    <META name="GENERATOR" content="IBM WebSphere Studio">
    <META http-equiv="Content-Style-Type" content="text/css">
    <LINK href="theme/Master.css" rel="stylesheet" type="text/css">
    <TITLE>viewsc1.jsp</TITLE>
    </HEAD>
    <BODY>
    <jsp:useBean id="sCart" class="product.ShoppingCart" scope="session"/>
    <%@page import="product.Product"%>
         <table width="80%" border="0" align="center">
           <tr>
             <td align="center"><img src="image/title.jpg" width="450" height="80"></td>
           </tr>
           <tr>
             <td align="center" height="90">�</td>
           </tr>
           <tr>
             <td align="center" height="210">
                 <table width="98%" border="1" height="142">
                   <tr>
                     <td height="129">
                       <table border="0" width="100%">
                         <tr>
                           <td colspan="8" bgcolor="#CCCC99" align="center" height="22">
                             <img src="image/vsc.jpg" width="300" height="50">
                           </td>
                         </tr>
                         <tr>
                           <td height="15" colspan="8"></td>
                         </tr>
    <%
    String name= request.getParameter("name");
    if(name!= null){
         if(name.equals("delete")){
              String id = request.getParameter("Id");
              out.println(id);
              sCart.deleteProduct(id);
    if(sCart.getNoProducts()!=0){%>
            <tr>
              <td height="15" align="center" width="20%"><B>Item ID</B></td>         
              <td height="15" align="center" width="20%"><B>Item Name</B></td> 
              <td height="15" align="center" width="11%"><b>Size</b></td>
              <td height="15" align="center" width="9%"><B>Colour</b></td>                               
              <td height="15" align="center" width="13%"><b>Price</b></td>     
              <td height="15" align="center" width="10%"><b>Qty</b></td>
              <td height="15" align="center" width="12%"></td>
              <td height="15" align="center" width="12%"><b>Total:</b></td>
            </tr>
    <%     
              Enumeration products =sCart.getProducts();
              while(products.hasMoreElements()){
                   Product product = (Product)products.nextElement();
              %>
              <tr>        
              <td height="15" align="center" width="20%"><B><%=product.getId() %></B></td> 
              <td height="15" align="center" width="11%"><b><%=product.getName() %></b></td>         
              <td height="15" align="center" width="9%"><B><%=product.getSize() %></b></td>
              <td height="15" align="center" width="9%"><B><%=product.getColour() %></b></td>                                                          
              <td height="15" align="center" width="13%"><b><%=product.getPrice() %></b></td>          
              <td height="15" align="center" width="9%"><B><%=product.getQuantity() %></b></td>     
              <td height="15" align="center" width="9%"><B><%=product.getOther() %></b></td>
              <td height="15" align="center" width="10%"><b><%=product.getTotal() %></b></td>
               <td align='center'><a href="viewsc1.jsp?name=delete&Id=<%=product.getId() %>">Remove</a></td>
            </tr>
    <%          } %>
    <tr>
    <td height="50" valign="bottom" colspan="8" height="15" align="right" width="12%"><b>Total:</b><%=sCart.getTotal() %></td>
    </tr>
    <%
    }else{
         out.println("Your Shopping cart is Empty<BR>");
    %>
    <tr>
                      <td colspan="8" height="15" align="center">
                        <a href=chooseCategory.jsp><IMG border="0" src="image/BtnContinueshop.gif" width="153" height="27"></a>
                        <a href=EmptyCart.jsp><IMG border="0" src="image/BtnEmptyBsk.gif" width="75" height="27"> </a>
                        <a href=checkout.jsp><IMG border="0" src="image/BtnCheckOut.gif" width="156" height="27"></a>
                    </td>
                    </tr>
                  </table>
    </BODY>
    </HTML>

  • "iTunes has stopped working" - i need help! urgently :(

    Hi, I am having a major problem with my iTunes program. Until about a week ago iTunes was working fine on my Vista Home Premium. One morning this week I got up and tried to turn it on and suddenly a box would pop up after about 10-20 secs after connecting my ipod touch to the computer saying "iTunes has stopped Working" Then another box would pop up saying that when a solution becomes available, it will notify me or something to that effect. Since then I have tried everything I possible could think of like reinstalling itunes and changing my msconfig settings. I have been on countless forums as well looking for someone who has my exact same problem and the solutions presented their are not working for my situation. If anyone could help me get iTunes back working on my system, that would be great. Thanks

    I have exactly the same problem, please, if anyone can help, solution is well received.
    Thanks.

  • PLEASE I NEED HELP its URGENT

    ...i just met someone on the net we talked for a while and he asked me for my # i wasn't sure to give him my # so i ask him his and he gave me his # then i called him by an app called magic jack then after 7 minute he hang up all of a sudden...and i am scared can he access my phone? why did he hang up soon? i was using a wi fi internet...pls help i have my password and everything in my cell...my cell is IPHONE 4 IOS 6.1.3

    no he can't
    ios devices does not support being remote controlled
    ios devices does not support having program transfered over a phone call
    ios devices does not support having it's file system accessed

  • I need help its urgent answer me

    Help i lost my security answers and i dont remember it so help me

    Call Apple to help reset your Security Question.
    http://support.apple.com/kb/HT5699

  • "Unable to open project file." i need help! URGENT

    before the problem...
    my film project and all its files were in a WD external drive. i had some problems with soundtrack pro being too slow because the files were on an external drive, so i bought 2 Internal Seagate drives. i moved all my files to the internal drives, and i changed my scratch disk to my new drive.
    i have done this procedure several times before, and i never faced this problem before!
    after...
    so i went on to launch my FCP project, and while loading i got this message "Unable to open project file."
    how can i fix it?

    nope!
    but here is what i did:
    i reformatted it, and moved the files again... and surprisingly, it worked!
    computers have a mind of their own sometimes!
    but now i have another problem... i opened soundtrack pro to work on the same project, but its very slow! it keeps freezing whenever i want to make any actions.
    whats the problem? and how can i fix it?

  • An error has occurred. need help very urgent

    An error has occurred.
    "You may attempt to sign in again.
    If your attempt fails, please contact your System Administrator. "
    i am getting above error for only two users in Production envroment. but we dont have access in production, i am unable to replicate same problem in DEV. can u give any suggetion for this problem.
    Thanks
    Lakshman

    did you check for the roles assigned to the 2 users?Without any application access, it is rather difficult, and this is the reason why I suggested to contact somebody who is allowed to connect onto prod env.
    Nicolas.

Maybe you are looking for

  • Ipod mini battery test?

    the battery life on my ipod mini is terrible. i don't use the backlight too much or the equalizer and i use the hold switch when i have it off. i heard there is a page on the apple site where they can do a diagnostics test or something like that on t

  • Half Day LOP / Unpaid Absence not working for payroll india

    Dear Gurus, I have created Unpaid leave which is working correctly when we maintain full day absence in infotype 2001. But it is not working for partial absence ie, half day. I would really appreciate if you help me out on this issue. Thanks, Rajesh

  • Traverse a binary tree from root to every branch

    I have a couple of other questions. I need to get all the different combinations of a binary tree and store them into a data structure. For the example in the code below, the combinations would be: 1) Start, A1, A2, A3, B1, B2, B3 2) Start, A1, A2, B

  • JCO Server Multithreading

    Hi, I need to develop a JCO Server that should handle multiple requests and then I need to start multiple instances of the listeners. I would like a sample code for it. Thanks

  • Export from Illustrator as PSD

    Hello I updated to 16.2.1 and now when I export from Illustrator as a psd with antialias option unchecked it opens in Photoshop with the edges antialiased.