Array Running Error NullPointerException

I m trying to create a class that will have an overload constructor which will passing a parameter of an Object array.....
public class Standings
          private Team [] footBall;
          /* public Standings()
               footBall = footBall;     
          public Standings( Team [] footBallArray )
                    for(int i = 0; i < footBallArray.length; i++)
                              footBall[i] = footBallArray;                    
Then test it wit a prog which will create an object array then use the overload constructor...Team [] array = new Team[5];
     array[0] = new Team("Alabama", 6, 6);
     array[1] = new Team("Georgia", 7, 4);
     array[2] = new Team("Tennessee", 8, 3);
     array[3] = new Team("Vanderbilt", 4, 8);
     array[4] = new Team("Mississippi", 1, 6);
     // now instantiate the team calling the overloaded constructor
     Standings temp = new Standings(array);
but it alway give me a NullPointerException... cuold some1 show me why... Thankx                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

Obviously the footBall[] is not instantiated
public Standings( Team [] footBallArray )
          for(int i = 0; i < footBallArray.length; i++)
               //------>footBall[i] = footBallArray;                    
modify your code add this statement be for the for looppublic Standings( Team [] footBallArray )
this.footBall = footBallArray;
for(int i = 0; i < footBallArray.length; i++)
OR you could try add these code before and inside the for loop public Standings( Team [] footBallArray )
this.footBall = new Team[footBallArray.length] //before for loop
for(int i = 0; i < footBallArray.length; i++) {
this.footBall[i] = new Team(); // inside the for loop but before your statement

Similar Messages

  • Run errors (is this due to arrays?)

    what possible errors could i have made with my arrays?
    java.lang.NullPointerException
            at MRoom.doRecordArrays(MRoom.java:127)
            at MRoom.actionPerformed(MRoom.java:98)
            at //i've seen what the above errors are about, though i don't know how to remedy it. but the rest down the list i don't know where to find them:
    java.awt.Button.processActionEvent(Button.java:381)
            at java.awt.Button.processEvent(Button.java:350)
            at java.awt.Component.dispatchEventImpl(Component.java:3526)
            at java.awt.Component.dispatchEvent(Component.java:3367)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:445)
            at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:190)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:144)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:130)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:98)

    Thanks for pointing that out :)
    i tried to trace through the methods(btw, is there a way to watch the methods? i used to take cobol-i know, that's obsolete, but, useful =P - and there's an add watch feature per step/method that lets you monitor the step by step process of your program), and i think i made an error in inserting a record into the array. I made a few modifications, but still i got the same error message. Anyway, you're right, it's hard to explain what i want in my code unless i put it(it's embarassing, that's why), so here goes a part of my code:
    ====
    IN MY MROOM class
    //in actionPerformed
              if (e.getSource() == buttSaveUpdate)
    *null pointer exception*/doRecordArrays();
              if (e.getSource() == buttSaveCancel)
         public void doRmGen()
    //               chckRmNum = new Checkbox("Room No. " + y);
                   add(new Label("Room No. "+y+" :"));
                   rmNumber=y;
                   Choice chooseRmType = new Choice();
                   chooseRmType.add("Taxi Room");
                   chooseRmType.add("Garage Room");
                   chooseRmType.add("Suite");
                   add(chooseRmType);
                   invalidate();
                   validate();
                   buttSubmitRmQty.removeActionListener(this);
                   ++y;
         public void doRecordArrays()
                   Room[] record = new Room[rmQty];
                   int x, y;
                   for (x=0;x!=rmQty;++x) //this is what i added, because initially i only used y, which i think is the error because it jumps the array, which should have started at zero, while my y variable started at one, so i thought that was the null value that was being passed to my array.BUT i got the same run error messages, so im stuck.
                        for(y=1;y!=rmQty;++y)
         /*null pointer exception*/record[y].setRmRate(rmRate);
                        record[x].setRmNum(y);
                        record[x].setRmType(rmType);
                        record[x].setRmRate(rmRate);
                        //record[x].setcustN
                        //room number, room type, room rate, room occupancy, and cust ID
                        add(new Label("Room No. "+y+" :" +record[y].getRmRate()));
    IN MY ROOM CLASS
    public class Room
         public static String TAXI = "Taxi Room";
         public static String GARAGE = "Garage Room";
         public static String SUITE = "Suite";
         private static int rmN=0, rmR=0, custN=0;
         private String rmT=TAXI;
         boolean rmO=false;
         //room number, room type, room rate, room occupancy, and cust ID
         public Room(int a, String b, int c, boolean d, int cust)
              rmN = a;
              rmT = b;
              rmR = c;
              rmO = d;
              custN = cust;
         public int getRmNum()
              return rmN;
         public String getRmType()
              return rmT;
         public int getRmRate()
              if(rmT.equals(TAXI))
                   rmR = MRoom.taxiRate;
              if(rmT.equals(GARAGE))
                   rmR = MRoom.garageRate;
              if(rmT.equals(SUITE))
                   rmR = MRoom.suiteRate;
              return rmR;
         public boolean getRmO()
              return rmO;
         public int getcustN()
              return custN;
         public void setRmNum(int rn)
              rmN = rn;
         public void setRmType(String rt)
              rmT = rt;
         public void setRmRate(int rr)
              rmR = rr;
         public void setRmO(boolean ro)
              rmO = ro;
         public void setcustN(int cn)
              custN = cn;
    }public class Room
         public static String TAXI = "Taxi Room";
         public static String GARAGE = "Garage Room";
         public static String SUITE = "Suite";
         private static int rmN=0, rmR=0, custN=0;
         private String rmT=TAXI;
         boolean rmO=false;
         //room number, room type, room rate, room occupancy, and cust ID
         public Room(int a, String b, int c, boolean d, int cust)
              rmN = a;
              rmT = b;
              rmR = c;
              rmO = d;
              custN = cust;
         public int getRmNum()
              return rmN;
         public String getRmType()
              return rmT;
         public int getRmRate()
              if(rmT.equals(TAXI))
                   rmR = MRoom.taxiRate;
              if(rmT.equals(GARAGE))
                   rmR = MRoom.garageRate;
              if(rmT.equals(SUITE))
                   rmR = MRoom.suiteRate;
              return rmR;
         public boolean getRmO()
              return rmO;
         public int getcustN()
              return custN;
         public void setRmNum(int rn)
              rmN = rn;
         public void setRmType(String rt)
              rmT = rt;
         public void setRmRate(int rr)
              rmR = rr;
         public void setRmO(boolean ro)
              rmO = ro;
         public void setcustN(int cn)
              custN = cn;
    However...a null object was passed to the
    doRecordArrays, or some null object was called from
    that method...
    The rest is a trace backward based on who called the
    methods..
    (actionPerformed called doRecordArrays, Button called
    actionPerformed, and so on down the line).
    The important line is line 1 &| 2
    ~Dave

  • Xrpcc tool error: NullPointerException

    im trying Hello class example.
    //interface claas defination is
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    import javax.xml.rpc.server.ServiceLifecycle;
    public class HelloClass implements HelloInterface, ServerLifecycle{
    public String mystring = "i am server";
    public void init(Object context){
    public String CallMe(String StringPassed){
         return(mystring+StringPassed);
    // interface class defination is
    public interface HelloInterface extends Remote{
    public String CallMe(String PassedString) throws RemoteException;
    //config.xml file as
    <configuration xmlns="http://java.sun.com/xml/ns/jax-rpc/ri/config">
    <service targetNamespace="http://sunreg.org/wsdl"
              typeNamespace="http://sunreg.org/wsdl"
                        name="HelloService"
              packageName="Hello">
    <interface name="HelloInterface"
    servantName="HelloClass"/>
    </service>
    </configuration>
    on running xrpcc tool it is giving error
    error:NullpointerException
    any idea why it error is giving

    To get more info, try using the -verbose and -Xprintstacktrace options
    on xrpcc. Also, xrpcc is being deprecated, you should start using wscompile which if functionally equivalent to xrpcc.

  • An unexpected u2018invalid property array indexu2019 error in wdbrlog

    Hi Gurus:
    When I try to change te property of a characteristic in BEx, I end up getting "An unexpected u2018invalid property array indexu2019 error in wdbrlog", This follows with the
    Run-time Error u20182147221499 (80040005) - Fatal terminating Error;
    Subsequently it throws me out of Bex with - Run-time error u2018429'
    Has anyone experienced this and how can I correct this? We are in BW 3.5
    Thanks..... ShruMaa

    Hi Shruti,
              Check belwo SAP note.
    SAP note : 1109197
    hope this will help you.
    Thanks,
    Vijay.

  • My toolbar is missing and there is a button where it used to be that says "Please re-install the Toolbar" but when I click on it nothing happens? Also when I start Firefox I get a script running error how do I solve these issues?

    My toolbar is missing and there is a button at the top left that asks me to "Please re-install the Toolbar" but when I click on it nothing happens???
    Then when I start Mozilla I get a long delay before it launches and a script running error "A script on this page may be busy, or it may have stopped responding. You can stop the script now, or you can continue to see if the script will complete.
    Script: chrome://tavgp/content/libs/include.js:595"
    How do I solve these issues???

    No idea - and you provide no clues
    what version of iPHoto do you have? Of the OS? is the iPhoto icon you are speaking of in the Dock?
    re-read your post and try to provide information using standard Mac terms since we can not see you or your computer and only have your worrds to let us try to help you
    Somehow my "IPhoto" icon now says "Preview".  When I click on "Preview" nothing opens up except the bar says Preview.  When I click on the Preview on the bar, a box opens up with different items, except when I click on any of them, there is nothing there.  The only thing that work is the "quit preview".  However, it is still there where my IPhoto icon should be.  I can't get into my IPhoto.  How do I get rid of this "Preview" and how did it end up taking over the IPhoto icon???
    If you go to your Applications folder and double click on iPhoto what happen?
    LN

  • I deleted my foxfire profile contents and now get firefox is already running error. reinstall did not help

    I deleted the contents of my profile. Now i get the firefox is already running error. i realize that i screwed up. i have restarted, uninstalled, reinstalled, but still firefox will not load.

    You can get that error if Firefox can not find the profile folder. For details on what to check see http://kb.mozillazine.org/Profile_in_use

  • HELP: Oracle VM Manager 3.1.1  VM Server Status Running (Error)

    Hi All,
    I have updated the latest patch of VM Manager 3.1.1. In my server pool, I have 3 VM servers.
    All VM Server shows Status Running (Error). I don't care about the small red x icons displayed on the VM Manager but it stops all my operations:
    1. Not able to Edit the virtual machine from one server.
    OVMAPI_9013E Cannot perform operation on Virtual Machine: racnode1, no server available.
    Wed Nov 07 14:29:32 PST 2012
    2. Not able to Remove a VM Server from the Server pool
    com.oracle.ovm.mgr.api.exception.RuleException: OVMRU_004004E: - Cannot delete server: vmsvr2.X.com, while it is in a server pool
    Wed Nov 07 14:31:21 PST 2012
    at com.oracle.odof.core.BasicWork.invokeMethod(BasicWork.java:151)
    at com.oracle.odof.command.InvokeMethodCommand.process(InvokeMethodCommand.java:100)
    at com.oracle.odof.core.BasicWork.processCommand(BasicWork.java:81)
    at com.oracle.odof.core.TransactionManager.processCommand(TransactionManager.java:773)
    at com.oracle.odof.core.WorkflowManager.processCommand(WorkflowManager.java:401)
    at com.oracle.odof.core.WorkflowManager.processWork(WorkflowManager.java:459)
    at com.oracle.odof.io.AbstractClient.run(AbstractClient.java:42)
    at java.lang.Thread.run(Thread.java:662)
    Caused by: com.oracle.ovm.mgr.api.exception.RuleException: OVMRU_004004E: - Cannot delete server: vmsvr2.X.com, while it is in a server pool
    Wed Nov 07 14:31:21 PST 2012
    at com.oracle.ovm.mgr.rules.modules.api.physical.ServerRules.onPersistableCleanPre(ServerRules.java:249)
    at com.oracle.ovm.mgr.api.job.JobEngine.invokeMethod(JobEngine.java:662)
    at com.oracle.ovm.mgr.api.job.JobEngine.invokeMethod(JobEngine.java:631)
    at com.oracle.ovm.mgr.rules.RulesEngine.runRules(RulesEngine.java:190)
    at com.oracle.ovm.mgr.rules.RulesEngine.preProcess(RulesEngine.java:142)
    at com.oracle.ovm.mgr.model.ModelEngine.preValidate(ModelEngine.java:547)
    at com.oracle.ovm.mgr.model.ModelEngine.access$200(ModelEngine.java:65)
    at com.oracle.ovm.mgr.model.ModelEngine$3.notify(ModelEngine.java:352)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:325)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:289)
    at com.oracle.odof.core.storage.Transaction.invokeMethod(Transaction.java:826)
    at com.oracle.odof.core.Exchange.invokeMethod(Exchange.java:245)
    at com.oracle.odof.core.Exchange.invokeMethod(Exchange.java:219)
    at com.oracle.ovm.mgr.api.job.JobEngine.invokeMethod(JobEngine.java:744)
    at com.oracle.ovm.mgr.api.manager.ModelManagerDbImpl.deleteObject(ModelManagerDbImpl.java:868)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:329)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:289)
    at com.oracle.odof.core.storage.Transaction.invokeMethod(Transaction.java:826)
    at com.oracle.odof.core.Exchange.invokeMethod(Exchange.java:245)
    at com.oracle.ovm.mgr.api.manager.ModelManagerProxy.deleteObject(Unknown Source)
    at com.oracle.ovm.mgr.api.manager.OvmManagerImpl.deleteObjectInternal(OvmManagerImpl.java:386)
    at com.oracle.ovm.mgr.api.manager.OvmManagerImpl.deleteObject(OvmManagerImpl.java:409)
    at com.oracle.ovm.mgr.api.manager.OvmManagerImpl.deleteObject(OvmManagerImpl.java:391)
    at com.oracle.ovm.mgr.api.system.FoundryDbImpl.deleteServer(FoundryDbImpl.java:1007)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:329)
    at com.oracle.odof.core.AbstractVessel.invokeMethod(AbstractVessel.java:289)
    at com.oracle.odof.core.BasicWork.invokeMethod(BasicWork.java:136)
    ... 7 more
    I can't help to complain. The VM Manager just have been so buggy. Can't anyone help!
    Edited by: 969880 on Nov 7, 2012 2:33 PM
    Edited by: 969880 on Nov 7, 2012 2:34 PM

    I used to see this message in my Oracle VM.
    Your all questions are the same root cause is cause from your VM Servers are not available. If you want edit or remove virtual machine is need your VM Servers are available. If you want to remove Server Pool is need all VM Server are removed from it first and also cannot deleted VM Servers too.
    What you have to do first is make all VM Servers up and available.
    Option1. You can try to restart VM Serer agent (ovs-agent) and Oracle VM Manager service (ovmm) and try to log out and log in.
    Option2. Restore Oracle VM from backup with option --UUID of previous VM Manager.
    Thanks and regards,
    Vandy

  • Error: NullPointerException

    HI All ,
    Error : NullPointerException .
    I have got this above error in the Reciever comm channel of JMS Adapter ,
    Could anyone answer detailly .
    Regards.
    Syed Nayeem.

    Umm, this is what my code looks like. I tried it, but it doesn't work.
    import model.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.text.*;
    import javax.swing.*;
    public class ButtonPanel extends JPanel implements View
        private Prison prison;
        private LeftInputPanel leftInput = new LeftInputPanel(prison);
        private DaysPanel days;
        private MonthsPanel months;
        private YearsPanel years;
        private CrimePanel crime;
        private AllocateListener aListener = new AllocateListener();
        public ButtonPanel(Prison prison)
            this.prison = prison;
            setup();
            build();
        public void setup()
        public void build()
            JButton button = new JButton("Allocate Cell");
            Dimension size = new Dimension(240, 70);
            button.setPreferredSize(size);
            button.setMinimumSize(size);
            button.setMaximumSize(size);
            button.addActionListener(aListener);
            add(button);
            update();
        public void update()
            leftInput.update();
    private class AllocateListener implements ActionListener
        public void actionPerformed(ActionEvent e)
            Criminal criminal = new Criminal(leftInput.name());
            Period period = new Period(days.days(), months.months(), years.years());  //nullPointerException here
            criminal.set(new Crime(crime.getCrime()));
            prison.add(criminal);
    }Edited by: karen.tao on Oct 24, 2009 6:11 AM

  • An unexpected 'invalid property array index' error occured in wdbrlog

    Hi experts,
    My system is :
    SAP_BW 7.0 Path  0012
    SAP GUI Final Release Patch 24
    In my query definition, I right-click on one of the characteristics..Eg. Posting Date --> Properties --> Change 'Suppress Results Rows' option from "Never" to "Always". --> Press OK.
    Then I get this pop-up with error message:
    <u>Program Error Intercepted
    An unexpected 'invalid property array index' error occured in wdbrlog.
    1 error(s) are logged.</u>
    If I say continue, it kicks me out of BeX. I need to re-login to do the stuff.
    I find some information, but i dont know what happens.
    Did anyone get the similar error?
    Thanks,
    Marc

    <FONT FACE = "Tahoma", Font Color = "Blue">
    Hi
    <Br>
    I am afraid you may have to re-install your SAP GUI and Business Explorer.
    <Br><Br>Hope it helps.
    <Br>
    <Br>
    Cheers
    Abhijit
    <Br>* Removed
    </FONT>

  • DAC Workflow run error code: [36331]

    Dear all ,
    I want to Integrate OBIEE with Oracle R12.1.1
    Initially I have defined new container & Phyiscal Data Sources in DAC
    Datawarehouse Test Connection Successful
    ORA_R1211 Test Connection Successful
    FlatFile Connection ?
    After that I created new Plan & generate the parameter and also built it successfully but when I run that execution plan it give error.
    Please any one can help me regarding this issue.
    also provide me step by step document to integrate OBIEE with Oracle R12.1.1
    Regards,
    Yasir

    Kindly See the log of last ETL run........
    494 SEVERE Wed Dec 08 18:11:04 GMT+05:00 2010
    START OF ETL
    495 SEVERE Wed Dec 08 18:11:45 GMT+05:00 2010 Starting ETL Process.
    496 SEVERE Wed Dec 08 18:11:50 GMT+05:00 2010 Request to start workflow : 'SILOS:SIL_Parameters_Update' has completed with error code 0
    497 SEVERE Wed Dec 08 18:12:12 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SILOS -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211.DataWarehouse.SILOS.SIL_Parameters_Update.txt SIL_Parameters_Update
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    498 SEVERE Wed Dec 08 18:12:22 GMT+05:00 2010 Request to start workflow : 'SILOS:SIL_InsertRowInRunTable' has completed with error code 0
    499 SEVERE Wed Dec 08 18:12:44 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SILOS -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211_Flatfile.DataWarehouse.SILOS.SIL_InsertRowInRunTable.txt SIL_InsertRowInRunTable
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    500 SEVERE Wed Dec 08 18:13:04 GMT+05:00 2010 Request to start workflow : 'SILOS:SIL_GlobalCurrencyGeneral_Update' has completed with error code 0
    501 SEVERE Wed Dec 08 18:13:12 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_Stage_GLAccountDimension_FinSubCodes' has completed with error code 0
    502 SEVERE Wed Dec 08 18:13:12 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_Stage_GroupAccountNumberDimension' has completed with error code 0
    503 SEVERE Wed Dec 08 18:13:12 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_LocalCurrency_Temporary' has completed with error code 0
    504 SEVERE Wed Dec 08 18:13:13 GMT+05:00 2010 Request to start workflow : 'SILOS:SIL_Stage_GroupAccountNumberDimension_FinStatementItem' has completed with error code 0
    505 SEVERE Wed Dec 08 18:13:13 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_GLJournals_Full' has completed with error code 0
    506 SEVERE Wed Dec 08 18:13:13 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_InternalOrganizationDimension_BalanceSegmentValue_LegalEntity' has completed with error code 0
    507 SEVERE Wed Dec 08 18:13:15 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_Stage_ValueSetHier_Extract_Full' has completed with error code 0
    508 SEVERE Wed Dec 08 18:13:15 GMT+05:00 2010 Request to start workflow : 'SILOS:SIL_ListOfValuesGeneral_Unspecified' has completed with error code 0
    509 SEVERE Wed Dec 08 18:13:18 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_ExchangeRateGeneral_Full' has completed with error code 0
    510 SEVERE Wed Dec 08 18:13:41 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SDE_ORAR1211_Adaptor -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211_Flatfile.DataWarehouse.SDE_ORAR1211_Adaptor.SDE_ORA_Stage_GroupAccountNumberDimension.txt SDE_ORA_Stage_GroupAccountNumberDimension
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    511 SEVERE Wed Dec 08 18:13:41 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SILOS -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211_Flatfile.DataWarehouse.SILOS.SIL_Stage_GroupAccountNumberDimension_FinStatementItem.txt SIL_Stage_GroupAccountNumberDimension_FinStatementItem
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    512 SEVERE Wed Dec 08 18:14:18 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SDE_ORAR1211_Adaptor -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211.DataWarehouse.SDE_ORAR1211_Adaptor.SDE_ORA_InternalOrganizationDimension_BalanceSegmentValue_LegalEntity.txt SDE_ORA_InternalOrganizationDimension_BalanceSegmentValue_LegalEntity
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    513 SEVERE Wed Dec 08 18:14:18 GMT+05:00 2010 Request to start workflow : 'SILOS:SIL_CurrencyTypes' has completed with error code 0
    514 SEVERE Wed Dec 08 18:14:18 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_Stage_GLAccount_SegmentConfig_Extract' has completed with error code 0
    515 SEVERE Wed Dec 08 18:14:23 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SILOS -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211.DataWarehouse.SILOS.SIL_GlobalCurrencyGeneral_Update.txt SIL_GlobalCurrencyGeneral_Update
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    516 SEVERE Wed Dec 08 18:14:30 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SDE_ORAR1211_Adaptor -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211.DataWarehouse.SDE_ORAR1211_Adaptor.SDE_ORA_LocalCurrency_Temporary.txt SDE_ORA_LocalCurrency_Temporary
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    517 SEVERE Wed Dec 08 18:14:34 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SDE_ORAR1211_Adaptor -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211_Flatfile.DataWarehouse.SDE_ORAR1211_Adaptor.SDE_ORA_Stage_GLAccountDimension_FinSubCodes.txt SDE_ORA_Stage_GLAccountDimension_FinSubCodes
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    518 SEVERE Wed Dec 08 18:14:38 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SDE_ORAR1211_Adaptor -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211.DataWarehouse.SDE_ORAR1211_Adaptor.SDE_ORA_Stage_ValueSetHier_Extract_Full.txt SDE_ORA_Stage_ValueSetHier_Extract_Full
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    519 SEVERE Wed Dec 08 18:14:42 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SILOS -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211_Flatfile.DataWarehouse.SILOS.SIL_ListOfValuesGeneral_Unspecified.txt SIL_ListOfValuesGeneral_Unspecified
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    520 SEVERE Wed Dec 08 18:14:43 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_Stage_ValueSet_Extract' has completed with error code 0
    521 SEVERE Wed Dec 08 18:14:49 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SDE_ORAR1211_Adaptor -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211.DataWarehouse.SDE_ORAR1211_Adaptor.SDE_ORA_ExchangeRateGeneral_Full.txt SDE_ORA_ExchangeRateGeneral_Full
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    522 SEVERE Wed Dec 08 18:14:58 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_GLSegmentDimension_Full' has completed with error code 0
    523 SEVERE Wed Dec 08 18:15:05 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_InternalOrganizationDimensionHierarchy_HROrgsTemporary_LatestVersion' has completed with error code 0
    524 SEVERE Wed Dec 08 18:15:10 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_Stage_ValueSetHier_Flatten' has completed with error code 0
    525 SEVERE Wed Dec 08 18:15:10 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_GL_AR_REV_LinkageInformation_Extract_Full' has completed with error code 0
    526 SEVERE Wed Dec 08 18:15:17 GMT+05:00 2010 Request to start workflow : 'SILOS:SIL_TimeOfDayDimension' has completed with error code 0
    527 SEVERE Wed Dec 08 18:16:04 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SDE_ORAR1211_Adaptor -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211.DataWarehouse.SDE_ORAR1211_Adaptor.SDE_ORA_Stage_ValueSet_Extract.txt SDE_ORA_Stage_ValueSet_Extract
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    528 SEVERE Wed Dec 08 18:16:16 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SDE_ORAR1211_Adaptor -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211_Flatfile.DataWarehouse.SDE_ORAR1211_Adaptor.SDE_ORA_Stage_GLAccount_SegmentConfig_Extract.txt SDE_ORA_Stage_GLAccount_SegmentConfig_Extract
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    529 SEVERE Wed Dec 08 18:16:17 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SILOS -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211_Flatfile.DataWarehouse.SILOS.SIL_CurrencyTypes.txt SIL_CurrencyTypes
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    530 SEVERE Wed Dec 08 18:16:25 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SDE_ORAR1211_Adaptor -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211.DataWarehouse.SDE_ORAR1211_Adaptor.SDE_ORA_GLSegmentDimension_Full.txt SDE_ORA_GLSegmentDimension_Full
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    531 SEVERE Wed Dec 08 18:16:28 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SDE_ORAR1211_Adaptor -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211.DataWarehouse.SDE_ORAR1211_Adaptor.SDE_ORA_InternalOrganizationDimensionHierarchy_HROrgsTemporary_LatestVersion.txt SDE_ORA_InternalOrganizationDimensionHierarchy_HROrgsTemporary_LatestVersion
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    532 SEVERE Wed Dec 08 18:16:57 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SDE_ORAR1211_Adaptor -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\DataWarehouse.DataWarehouse.SDE_ORAR1211_Adaptor.SDE_ORA_Stage_ValueSetHier_Flatten.txt SDE_ORA_Stage_ValueSetHier_Flatten
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    533 SEVERE Wed Dec 08 18:17:22 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_Stage_ValueSetHier_DeriveRange' has completed with error code 0
    534 SEVERE Wed Dec 08 18:17:31 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SILOS -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211_Flatfile.DataWarehouse.SILOS.SIL_TimeOfDayDimension.txt SIL_TimeOfDayDimension
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    535 SEVERE Wed Dec 08 18:17:58 GMT+05:00 2010 Request to start workflow : 'SILOS:SIL_HourOfDayDimension' has completed with error code 0
    536 SEVERE Wed Dec 08 18:18:21 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SILOS -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\DataWarehouse.DataWarehouse.SILOS.SIL_HourOfDayDimension.txt SIL_HourOfDayDimension
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    537 SEVERE Wed Dec 08 18:21:36 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SDE_ORAR1211_Adaptor -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\ORA_R1211.DataWarehouse.SDE_ORAR1211_Adaptor.SDE_ORA_GLJournals_Full.txt SDE_ORA_GLJournals_Full
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    538 SEVERE Wed Dec 08 18:22:12 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_PartyContactStaging_Full' has completed with error code 0
    539 SEVERE Wed Dec 08 18:22:14 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_CodeDimension_Payterm_Ap' has completed with error code 0
    540 SEVERE Wed Dec 08 18:22:14 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_CodeDimension_Bank_Branch_Name' has completed with error code 0
    541 SEVERE Wed Dec 08 18:22:15 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_CodeDimension_Cust_Class' has completed with error code 0
    542 SEVERE Wed Dec 08 18:22:15 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_CodeDimension_Uom_Code' has completed with error code 0
    543 SEVERE Wed Dec 08 18:22:16 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_CodeDimension_CostCenter' has completed with error code 0
    544 SEVERE Wed Dec 08 18:22:16 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_UserDimension_Full' has completed with error code 0
    545 SEVERE Wed Dec 08 18:22:27 GMT+05:00 2010 Request to start workflow : 'SDE_ORAR1211_Adaptor:SDE_ORA_CodeDimension_Supplier_Payment_Method' has completed with error code 0
    546 SEVERE Wed Dec 08 18:23:46 GMT+05:00 2010 Error while contacting Informatica server for getting workflow status for SDE_ORA_CodeDimension_Payterm_Ap
    Error Code = 36331:Unknown reason for error code 36331
    Pmcmd output :
    =====================================
    STD OUTPUT
    =====================================
    Informatica(r) PMCMD, version [8.6.1 HotFix11], build [457.0505], Windows 32-bit
    Copyright (c) Informatica Corporation 1994 - 2010
    All Rights Reserved.
    Invoked at Wed Dec 08 18:23:43 2010
    Connected to Integration Service: [Oracle_BI_DW_Base_Intergration_Service].
    Integration Service status: [Running]
    Integration Service startup time: [Wed Dec 08 17:05:35 2010]
    Integration Service current time: [Wed Dec 08 18:23:46 2010]
    Folder: [SDE_ORAR1211_Adaptor]
    Workflow: [SDE_ORA_CodeDimension_Payterm_Ap] version [1].
    Workflow run status: [Failed]
    Workflow run error code: [36331]
    Workflow run error message: [WARNING: Session task instance [SDE_ORA_CodeDimension_Payterm_Ap] failed and its "fail parent if this task fails" setting is turned on. So, Workflow [SDE_ORA_CodeDimension_Payterm_Ap] will be failed.]
    Workflow run id [103].
    Start time: [Wed Dec 08 18:22:13 2010]
    End time: [Wed Dec 08 18:23:38 2010]
    Workflow log file: [F:\Informatica\PowerCenter8.6.1\server\infa_shared\WorkflowLogs\SDE_ORA_CodeDimension_Payterm_Ap.log]
    Workflow run type: [User request]
    Run workflow as user: [Administrator]
    Run workflow with Impersonated OSProfile in domain: []
    Integration Service: [Oracle_BI_DW_Base_Intergration_Service]
    Disconnecting from Integration Service
    Completed at Wed Dec 08 18:23:46 2010
    =====================================
    ERROR OUTPUT
    =====================================
    547 SEVERE Wed Dec 08 18:23:46 GMT+05:00 2010 Could not attach to workflow because of errorCode 36331 For workflow SDE_ORA_CodeDimension_Payterm_Ap
    548 SEVERE Wed Dec 08 18:23:46 GMT+05:00 2010
    ANOMALY INFO::: Error while executing : INFORMATICA TASK:SDE_ORAR1211_Adaptor:SDE_ORA_CodeDimension_Payterm_Ap:(Source : FULL Target : FULL)
    MESSAGE:::
    Irrecoverable Error
    Error while contacting Informatica server for getting workflow status for SDE_ORA_CodeDimension_Payterm_Ap
    Error Code = 36331:Unknown reason for error code 36331
    Pmcmd output :
    =====================================
    com.siebel.analytics.etl.etltask.GenericTaskImpl.doExecuteWithRetries(GenericTaskImpl.java:469)
    com.siebel.analytics.etl.etltask.GenericTaskImpl.execute(GenericTaskImpl.java:306)
    com.siebel.etl.engine.core.Session.executeTasks(Session.java:2697)
    com.siebel.etl.engine.core.Session.run(Session.java:3246)
    java.lang.Thread.run(Thread.java:619)
    ::: CAUSE :::
    MESSAGE:::Execution of child batch Informatica Session Batch failed.
    EXCEPTION CLASS::: com.siebel.analytics.etl.etltask.FailedTaskException
    com.siebel.analytics.etl.etltask.ParallelTaskBatch.doExecuteNormal(ParallelTaskBatch.java:340)
    com.siebel.analytics.etl.etltask.ParallelTaskBatch.doExecute(ParallelTaskBatch.java:164)
    com.siebel.analytics.etl.etltask.GenericTaskImpl.doExecuteWithRetries(GenericTaskImpl.java:410)
    com.siebel.analytics.etl.etltask.GenericTaskImpl.execute(GenericTaskImpl.java:306)
    com.siebel.etl.engine.core.Session.executeTasks(Session.java:2697)
    com.siebel.etl.engine.core.Session.run(Session.java:3246)
    java.lang.Thread.run(Thread.java:619)
    954 SEVERE Wed Dec 08 18:31:34 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SDE_ORAR1211_Adaptor -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\DataWarehouse.DataWarehouse.SDE_ORAR1211_Adaptor.SDE_ORA_Stage_ValueSetHier_DeriveRange.txt SDE_ORA_Stage_ValueSetHier_DeriveRange
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    955 SEVERE Wed Dec 08 18:32:25 GMT+05:00 2010 pmcmd startworkflow -sv Oracle_BI_DW_Base_Intergration_Service -d Domain_srv-007 -u Administrator -p **** -f SILOS -lpf F:\Informatica\PowerCenter8.6.1\server\infa_shared\SrcFiles\DataWarehouse.DataWarehouse.SILOS.SIL_GLLinkageInformationGeneral_Full.txt SIL_GLLinkageInformationGeneral_Full
    Status Desc : Succeeded
    WorkFlowMessage : Workflow executed successfully.
    Error Message : Successfully completed.
    ErrorCode : 0
    956 SEVERE Wed Dec 08 18:32:43 GMT+05:00 2010 ETL seems to have completed. Invoking shut down dispatcher after the notification from the last running task.
    957 SEVERE Wed Dec 08 18:32:43 GMT+05:00 2010 Finishing ETL Process.
    958 SEVERE Wed Dec 08 18:32:43 GMT+05:00 2010 MESSAGE:::Some steps failed.
    EXCEPTION CLASS::: com.siebel.etl.engine.bore.SomeSessionsFailedException
    com.siebel.etl.engine.bore.NewDispatcher.execute(NewDispatcher.java:302)
    com.siebel.etl.engine.bore.NewDispatcher.run(NewDispatcher.java:121)
    java.lang.Thread.run(Thread.java:619)
    959 SEVERE Wed Dec 08 18:32:43 GMT+05:00 2010 Dispatcher thread completed.
    960 SEVERE Wed Dec 08 18:32:43 GMT+05:00 2010 Number of incomplete tasks whose status got updated to stopped :0
    Number of incomplete task details whose status got updated to stopped :2630
    961 SEVERE Wed Dec 08 18:32:43 GMT+05:00 2010
    *     CLOSING THE CONNECTION POOL DataWarehouse
    962 SEVERE Wed Dec 08 18:32:43 GMT+05:00 2010
    *     CLOSING THE CONNECTION POOL ORA_R1211
    963 SEVERE Wed Dec 08 18:32:43 GMT+05:00 2010
    END OF ETL
    --------------------------------------------

  • Java "Application Failed to run" error in safari

    I'm getting a " Application Failed to run" error on safari when trying to upload photos to facebook via the java uploader. I can't use the iphoto uploader for this particular page so that is not a solution.
    I've uploaded photos plenty of times before but starting today, I get the following JAva Console message that I've deleted my user name from. Although I don't see anything here that indicates an erro, it is promted by an Error message that you click for details, which says the "The Application failed to run". Any thoughts on what I can do to correct this? I haven't changed anything since it's worked in the past and I've quit safari, restarted and ran disk utility.
    Java Plug-in 1.6.0_15
    Using JRE version 1.6.0_15-b03-219 Java HotSpot(TM) 64-Bit Server VM
    User home directory = /Users/
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    p: reload proxy configuration
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    ----------------------------------------------------

    This I guess is not a Safari problem since I got the same error in Firefox. How does one fix a Java problem occurring in at least two different browsers?

  • KIMYONG:  "Service Component Container Not Running"  error 시 조치사항

    KIMYONG: "Service Component Container Not Running" error 시 조치사항
    Purpose
    WF Agent Listener 를 구동하고자 할때 아래 error를 발생하며 멈추게 됩니다.
    이를 조치하는 방법은
    ERROR
    CANNOT START 'WORKFLOW AGENT LISTENER - ERROR:
    "THE SERVICE ERROR COMPONENT CONTAINER"
    Solution
    전체적인 절차는 아래와 같습니다.
    1. apache 를 bounce 합니다.
    2. Workflow Mailer Service를 시작합니다.
    a. Workflow administrator Web Applications Responsibility
    b. Workflow Manager
    c. Click on Service Components icon
    d. Click on the Workflow Mailer Service link (Container column)
    e. Select Workflow Mailer Service
    f. Select Start from the list of values (top)
    g. Click on go.
    h. Wait until the Workflow Mailer service is "Activated"
    3. Workflow Agent listener Service 를 시작합니다.
    a. Workflow administrator Web Applications Responsibility
    b. Workflow Manager
    c. Click on Service Components icon
    d. Click on the Workflow Agent listener Service link (Container column)
    e. Select Workflow Agent listener Service
    f. Select Start from the list of values (top)
    g. Click on go.
    h. Wait until the Workflow Agent listener service is "Activated"
    4. Workflow Mailer를 시작합니다.
    a. Workflow administrator Web Applications Responsibility
    b. Workflow Manager
    c. Click on Notification Mailers icon
    d. Select Workflow Notification Mailer
    e. Select Start from the list of values (top)
    g. Click on go.
    h. Do the same for the workflow deferred agent listener
    Reference
    Note 559388.1

    Hi,
    I'm having the same problem as you did.
    I've tried pushing the button Go in the Oracle Workflow Manager - Service Components.
    And it showed
    An error has occurred!
    The Service Component Container is not running.
    Should I uninstall my Oracle Workflow?
    And install a new installation of Oracle Workflow?
    What does it mean by the "wfinstall"?
    Is it the Oracle Workflow Configuration Assistant? which I can access using the wfinstall.bat.
    Or should I replay the Oracle Workflow Configuration Assistant (wfinstall.bat) and choose Upgrade option?
    Or should I uninstall all of my Oracle installation and start installing from the beginning?
    BTW, what if I don't use (or have) OID?
    Is it required?
    Any clue would be grateful.
    Thanks.
    Buntoro

  • ABAP transaction iview Run Error

    hi,
    I met a problem, i create a  ABAP Trasaction iview, which preview result is right using admin. when i assigned it to a test user. it runs error. if i assigned administrator group to the test user, it will run right.
    why?

    Hi,
    1.I forgot to mention you have to assign the End User role as well for the iView object to everyone group.
    2. Check the permission for the system object in portal as well
    In case you are still facing the issue
    Post the error message.
    Thanks
    Prashant

  • Causes for the "Expected an array object" error

    I'm using Acrobat Pro X and am getting the "Expected an array object" error recently when inserting a PDF that was created by inserting a smaller collection of other PDF documents, if that makes sense.
    Oddly, or maybe not, I can build the second level PDF by inserting all of the individual PDFs one at a time. The error only occurs when I try to "build up" the larger document.
    My searches come up empty as far as revealing what causes this error.
    Anyone know what causes it?
    Thank you.

    How are you creating the pdf. Your comment about putting a publication together gives us nothing to go on.

  • I have a prpblem in enabling webserver i get message labview webserver not running error 54 , i checked IIS Manager and www the services r running ok ..can anybody tell what might be error ,,,iam on labview 6.1 and win 2003 server.,

    i have a problem in enabling webserver i get message labview webserver not running error 54 , i checked IIS Manager and www the services r running ok ..can anybody tell what might be error ,,,iam on labview 6.1 and win 2003 server.,

    If you already have IIS web server running, you need to run the LabVIEW web server on a different port to avoid conflicts. It probably won't start because the port 80 is already in use.
    Check options.."Web Server: Configuration" within LabVIEW.
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for

  • Error occured at Class not registered... Because Excel is not installed?

    I received the following error while trying to run an application built with LV 7.1: Error -2147221164 occured at Class not registered in Open_Excel.vi > Report_generation_excel_Tbeta WITH new layout.vi > Mirror_Cycling_Main tbeta-2.vi Could this be

  • Snow Leopard Strange behavior, best stategy for fixing?

    I have noticed recently a series of issues. It started when one of my computers starting getting Mobile Me sync errors. These seem to have gone away, but the computer that was having these errors now has several odd, but not, at this point critical p

  • HT1695 I cannot get the internet to work on my ipod

    I have been using my ipod to access the internet for years. i have been using a netgear router for a while. one day i came home and i could not access the internet. i have signal bars indicating internet. i can go to my router ip address with my ipod

  • Clicking on Adobe Acrobat file brings up Microsoft viewer fax

    I want to view an Acrobat file at my mutual fund online and when I click on the Adobe file icon, the Microsoft Viewer and Fax window appears and I cannot view the file. How do I get back the function whereby my Adobe reader opens the view of the file

  • Inspire 5.1 5300 - only 2 speakers work

    Hi, I've been using these Inspire 5.1 5300 speakers for quite some time and it worked without problems all this while. But today out of a sudden I realised there is only sound coming out from two of the five speakers. I thought the speakers were spoi