Back command using Stack

Hey guys posted on here last night, the replies were great..thanks for that...I got one minor problem...
private void goRoom(Command command)
        if(!command.hasSecondWord())
            // if there is no second word, we don't know where to go...
            System.out.println("Go where?");
            return;
        String direction = command.getSecondWord();
        // Try to leave current room.
        Room nextRoom = currentRoom.nextRoom(direction);
        if (nextRoom == null)
            System.out.println("There is no door!");
        else
            stack = new Stack();  <---------------------------------------------------makes a new stack
            currentRoom = nextRoom;  <-------------------------------------------this here takes the person into the next room
            System.out.println(currentRoom.longDescription());
            stack.push(currentRoom);   <------------------------------------------- everytime a person enters the next room it records it in a stack
    private void stepBack(Command command)
        if(stack.isEmpty()) {
            System.out.println("Sorry, cannot go back!");
            return;
        if(command.hasSecondWord()) {
            // if there is a second word, we cannot go back...
            System.out.println("I don't know what you mean...");
            return;
            stack.pop();            <------------------------------------------------------------------------------------------- I can now pop, but i need to use this value so it goes back in the room you came from
            currentRoom = ;      <------------------------------------------------------------------------------------------- What do i put as the syntax in here to successfully use the value from stack.pop() to go back in the previous room. Hope your able to help, thanks guys!!
            System.out.println(currentRoom.longDescription()); //print method where you are
        }

private void goRoom(Command command)
        if(!command.hasSecondWord())
            // if there is no second word, we don't know where to go...
            System.out.println("Go where?");
            return;
        String direction = command.getSecondWord();
        // Try to leave current room.
        Room nextRoom = currentRoom.nextRoom(direction);
        if (nextRoom == null)
            System.out.println("There is no door!");
        else
            stack = new Stack();
            currentRoom = nextRoom;
            stack.push(currentRoom);
            System.out.println(currentRoom.longDescription());
    private void stepBack(Command command)
        if(stack.isEmpty()) {
            System.out.println("Sorry, cannot go back!");
            return;
        if(command.hasSecondWord()) {
            // if there is a second word, we cannot go back...
            System.out.println("I don't know what you mean...");
            return;
            currentRoom = (Room)stack.pop();
            System.out.println(currentRoom.longDescription()); //print method where you are
        }I have this implemented, but everytime i type in back it doesnt actually move back to the previous room. Can anyone suggest why? or am I doing something wrong here, thanks!

Similar Messages

  • Stacks for implementing back command!

    This here is my Game class, everything works, but im trying to implement a back command by using stacks. I have imported stacks in and all that...The problem im having is that when i go into another room it adds the room in, but im trying to pop it from another method. Iv seen examples of popping within the same method but not from another method.
    private void goRoom(Command command)
            if(!command.hasSecondWord())
                // if there is no second word, we don't know where to go...
                System.out.println("Go where?");
                return;
            String direction = command.getSecondWord();
            // Try to leave current room.
            Room nextRoom = currentRoom.nextRoom(direction);
            if (nextRoom == null)
                System.out.println("There is no door!");
            else
                Stack stack = new Stack();
                currentRoom = nextRoom;
                System.out.println(currentRoom.longDescription());
                stack.push(currentRoom);              <<<<<<<<<<<<<<<<<<-----As seen here the currentRoom gets pushed in....but i need to pop out which im trying to do below
        private void goBack(Command command)
            if(previousRoom == null) {
                System.out.println("Sorry, cannot go back!");
                return;
            if(command.hasSecondWord()) {
                // if there is a second word, we cannot go back...
                System.out.println("I don't know what you mean...");
                return;
                stack.pop(); <<<<<<<<<<<<<<<<<<<<<<<<<<-------------- I cant get that syntax to access the above method and make them work togeather. It works within the same method, but 2 differnet methods its having a problem. Can someone give me the correct
                currentRoom = previousRoom;                     syntax so i can use that to pop it out from a different method. Thanks alot much appriciated!             
                System.out.println(currentRoom.longDescription()); //print method where you are
        }

    Because stack is now an instance variable, its scope is for the whole class. That means, every method has direct access to it. So, both goRoom and goBack methods will work on the same variable.
    I'll suggest to read about variable scoping in java.
    Now that the variable is an instance variable, in an application, this could easily lead to multi-threading synchronization problems, if your application is multi-threaded.
    So I'll wrap my stack operations in a synchronize block:
    synchronize
       stack.push (obj);
    }and
    synchronize
       stack.pop ();
    }

  • Error with stack in back command

    I'm creating a game and I need a goBack command to get to the previous rooms of my game. I used a stack to do that but i keep getting compiling errors. The code i've used is
       private void stepBack(Command command)
            if(stack.isEmpty()) {
                System.out.println("Sorry, cannot go back!");
                return;
            if(command.hasSecondWord()) {
                // if there is a second word, we cannot go back...
                System.out.println("I don't know what you mean...");
                return;
                stack.pop();   
                player.getCurrentRoom() = stack.peep();
                System.out.println(player.getCurrentRoom().longDescription()); //print method where you are
            }And for the goRoom command is
        private void goRoom(Command command)
            if(!command.hasSecondWord()) {
                // if there is no second word, we don't know where to go...
                System.out.println("Go where?");
                return;
            String direction = command.getSecondWord();
            // Try to leave current room.
            Room nextRoom = player.getCurrentRoom().getExit(direction);
            if (nextRoom == null)
                System.out.println("There is no door!");
           else
                stack.push(player.getCurrentRoom());
                player.getCurrentRoom() = nextRoom;
                System.out.println(player.getCurrentRoom().longDescription());
        }I have initialised the stack at the beginning with
    import java.util.Stack;
    import java.util.ArrayList;
    public class Game
        private Parser parser;
        private Player player;
        private ArrayList<Item> inventory;
        private Stack stack;
         * Create the game and initialise its internal map.
        public Game()
            parser = new Parser();
            player = new Player();
            inventory = new ArrayList<Item>();
            Stack stack = new Stack();
          The error i keep getting is in the line
                player.getCurrentRoom() = stack.peep();In the stepBack command and it says unexpected type.

    The error i keep getting is in the line
                player.getCurrentRoom() = stack.peep();In the stepBack command and it says unexpected type.First of all, you can't put "player.getCurrentRoom()" on the left side of an assignment; it is the result of a method invocation, and is not an lvalue. You cannot assign to it. You might want a "setCurrentRoom()" method or something.
    Second, the type for your "stack" should have a type parameter, probably Stack<Room>.

  • Browser Dependency when calling a method in backing bean using a javasript.

    Hi all,
    I have a problem which may look simple but bugging me for quite some time.
    The problem is : When I call a method in the backing bean using a Javascript, (the method can alternatively be invoked by clicking on a command link) I am facing an exception (stack printed below).
    The strange part is that...I am getting this exception only when I use Internet Explorer. It works absolutely fine when I use Mozilla or Netscape browsers. Also, even in ie, it is working fine when I click on the link directly. The probem comes only when I invoke the action using a javascript.
    WARN [lifecycle] executePhase(RENDER_RESPONSE 6,com.sun.faces.cont
    ext.FacesContextImpl@16ce9df) threw exception
    javax.faces.FacesException
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java
    :135)
         at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:251)
         at com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:144)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:245)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
    FilterChain.java:290)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
    ain.java:206)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
    FilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
    ain.java:206)
         at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.ja
    va:96)
         at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Application
    FilterChain.java:235)
         at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterCh
    ain.java:206)
         at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.ja
    va:230)
         at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.ja
    va:175)
         at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssoci
    ationValve.java:179)
         at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:
    84)
         at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:128
         at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:104
         at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnecti
    onValve.java:156)
         at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java
    :109)
         at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:241)
         at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:844)
         at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http
    11Protocol.java:580)
         at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
         at java.lang.Thread.run(Unknown Source)
    Caused by: ClientAbortException: java.net.SocketException: Connection reset by
    peer: socket write error
         at org.apache.catalina.connector.OutputBuffer.realWriteBytes(OutputBuffer.java:
    358)
         at org.apache.tomcat.util.buf.ByteChunk.flushBuffer(ByteChunk.java:434)
         at org.apache.catalina.connector.OutputBuffer.doFlush(OutputBuffer.java:309)
         at org.apache.catalina.connector.OutputBuffer.flush(OutputBuffer.java:288)
         at org.apache.catalina.connector.Response.flushBuffer(Response.java:542)
         at org.apache.catalina.connector.ResponseFacade.flushBuffer(ResponseFacade.java
    :279)
         at com.sun.faces.application.ViewHandlerImpl.renderView(ViewHandlerImpl.java:20
    2)
         at org.ajax4jsf.framework.ViewHandlerWrapper.renderView(ViewHandlerWrapper.java
    :101)
         at org.ajax4jsf.framework.ajax.AjaxViewHandler.renderView(AjaxViewHandler.java:
    222)
         at com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java
    :106)
         ... 24 more
    Caused by: java.net.SocketException: Connection reset by peer: socket write erro
    r
         at java.net.SocketOutputStream.socketWrite0(Native Method)
         at java.net.SocketOutputStream.socketWrite(Unknown Source)
         at java.net.SocketOutputStream.write(Unknown Source)
         at org.apache.coyote.http11.InternalOutputBuffer$OutputStreamOutputBuffer.doWri
    te(InternalOutputBuffer.java:764)
         at org.apache.coyote.http11.filters.ChunkedOutputFilter.doWrite(ChunkedOutputFi
    lter.java:124)
         at org.apache.coyote.http11.InternalOutputBuffer.doWrite(InternalOutputBuffer.j
    ava:570)
         at org.apache.coyote.Response.doWrite(Response.java:560)
         at org.apache.catalina.connector.OutputBuffer.realWriteBytes(OutputBuffer.java:
    353)
         ... 33 more
    13:54:42,805 ERROR [STDERR] ClientAbortException: java.net.SocketException: Con
    nection reset by peer: socket write error
    13:54:42,805 ERROR [STDERR]      at org.apache.catalina.connector.OutputBuffer.realW
    riteBytes(OutputBuffer.java:358)
    13:54:42,805 ERROR [STDERR]      at org.apache.tomcat.util.buf.ByteChunk.flushBuffer
    (ByteChunk.java:434)
    13:54:42,805 ERROR [STDERR]      at org.apache.catalina.connector.OutputBuffer.doFlu
    sh(OutputBuffer.java:309)
    13:54:42,805 ERROR [STDERR]      at org.apache.catalina.connector.OutputBuffer.flush
    (OutputBuffer.java:288)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.connector.Response.flushBuff
    er(Response.java:542)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.connector.ResponseFacade.flu
    shBuffer(ResponseFacade.java:279)
    13:54:42,820 ERROR [STDERR]      at com.sun.faces.application.ViewHandlerImpl.render
    View(ViewHandlerImpl.java:202)
    13:54:42,820 ERROR [STDERR]      at org.ajax4jsf.framework.ViewHandlerWrapper.render
    View(ViewHandlerWrapper.java:101)
    13:54:42,820 ERROR [STDERR]      at org.ajax4jsf.framework.ajax.AjaxViewHandler.rend
    erView(AjaxViewHandler.java:222)
    13:54:42,820 ERROR [STDERR]      at com.sun.faces.lifecycle.RenderResponsePhase.exec
    ute(RenderResponsePhase.java:106)
    13:54:42,820 ERROR [STDERR]      at com.sun.faces.lifecycle.LifecycleImpl.phase(Life
    cycleImpl.java:251)
    13:54:42,820 ERROR [STDERR]      at com.sun.faces.lifecycle.LifecycleImpl.render(Lif
    ecycleImpl.java:144)
    13:54:42,820 ERROR [STDERR]      at javax.faces.webapp.FacesServlet.service(FacesSer
    vlet.java:245)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.core.ApplicationFilterChain.
    internalDoFilter(ApplicationFilterChain.java:290)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.core.ApplicationFilterChain.
    doFilter(ApplicationFilterChain.java:206)
    13:54:42,820 ERROR [STDERR]      at com.hds.vc.common.infrastructure.AIMFilter.doFil
    ter(AIMFilter.java:27)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.core.ApplicationFilterChain.
    internalDoFilter(ApplicationFilterChain.java:235)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.core.ApplicationFilterChain.
    doFilter(ApplicationFilterChain.java:206)
    13:54:42,820 ERROR [STDERR]      at org.jboss.web.tomcat.filters.ReplyHeaderFilter.d
    oFilter(ReplyHeaderFilter.java:96)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.core.ApplicationFilterChain.
    internalDoFilter(ApplicationFilterChain.java:235)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.core.ApplicationFilterChain.
    doFilter(ApplicationFilterChain.java:206)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.core.StandardWrapperValve.in
    voke(StandardWrapperValve.java:230)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.core.StandardContextValve.in
    voke(StandardContextValve.java:175)
    13:54:42,820 ERROR [STDERR]      at org.jboss.web.tomcat.security.SecurityAssociatio
    nValve.invoke(SecurityAssociationValve.java:179)
    13:54:42,820 ERROR [STDERR]      at org.jboss.web.tomcat.security.JaccContextValve.i
    nvoke(JaccContextValve.java:84)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.core.StandardHostValve.invok
    e(StandardHostValve.java:128)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.valves.ErrorReportValve.invo
    ke(ErrorReportValve.java:104)
    13:54:42,820 ERROR [STDERR]      at org.jboss.web.tomcat.service.jca.CachedConnectio
    nValve.invoke(CachedConnectionValve.java:156)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.core.StandardEngineValve.inv
    oke(StandardEngineValve.java:109)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.connector.CoyoteAdapter.serv
    ice(CoyoteAdapter.java:241)
    13:54:42,820 ERROR [STDERR]      at org.apache.coyote.http11.Http11Processor.process
    (Http11Processor.java:844)
    13:54:42,820 ERROR [STDERR]      at org.apache.coyote.http11.Http11Protocol$Http11Co
    nnectionHandler.process(Http11Protocol.java:580)
    13:54:42,820 ERROR [STDERR]      at org.apache.tomcat.util.net.JIoEndpoint$Worker.ru
    n(JIoEndpoint.java:447)
    13:54:42,820 ERROR [STDERR]      at java.lang.Thread.run(Unknown Source)
    13:54:42,820 ERROR [STDERR] Caused by: java.net.SocketException: Connection rese
    t by peer: socket write error
    13:54:42,820 ERROR [STDERR]      at java.net.SocketOutputStream.socketWrite0(Native
    Method)
    13:54:42,820 ERROR [STDERR]      at java.net.SocketOutputStream.socketWrite(Unknown
    Source)
    13:54:42,820 ERROR [STDERR]      at java.net.SocketOutputStream.write(Unknown Source
    13:54:42,820 ERROR [STDERR]      at org.apache.coyote.http11.InternalOutputBuffer$Ou
    tputStreamOutputBuffer.doWrite(InternalOutputBuffer.java:764)
    13:54:42,820 ERROR [STDERR]      at org.apache.coyote.http11.filters.ChunkedOutputFi
    lter.doWrite(ChunkedOutputFilter.java:124)
    13:54:42,820 ERROR [STDERR]      at org.apache.coyote.http11.InternalOutputBuffer.do
    Write(InternalOutputBuffer.java:570)
    13:54:42,820 ERROR [STDERR]      at org.apache.coyote.Response.doWrite(Response.java
    :560)
    13:54:42,820 ERROR [STDERR]      at org.apache.catalina.connector.OutputBuffer.realW
    riteBytes(OutputBuffer.java:353)
    13:54:42,820 ERROR [STDERR]      ... 33 more
    Please throw some light on this issue.

    This is the Java script I am using
    function submitForm(e){
         var characterCode
         if(e && e.which){
         e = e
         characterCode = e.which
         }else{
         e = event                    characterCode = e.keyCode
         if (characterCode== 13){
         document.getElementById('mainform:submitForm:search').onclick();
    Regards,
    Jagadeesh
    Edited by: Jagadeesh.Pala on Oct 1, 2007 3:59 AM

  • Regarding the screen problem in 'back' command

    Hi Experts,
      I am doing project on data scrambling an using the ldb PNP . currently i am facing one problem regarding the' BACK'.
    i am calling one screen program in main  program. when i am  clicking on back button  from screen program ,the control flow back to the main program and the rest of the lines of the main program gets executed.
    i want the control must  go back to the default selection screen.
      i have tried using leave to screen 0,leave program and exit.But these command are not working as per the requirement.
    thanks in advance.

    Hai,
           Please check the fct code for BACK button. if the fctcode is exist then use the following code.
            if sy-ucomm = 'BACK'.       " USE CAPITAL LETTERS ONLY
                 LEAVE TO SCREEN 0.

  • Do I need to create ip address to another switch when i use stack?

    Good Day!
    Please help me to answer this question in my title. I have 2 switches my old switch has configure ip address and i will use stack to my another switch the old one will be the primary and new switch is the secondary do i need to configure the ip address of the new 1 or  no need? i'm totally confuse on it. I hope you can help me regarding on this matter.Thank you.

    no Need.
    Here is the procedure:
    Tips to Add a Switch as a Slave to the Stack
    To add a switch, as a slave, to a stack, complete these steps:
    Note: Make sure the switch that you add into the stack has the same IOS version as the switches in the stack. Refer to Catalyst 3750 Software Upgrade in a Stack Configuration with Use of the Command-Line Interface to upgrade the IOS in a catalyst 3750 switch.
    Change the switch priority of the switch to be added to "1".switch stack-member-number priority new-priority-valueNote: This step is optional, but it will make sure that the switch has fewer chances to become a stackmaster in the future.
    Power off the switch that is to be added.
    Make sure that the stack is fully connected so that, when you connect the new switch, the stack will be at least in half connectivity and does not partition.
    Connect the new switch to the stack with the StackWise ports.
    Power on the newly added switch.
    After the new switch comes up, issue the command show switch to verify stack membership.
    HTH
    Regards
    Inayath
    ***********Plz dont forget to rate all usefull posts*********

  • How to use stack canvas in tab canvas in oracle forms

    hi all,
    how to use stack canvas in tab canvas in oracle forms. please if any one help out in this.

    Hi
    u can simply create a button in ur tab canvas in this button pls write the following as an example...
    SHOW_VIEW('STACKED_CANVAS');
    GO_ITEM ('SAL'); -- Pls note this item should be navigable and visible in ur stacked canvas form
    HIDE_VIEW('TAB_CANVAS');In order to return back to ur tab_canvas pls create a button in this button pls write the following...
    HIDE_VIEW('STACKED_CANVAS');
    SHOW_VIEW('TAB_CANVAS');
    GO_BLOCK('EMP');
    GO_ITEM ('EMPNO'); -- Pls note this item should be navigable and visible in ur stacked canvas form
    Hope this helps...
    Regards,
    Abdetu...

  • Controling wheelchair by speech command using Neuron Network in labview

    Hi all,
    I'm doing project about "controling wheelchair  by speech command using neuron network in labview". I found some informations about controling whelchair combine with function microsoft speech recognition in window or something like that but this was not my point. So, I have some question about that:
    1) How do I store the command "Left-Right-Back-Go-Stop" in labview. After that, analyzing to find the differences of characteristic of these command.
    2) Based on these characteristic above, using neuron network to find exactly command.
    Are there anyone do like this before? I need all help from you.
    Thank you so much.

    Greetings;
    First, it is most excellent that you have gotten to where you can compare the words being said to the sample.
    If I understand correctly, you are interested in continuously acquiring sound, saving it and then comparing it with the sample? That is not as straightforward as it sounds simply because it would be difficult to realize when there is sound in the first place and when that sound is relevant. 
    I would probably start by figuring out whether there is or not sound by comparing the microphone input to a certain threshold, saving if there is sound, and then halting the recording when the sound stops. It would be then that you would compare with your samples via the algorithm that you have made.
    In order to check for volume, I came across the following example:
    http://zone.ni.com/devzone/cda/epd/p/id/2150
    It was mentioned in the following discussion:
    http://forums.ni.com/t5/LabVIEW/Microphone-Input-Detection/td-p/487367
    Cordially;
    Simon P.
    National Instruments
    Applications Engineer

  • Problem using stacks in CS4

    So I want to try to edit in  stacks but cant seem to get it to work. my  understanding is the the usual command is file, scripts, load into stack  and then once your files load you go file, scripts, statistics, my  problem is that there is not file, scripts, statistics for me. I'm using  CS4 extended so I should have it. My layer, smart objects, stack mode  is always grayed out too. (weather I convert the top file to a smart  object, or all the files or select all and then convert to smart object,  which flattens the layers). So Im wondering if there is some setting I  have changed that would prevent me form using stacks? or if im just  missing something, thanks Im using windows 7, PS CS4 version 11.0.2
    Thanks ahead of time

    Are you using CS4, or CS4 Extended?  The stacks are only creatable in extended.

  • How to place multiple commands using lcdui package?

    I want to place multiple commands using lcdui package. I find that if I use more than 3 it becomes a menu item. How to circumvent this?
    With regards,
    Amin

    i dont think you would be able to do this because of the screen size and also because all the cell phones only provide back,exit & menu buttons to program.so thats why you need to place the commands in the screen if the number of options are more.

  • The Cave App. feels like early Mac games: Does anyone recall the commands used? Thank you.

    Greetings: I recall other early 90s games; however, the commands used to perform tasks is lost to me. Any help is of appreciation. Thank you.

    Wow they are ancient laptops! :) Both date back to around 1985-1988 and had the Intel 286 CPU with a mono/plasma screen.
    The best way to find information is to do a google search of the Model Number. You should see a PAxxxxx number on the Base Sticker
    computinghistory.org.uk also has some good info:
    http://www.computinghistory.org.uk/det/2235/Toshiba-T3100-20/

  • Error while generating DDL commands using startSQLRepository for a new Repository

    Hi,
    I am trying to generate DDL Commands using startSQLRepository for my new repository SubashRepository so that I can use them to create new table structure.
    All the repository related changes looks good. i can see my repository in ACC
    When I run the command:
    startSQLRepository -m SupremeATG –repository /com/supreme/SubashRepository /com/supreme/subashRepository.xml -outputSQLFile C:/ATG/ATG9.3/SupremeATG/config/com/supreme/subashRepositoryDDL.txt
    I get following error:
    Table 'SUBASH_MEMBER' in item-descriptor: 'member' does not exist in a table space accessible by the data source.  DatabaseMetaData.getColumns returns no columns
    Note:
    * errors related to definition file were cleared as the same command threw relevant exception while trying to store a array property with out creating a multi table.
    * Now this is the only exception i see
    * Some DDL are getting generated in the output file, but those are related to inventory repository (I am not sure why this is happening as I have specifically gave the path to my definition file).
    Any help in resolving this is highly appreciated.

    Pl post in the ATG forum

  • I got a macbook pro 2008 and can not back up using time machine. it eject my external hard drive everytime. does someone has a fix???

    i got a macbook pro 2008 and can not back up using time machine. it eject my external hard drive everytime. does anybody has a fix???

    Does your external hard drive have it's own power supply?  It should.
    Is your external hard drive formatted with the NTFS file system?  It won't work.
    It needs to be formatted either with Mac OS Extended or FAT32.
    (There are drivers available to add NTFS support to OS X but their quality is unknown, especially the "free" ones.)

  • What is the point of the download window if you use stacks?

    Greetings,
    One of the most annoying things about the download window was the fact that the window always hung around after completing dowloads in Tiger when using safari. To me, that was just a time waster of always pressing Apple+W to close that window.
    When Leopard was released, I was excited to realize that one function of the download stack was to recevie downloads from safari after completed. However, after completion, the download window still sticks around and I still have to close it... then navigate to my stack of downloads to mount the image. What is the point of the download window is I use stacks now? Why can't the window disappear after completion?
    //Cheers

    Aaargh!! Me too - it's so annoying! Firefox has a downloads window as well - I just don't see the point of it. I didn't like it in Tiger either.
    As a way to see the progress of downloads, it's fine, but it should at least close when all the downloads are finished, and completed downloads should not display.
    Ideally it should look & work exactly like the Copy window in Finder - the one that comes up when you are copying or moving a large file or number of files from one folder to another.
    Is there a hack that will make it work like that?

  • I created a signature ID and customized the signature; however, when I go to sign it only shows the name layout or graphic image? How do I go back to using the certificate?

    Dear Forum
    I was using Adobe version XI and the signature feature disappeared from the menu. Now I downloaded Acrobat Reader DC. Using the menu and instructions I created a signature ID and customized the signature; however, when I go to sign a document it only shows the name layout or graphic image? How do I go back to using the certificate that I created?
    Any help would be greatly appreciated.
    Regards
    Carlos

    Firefox works fine on Windows 2000 SP4 for me.
    Any chance you have a dial-up connection that uses a web accelerator to speed the loading of content?

Maybe you are looking for