Grid XLM Error

I'm getting an error for a VB I created to "refresh all" in smart view.
Here is the error:
Error in Grid XML: each dimension must be used once and only once.
Macro used: HFM Refresh macro
Dim X As Variant
Dim oBar As CommandBar
Dim ws As Worksheet
Set oBar = Application.CommandBars("Worksheet Menu Bar")
oBar.Controls("Hyperion").Controls("Refresh").Execute
End Sub

kuldeep wrote:
Hi,
I posted this in Grid Computing but there was no reply so i am posting this here ant help is appreciated.
Grid Login Error

Similar Messages

  • Grid Login Error

    Hi,
    When i am trying to login to Grid URL it says Login operation failed.
    When i checked the Apache log files
    TIME=2009-06-30+01%3a52%3a25&OUTSTANDINGSEVS=FALSE&EMD_UPTIME=2009-04-20+07%3a13%3a34
    &OLDEST_COLL_TIME=2009-06-30+01%3a52%3a25&INSTALL_TYPE=agent&X-ORCL-EMOV=4%2e0%2e0&X-OR
    CL-EMCV=10%2e2%2e0%2e4%2e0&X-ORCL-EMSV=10%2e2%2e0%2e4%2e0 HTTP/1.1" 200 5
    This is what i receive.
    Let me know further on how to proceed.
    DB Version Release 10.1.0.4.0
    Opatch version 10.2.0.3.0
    any doc for monitoring and finding all log files in grid control
    error login message
    [Tue Jun 30 01:16:18 2009] [error] [client 174.13.0.111] [ecid: 1246349778:172.16.1.2:8
    591:0:43349,0] File does not exist: /orahome/app/oracle/OracleHomes/oms10g/Apache/Apach
    e/htdocs/favicon.ico
    I posted this in Grid Computing but there was no reply so i am posting this here ant help is appreciated.

    kuldeep wrote:
    Hi,
    I posted this in Grid Computing but there was no reply so i am posting this here ant help is appreciated.
    Grid Login Error

  • 11gR2 Grid installation error

    Hi All,
    I am currently trying to install the 11gR2 grid infra for cluster , First i ran the cluvfy i got the issue " exectask could not be retrieved from node "saixlab52"
    " then i tried to started while installing i am getting "Internal error" and installation got aborted , below is the error i am getting in the logfiles , i have checked the first node oifcfg is there ... second node the file is not there ... seems it's not copying to the remote node ..
    pls provide me any of the suggestions ..
    ======================================
    Checking node reachability...
    Check: Node reachability from node "saixlab51"
    Destination Node Reachable?
    saixlab52 yes
    saixlab51 yes
    Result: Node reachability check passed from node "saixlab51"
    Checking user equivalence...
    Check: User equivalence for user "oracle"
    Node Name Comment
    saixlab52 passed
    saixlab51 passed
    Result: User equivalence check passed for user "oracle"
    Version of exectask could not be retrieved from node "saixlab52"
    Checking node connectivity...
    Checking hosts config file...
    Node Name Status Comment
    saixlab51 passed
    =========================================
    ===================================
    NFO: All remote nodes are configured for passwordless SSH connectivity
    INFO: Validating Public nodes for user equivalence
    INFO: Validating Hostnames for nodes
    INFO: Validating node readiness
    INFO: Checking for node liveliness
    INFO: Validating Public Hosts for User Equivalence
    INFO: Validating for 9.2, 10gR1 or Local CSS
    INFO: Setting public and VIP node info to the bean
    INFO: Validating Public And Private Interfaces Across Cluster Nodes
    INFO: Validating Node VIPs
    INFO: Completed validating state <CRSNodeInformationUI>
    INFO: Verifying route success
    INFO: Waiting for completion of background operations
    INFO: Completed background operations
    INFO: Executing action at state getSubnetInformation
    INFO: Collecting interface information for node saixlab51
    INFO: Collecting interface information for node saixlab52
    INFO: Creating scratch path on node saixlab52
    INFO: Created scratch path on node saixlab52
    INFO: Copying oifcfg to node saixlab52
    INFO: A cluster operation has failed while collecting interface information on node saixlab52: Message: error: No such file or directory, file: '/tmp/OraInstall2011-03-18_11-30-52AM/ext/bin/oifcfg' :failed
    INFO: Removing scratch path from node saixlab52
    SEVERE: [FATAL] [INS-00001] Unknown irrecoverable error
    CAUSE: No additional information available.
    ACTION: Refer to the logs or contact Oracle Support Services.
    Refer associated stacktrace #oracle.install.commons.util.exception.DefaultErrorAdvisor:679
    INFO: Advice is ABORT
    SEVERE: Unconditional Exit
    INFO: Adding ExitStatus FAILURE to the exit status set
    INFO: Finding the most appropriate exit status for the current application
    INFO: Exit Status is -1
    INFO: Shutdown Oracle Grid Infrastructure
    ====================================
    Regards
    Kamal

    Hi,
    Thanks for your reply !!
    But the cksum values seems fine .. no problem .
    Regards
    Kamal

  • ALV Grid OO Error

    Hi Guys,
    When i am executing the program for ALV grid using OO concepts i got thisn type of error
    "Short text
    Access via 'NULL' object reference not possible.
    What happened?
    Error in the ABAP Application Program
    The current ABAP program "Z_TEST_PGM" had to be terminated because it has
    come across a statement that unfortunately cannot be executed.
    Error analysis
    An exception occurred that is explained in detail below.
    The exception, which is assigned to class 'CX_SY_REF_IS_INITIAL', was not
    caught in
    procedure "ALVGRID_OO_DISPLAY" "(FORM)", nor was it propagated by a RAISING
    clause.
    Since the caller of the procedure could not have anticipated that the
    exception would occur, the current program is terminated.
    The reason for the exception is:
    You attempted to use a 'NULL' object reference (points to 'nothing')
    access a component (variable: "GRID").
    An object reference must point to an object (an instance of a class)
    before it can be used to access components.
    Either the reference was never set or it was set to 'NULL' using the
    CLEAR statement."
    The code for this one is .
    Data : grid type ref to cl_gui_alv_grid,
    g_custom_container type ref to cl_gui_custom_container,
    FCAT TYPE LVC_T_FCAT,
    gt_final1 type table of t_Final_out.
    Initialization.
    v_repid = sy-repid.
    set screen '101'.
    MODULE STATUS_0101 output.
    if g_custom_container is initial .
    create object g_custom_container
    Exporting
    Container_name = 'CCCONTAINER'.
    Create Object grid
    Exporting
    I_Parent = g_custom_container.
    Endif.
    CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
    EXPORTING
    I_STRUCTURE_NAME = 't_final_out'
    CHANGING
    CT_FIELDCAT = FCAT[].
    ENDMODULE.
    Perform ALVGRID_OO_Display.
    Form ALVGRID_OO_Display.
    *set screen '101'.
    Call Method grid->set_table_for_first_display
    Exporting I_Structure_name = 't_final_out'
    Changing it_outtab = gt_final1.
    Endform.
    't_final_out' is the final output Structure of the Internal table.
    Please respond to this thread.
    Thanks,
    Gopi

    t_final_out is a local structure do n't give this structure create a global structure in se11 with the fields used and pass that structure to FM  'LVC_FIELDCATALOG_MERGE'. this will sove your problem.
    <b>if helpful reward some points.</b>

  • Grid control error

    Hi all,
    when i'm trying to open the grid control page i'm getting the fillowing error
    503 Service Unavailable
    Service is not initialized correctly. Verify that the repository connection information provided is correct.

    in emoms.trc i find this error
    2009-12-14 15:36:42,866 [ApplicationServerThread-45] ERROR app.SessionObjectManager sessionDestroyed.128 - java.sql.SQLException: ORA-00257: archiver error. Connect internal only, until freed.
    java.sql.SQLException: ORA-00257: archiver error. Connect internal only, until freed.
    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:137)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:315)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:276)
    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:271)
    at oracle.jdbc.driver.T4CTTIoauthenticate.receiveOsesskey(T4CTTIoauthenticate.java:243)
    at oracle.jdbc.driver.T4CConnection.logon(T4CConnection.java:308)
    at oracle.jdbc.driver.PhysicalConnection.<init>(PhysicalConnection.java:429)
    at oracle.jdbc.driver.T4CConnection.<init>(T4CConnection.java:152)
    at oracle.jdbc.driver.T4CDriverExtension.getConnection(T4CDriverExtension.java:31)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:608)
    at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:217)
    at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPhysicalConnection(OracleConnectionPoolDataSource.java:113)
    at oracle.jdbc.pool.OracleConnectionPoolDataSource.getPooledConnection(OracleConnectionPoolDataSource.java:76)
    at oracle.jdbc.pool.OracleImplicitConnectionCache.makeCacheConnection(OracleImplicitConnectionCache.java:1361)
    at oracle.jdbc.pool.OracleImplicitConnectionCache.getCacheConnection(OracleImplicitConnectionCache.java:439)
    at oracle.jdbc.pool.OracleImplicitConnectionCache.getConnection(OracleImplicitConnectionCache.java:334)
    at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:285)
    at oracle.jdbc.pool.OracleDataSource.getConnection(OracleDataSource.java:253)
    at oracle.sysman.util.jdbc.ConnectionCache._getConnection(ConnectionCache.java:336)
    at oracle.sysman.util.jdbc.ConnectionCache._getConnection(ConnectionCache.java:322)
    at oracle.sysman.util.jdbc.ConnectionCache.getUnwrappedConnection(ConnectionCache.java:575)
    at oracle.sysman.emSDK.svc.conn.FGAConnectionCache.getFGAConnection(FGAConnectionCache.java:218)
    at oracle.sysman.emSDK.svc.conn.ConnectionService.getPrivateConnection(ConnectionService.java:1158)
    at oracle.sysman.emSDK.svc.conn.ConnectionService.getPrivateConnection(ConnectionService.java:1192)
    at oracle.sysman.eml.app.SessionObjectManager.sessionDestroyed(SessionObjectManager.java:116)
    at oracle.sysman.eml.app.SessionListener.sessionDestroyed(SessionListener.java:114)
    at com.evermind.server.http.HttpApplication.invalidateSession(HttpApplication.java:683)
    at com.evermind.server.http.EvermindHttpSession.invalidate(EvermindHttpSession.java:272)
    at com.evermind.server.http.SessionAsyncInvalidateHandler.invalidateSession(SessionAsyncInvalidateHandler.java:173)
    at com.evermind.server.http.SessionAsyncInvalidateHandler.run(SessionAsyncInvalidateHandler.java:133)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:192)
    at java.lang.Thread.run(Thread.java:534)
    2009-12-14 15:36:44,280 [AJPRequestHandler-ApplicationServerThread-23] ERROR conn.ConnectionService verifyRepositoryEx.911 - Invalid Connection Pool. ERROR = ORA-00257: archiver error. Connect internal only, until freed.

  • Emca -config dbcontrol db fails with grid control error

    hi friends
    i am using oracle 11.2.0.2.0 in windows xp 32 bit
    while i was trying to config the EM with the command
    emca -config dbcontrol db
    i am getting the following error
    The existing database you have specified has Grid Control repository.This operation is not supported.
    what should i do as i tried everything like i stopped the gridcontrol services already
    with regards
    saugat

    Jul 28, 2011 6:23:23 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Repository successfully dropped
    Jul 28, 2011 6:23:23 PM oracle.sysman.emcp.ParamsManager getHost
    CONFIG: Host having instnces running for database orcl : accessdba
    Jul 28, 2011 6:23:23 PM oracle.sysman.emcp.ParamsManager setParam
    CONFIG: Setting param: REP_DB_RUNNING_HOST value: accessdba
    Jul 28, 2011 6:23:23 PM oracle.sysman.emcp.ParamsManager getRepDbPort
    CONFIG: Listener Port: 1521
    Jul 28, 2011 6:23:23 PM oracle.sysman.emcp.util.GeneralUtil isLocalConnectionRequired
    CONFIG: isLocalConnectionRequired: true
    Jul 28, 2011 6:23:23 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngine
    CONFIG: isLocalConnectionRequired: true. Connecting to database instance locally.
    Jul 28, 2011 6:23:23 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine connecting with SID: orcl, oracleHome: D:\app\saugat\product\11.2.0\dbhome_1, and user: SYS
    Jul 28, 2011 6:23:27 PM oracle.sysman.emcp.util.GeneralUtil initSQLEngineLoacly
    CONFIG: SQLEngine created successfully and connected
    Jul 28, 2011 6:23:27 PM oracle.sysman.emcp.EMReposConfig createRepository
    CONFIG: Spooling to D:\app\saugat\cfgtoollogs\emca\orcl\emca_repos_create_2011_07_28_18_23_27.log
    Jul 28, 2011 6:23:27 PM oracle.sysman.emcp.EMReposConfig createRepository
    INFO: Creating the EM repository (this may take a while) ...
    Jul 28, 2011 6:34:32 PM oracle.sysman.emcp.EMReposConfig createRepository
    WARNING: ORA-25153: Temporary Tablespace is Empty
    ORA-06512: at line 37
    Jul 28, 2011 6:34:32 PM oracle.sysman.emcp.EMReposConfig invoke
    SEVERE: Error creating the repository
    Jul 28, 2011 6:34:32 PM oracle.sysman.emcp.EMReposConfig invoke
    INFO: Refer to the log file at D:\app\saugat\cfgtoollogs\emca\orcl\emca_repos_create_<date>.log for more details.
    Jul 28, 2011 6:34:32 PM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error creating the repository
    Refer to the log file at D:\app\saugat\cfgtoollogs\emca\orcl\emca_2011_07_28_18_15_19.log for more details.
    Jul 28, 2011 6:34:32 PM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error creating the repository
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:252)
         at oracle.sysman.emcp.EMReposConfig.invoke(EMReposConfig.java:160)
         at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:253)
         at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:599)
         at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1482)
         at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:583)
         at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:529)
    Jul 28, 2011 6:34:32 PM oracle.sysman.emcp.EMConfig restoreOuiLoc
    CONFIG: Restoring oracle.installer.oui_loc to D:\app\saugat\product\11.2.0\dbhome_1\oui
    it shows thaat temp tablespace is empty

  • Installing agent on x64 windows server to grid has error

    hi,
    It seem like this server x64 is on a different LAN than the others which is why I think its not working, any suggestion to make it work?
    the installation of agent has error "the specified management service on host csdowgrid001.cspas.kp.org at port 4889 is unreacheable. Click ok to continue"
    but if I continue, it wouldn't see it right correct? I cancel the installation. the x64 server is outside our firewall.

    hi, I was able to install after your suggestion but now the agent is not uploading, I secure it and the status is below: On the grid page, the server is not showing up.
    D:\OracleHomes\agent10g\bin>emctl status agent
    Oracle Enterprise Manager 10g Release 5 Grid Control 10.2.0.5.0.
    Copyright (c) 1996, 2009 Oracle Corporation. All rights reserved.
    Agent Version : 10.2.0.5.0
    OMS Version : 10.2.0.5.0
    Protocol Version : 10.2.0.5.0
    Agent Home : D:\OracleHomes\agent10g
    Agent binaries : D:\OracleHomes\agent10g
    Agent Process ID : 3904
    Agent URL : https://CSDOWPDMS002.cs.msds.kp.org:3872/emd/main/
    Repository URL : https://csdowgrid001.cspas.kp.org:1159/em/upload
    Started at : 2009-10-30 11:10:38
    Started by user : SYSTEM
    Last Reload : 2009-10-30 11:10:38
    Last successful upload : (none)
    Last attempted upload : (none)
    Total Megabytes of XML files uploaded so far : 0.00
    Number of XML files pending upload : 42
    Size of XML files pending upload(MB) : 16.26
    Available disk space on upload filesystem : 87.98%
    Last attempted heartbeat to OMS : 2009-10-30 11:15:14
    Last successful heartbeat to OMS : unknown
    Agent is Running and Ready

  • Grid XML Error

    I'm getting an error for a VB I created to "refresh all" in smart view.
    Here is the error:
    Error in Grid XML: each dimension must be used once and only once.
    Macro used: HFM Refresh macro
    Dim X As Variant
    Dim oBar As CommandBar
    Dim ws As Worksheet
    Set oBar = Application.CommandBars("Worksheet Menu Bar")
    oBar.Controls("Hyperion").Controls("Refresh").Execute
    End Sub

    I do get the same error message when using Oracle Hyperion Smart View for Office, Fusion Edition. However, the error does not show up when using the 9.3.2 Smart View client.
    Any help on this will be greatly appreciated.

  • ALV Grid handle_data_changed error?

    Hi all,
    I've been working on an implementation of an ALV grid in which the user has the ability to edit certain fields. I want to capture those changed values in my program. I've implemented a lcl_event_handler class and I've defined a method within the class to process the data_changed event. I've also defined and instantiated a handle to the class. I've also registered the mc_evt_enter event with the ALV grid. When I run the grid and change a value the data_changed event fires as you would expect. The trouble is an error message is returned which says "Field ty_pan-gsmng is not defined in the ABAP dictionary". I pass a reference to a custom type I defined within the program to the ALV grid...you guessed the name...ty_plan. One of the editable fields within the custome type is gsmng. I'm curious...do I have to pass a reference to a table or type defined within the ABAP dictionary or can I get this code to work with my custom type?
    Thanks in advance...Mat.

    As follows:
    DATA: obj_handler TYPE REF TO lcl_event_handler.
    CLASS lcl_event_handler IMPLEMENTATION.
      METHOD handle_data_changed.
        DATA: ls_good TYPE lvc_s_modi.
        LOOP AT er_data_changed->mt_good_cells INTO ls_good.
          CASE ls_good-fieldname.
    Order Quantity
            WHEN 'GSMNG'.
    Order Start
            WHEN 'PSTTR'.
    Order Finish
            WHEN 'PEDTR'.
    All other fields
            WHEN OTHERS.
          ENDCASE.
        ENDLOOP.
      ENDMETHOD. 
    Call the method to display the data in ALV grid
        CALL METHOD obj_alv_grid->set_table_for_first_display
          EXPORTING
            is_layout                     = wa_layo
            i_structure_name              = 'ty_plan'
            is_variant                    = gs_variant
            i_save                        = gv_save_variant
          CHANGING
            it_outtab                     = pt_plan
            it_fieldcatalog               = pt_fieldcat
            it_sort                       = lt_sort
          EXCEPTIONS
            invalid_parameter_combination = 1
            program_error                 = 2
            OTHERS                        = 3.
      CALL METHOD obj_alv_grid->set_ready_for_input
        EXPORTING
          i_ready_for_input = 1.
      CALL METHOD obj_alv_grid->register_edit_event
        EXPORTING
          i_event_id = cl_gui_alv_grid=>mc_evt_enter.
      CALL METHOD obj_alv_grid->register_edit_event
        EXPORTING
          i_event_id = cl_gui_alv_grid=>mc_evt_modified.
    CREATE OBJECT obj_handler.
    SET HANDLER obj_handler->handle_data_changed FOR obj_alv_grid.

  • MYSQL Plug-in for Oracle grid deployment errors

    hello,
    having problems deploying the mysql plug-in. see error below....any ideas?
    this is the error in the emom.log
    2009-06-05 14:36:25,975 [EMUI_14_36_25_/console/emx/deploy] ERROR em.emx exists.743 - XXXXXX sql = select mmp.target_type, mmp.mp_version, mmp.functional_description, mmp.requirements_description, mmp.hwm_status from mgmt_management_plugins mmp WHERE (mmp.target_type = ? AND mmp.mp_version = ?) AND mmp.hwm_status != ?
    2009-06-05 14:36:25,980 [EMUI_14_36_25_/console/emx/deploy] ERROR em.emx exists.744 - XXXXXX name = mysql
    2009-06-05 14:36:25,983 [EMUI_14_36_25_/console/emx/deploy] ERROR em.emx exists.745 - XXXXXX version = 1.1
    2009-06-05 14:36:49,580 [Thread-278] ERROR em.emx exists.743 - XXXXXX sql = select mmp.target_type, mmp.mp_version, mmp.functional_description, mmp.requirements_description, mmp.hwm_status from mgmt_management_plugins mmp WHERE (mmp.target_type = ? AND mmp.mp_version = ?) AND mmp.hwm_status != ?
    2009-06-05 14:36:49,590 [Thread-278] ERROR em.emx exists.744 - XXXXXX name = mysql
    2009-06-05 14:36:49,592 [Thread-278] ERROR em.emx exists.745 - XXXXXX version = 1.1
    2009-06-05 14:36:49,677 [ManagementPluginWorker(mysql:1.1,speck.lhsc.on.ca:3872)] ERROR em.emx exists.743 - XXXXXX sql = select mmp.target_type, mmp.mp_version, mmp.functional_description, mmp.requirements_description, mmp.hwm_status from mgmt_management_plugins mmp WHERE (mmp.target_type = ? AND mmp.mp_version = ?) AND mmp.hwm_status != ?
    2009-06-05 14:36:49,680 [ManagementPluginWorker(mysql:1.1,speck.lhsc.on.ca:3872)] ERROR em.emx exists.744 - XXXXXX name = mysql
    2009-06-05 14:36:49,681 [ManagementPluginWorker(mysql:1.1,speck.lhsc.on.ca:3872)] ERROR em.emx exists.745 - XXXXXX version = 1.1
    2009-06-05 14:36:51,636 [ManagementPluginWorker(mysql:1.1,speck.lhsc.on.ca:3872)] ERROR em.emx runOperation.319 - RemoteOperationException: ERROR: NMO not setuid-root (Unix-only)
    java.io.IOException: RemoteOperationException: ERROR: NMO not setuid-root (Unix-only)
    at oracle.sysman.emSDK.emd.comm.RemoteOperationInputStream.read(RemoteOperationInputStream.java:172)
    at oracle.sysman.emx.Util.pipe(Util.java:535)
    at oracle.sysman.emx.Util.pipeAndClose(Util.java:451)
    at oracle.sysman.emx.Util.pipeAndClose(Util.java:423)
    at oracle.sysman.emx.AgentFileHandler.runRemoteCommand(AgentFileHandler.java:563)
    at oracle.sysman.emx.AgentFileHandler.undeployFiles(AgentFileHandler.java:459)
    at oracle.sysman.emx.AgentFileHandler.runOperation(AgentFileHandler.java:256)
    at oracle.sysman.emx.AgentFileHandler.undeploy(AgentFileHandler.java:123)
    at oracle.sysman.emx.MPHandler.runOperation(MPHandler.java:165)
    at oracle.sysman.emx.MPHandler.undeploy(MPHandler.java:118)
    at oracle.sysman.emx.AgentDeployWorker.deployToAgent(AgentDeployWorker.java:121)
    at oracle.sysman.emx.AgentDeployWorker.run(AgentDeployWorker.java:78)
    at oracle.sysman.util.threadPoolManager.WorkerThread.run(Worker.java:260)
    2009-06-05 14:36:51,639 [ManagementPluginWorker(mysql:1.1,speck.lhsc.on.ca:3872)] ERROR em.emx exists.743 - XXXXXX sql = select mmp.target_type, mmp.mp_version, mmp.functional_description, mmp.requirements_description, mmp.hwm_status from mgmt_management_plugins mmp WHERE (mmp.target_type = ? AND mmp.mp_version = ?) AND mmp.hwm_status != ?
    2009-06-05 14:36:51,641 [ManagementPluginWorker(mysql:1.1,speck.lhsc.on.ca:3872)] ERROR em.emx exists.744 - XXXXXX name = mysql
    2009-06-05 14:36:51,643 [ManagementPluginWorker(mysql:1.1,speck.lhsc.on.ca:3872)] ERROR em.emx exists.745 - XXXXXX version = 1.1
    2009-06-05 14:36:51,667 [ManagementPluginWorker(mysql:1.1,speck.lhsc.on.ca:3872)] ERROR threadPoolManager.WorkerThread run.281 - Exception message: null
    java.lang.Error
    at oracle.sysman.emx.AgentDeployWorker.run(AgentDeployWorker.java:82)
    at oracle.sysman.util.threadPoolManager.WorkerThread.run(Worker.java:260)
    2009-06-05 14:36:51,669 [Thread-279] ERROR em.emx workerDied.250 - java.lang.Error
    java.lang.Error
    at oracle.sysman.emx.AgentDeployWorker.run(AgentDeployWorker.java:82)
    at oracle.sysman.util.threadPoolManager.WorkerThread.run(Worker.java:260)

    See if this helps.
    After Installing DB Control, Getting RemoteOperationException.
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=824947.1

  • Oracle EM Grid Control Error: Failed to run command in process

    I am trying to change "Backup Settings". After entering the Host Credentials, when I click the OK button, I receive the following error message.
    Validation Error
    Examine and correct the following errors, then retry the operation:
    Error - Connection to host as user <user> failed.ERROR: Failed to run command in process
    Any Suggestions? Thanks in advance!

    Hi,
    If you are using linux/windows the hostname credentials should be the user who has installed the oracle 10g database software, if Windosw the user you are using need to be member of the ora_dba group and have Local Security privilege 'Log on as a batch job'.
    What you need to do is go to start----> Programs----> admin tools----> Local security policy --->local policies ---> user rights assignments
    In the list to your right, look for 'Log on as a batch job', double click and add the same OS local user you using to access OEM web to the group.
    I hope this will solve your problem.
    Cheers,
    Francisco Munoz Alvarez
    http://www.oraclenz.com

  • ALV Grid OOPS error

    Hi all,
    I am using ALV oops for displaying table.
    CL_GUI_ALV_GRID->set_table_for_first_display.
    I  have cretaed an Custom Container for this.
    Now scenario is like, First i have to display normal classical report when user double click on classical report
    it will show alv grid on other screen depending on the row of report user clicks i am picking data and showing it on other screen as ALV grid.
    First time its showing correct data when i press back on ALV grid screen and came back on report screen and select other row and double click  its not showing anything ..
    Please help.
    Its required very urgently by client.
    Thanks in advance..
    Harsh

    Hi,
    Check whether the internal table in which you are passing data to the grid has the correct data.
    Do not call the method set_table_for_first_display once again.
    Instead call the method REFRESH_TABLE_DISPLAY.
    Call the method SET_TABLE_FOR_FIRST_DISPLAY only once when the ALV grid object is created.
    Call the method  flush of the class cl_gui_cfw in the PBO after the grid is displayed; after the method SET_TABLE_FOR_FIRST_DISPLAY
    Check if this works.
    Regards,
    Ankur Parab

  • Error in Grid XML: Active connection and valid HsGetValue PoV

    Hello everyone
    I am struggling using the Smart View fucntions to access an HFM application and retrieving data using the HsGetValue function. I have the following to automatically create a connection:
    Sub CreateConn()
    '!***Adhoc Analysis - Financial Management***!
    'requires smartview.bas located in the \SmartView\bin directory (included in module hyperion) and HsAddin.dll
    'HFM application
    Set ws = ThisWorkbook.Sheets("aSheet")
    MyUsername = "aUsername"
    MyPassword = "aPassword"
    MyAppHFMQMR = "anApp"
    'Activate adhoc sheet (required for Hyp-functions)
    ws.Activate
    'Check connection
    Dim bIsConnection As Boolean
    bIsConnection = HypConnectionExists(MyAppHFMQMR & "New")
    If bIsConnection = True Then: X = HypRemoveConnection(MyAppHFMQMR & "New")
    If X < 0 Then: ErrorMsg CInt(X) 'handle errors
    'Create connection
    X = HypCreateConnection(ws, MyUsername, MyPassword, HYP_FINANCIAL_MANAGEMENT, _
    "http://epmhfm-dev/hfmofficeprovider/hfmofficeprovider.aspx", "DevCluster", _
    MyAppHFMQMR, MyAppHFMQMR, MyAppHFMQMR & "New", "Analytic Provider Services")
    If X < 0 Then: ErrorMsg CInt(X) 'handle errors
    'Establish pre-defined connection
    X = HypConnect(ws, MyUsername, MyPassword, MyAppHFMQMR & "New")
    If X < 0 Then: ErrorMsg CInt(X) 'handle errors
    'Disable suppress #Missing
    X = HypSetSheetOption(ws, 6, False)
    If X < 0 Then: ErrorMsg CInt(X) 'handle errors
    'Preserve formulae
    X = HypSetOption(HSV_PRESERVE_FORMULA_COMMENT, True, ws)
    If X < 0 Then: ErrorMsg CInt(X) 'handle errors
    'Missing data shows as numeric zero
    X = HypSetSheetOption(Null, 13, "#NumericZero")
    If X < 0 Then: ErrorMsg CInt(X) 'handle errors
    End Sub
    This code works fine by itself. I have a second code snippet that builds the HsGetValue function and copies it to the worksheet. Both are embedded in a larger project. Everything works fine if I only run the two modules (the one creating the connection and the second building the functions). If I run some code beforehand, however, I get the 'Error in Grid XML' error and all retrieved data is shown as 0. Incidentally, the connection is still established and the HsGetValue() functions are assembled as they were before including a valid (and identical) PoV.
    I understand that it is difficult to establish from this what the rpoblem might be. I need some help to hone in on the error since Smart View is giving me nothing to work with. To say the least, errors are not handled gracefully in Smart View. I suspect something gets stuck in the cache that prevents the retrieve sheet from updating appropriately.
    Any pointers are appreciated ff anyone else has come across a similar problem using Smart View functions.
    Thanks
    Florian

    I guess when you say that Test 1 does not work you are sure that connection is getting established, though I can see that connection errors are being handled but you should be sure that connection creation and connect code is working and that can be done by debugging the code- in vba editor using 'F8'.
    also check the below code is working or not by debugging again
    bIsConnection = HypConnectionExists(MyAppHFMQMR & "New")
    If bIsConnection = True Then: X = HypRemoveConnection(MyAppHFMQMR & "New")
    Use X<>0 instead of X<0 and see if you get any exception/error. X should be 0 if your code is working.
    Also once done with above test cases can you replace the connection name as something like anAppConn by hardcoding it into your create connection function and then try again..
    If you go to Smart View and Click over sheet info then you can find if the sheet consists of saved connection or not...You can delete it as needed.
    As you say that if you manually create a connection then the code works then there should be a problem with your connection code it seems...
    Thanks

  • SP01 PL03: Click on Grid Link button, add-on disconnected error occured

    Hi Frank,
    I upgrade my add-on to SP01, there is an error when click Link button which in a UDT bound grid, the error shows 'System Message' with three option buttons, [Restart Add-on],[Log off the current company] and [Continue working without this Add-on], this error does not occur on SAP 2005 PL7,PL8, PL9 & PL10, but occurred on SP01 and SP01 PL03.
    The grid Link button link to master like BP, G/L Accout and Item.
    Hope there is a workaround way.
    Thanks.

    What version / PL was your Add-On compiled with before?
    Was it done with 2005A SP00 PL?? ?
    Anyway, I am happy to hear that it works now...
    regards,
    Frank

  • Installing 11gR2 Grid Infrastructure on SPARC Solaris 10

    Please help! I am following the RACGuides_Rac11gR2OnSolaris.pdf to install 11gR2 Grid Infrastructure on SPARC Solaris 10 MU8.
    bash-3.00# cat /etc/release
    Solaris 10 10/09 s10s_u8wos_08a SPARC
    Copyright 2009 Sun Microsystems, Inc. All Rights Reserved.
    Use is subject to license terms.
    Assembled 16 September 2009
    1. I installed Oracle Solaris Studio 12.2, ignored 124861-15 per doc ID 969497.1.
    Installation went well, but root.sh gave on node1...
    CRS-2676: Start of 'ora.evmd' on 'sunt2k-02' succeeded
    CRS-2672: Attempting to start 'ora.asm' on 'sunt2k-02'
    CRS-2676: Start of 'ora.asm' on 'sunt2k-02' succeeded
    CRS-2672: Attempting to start 'ora.DATA.dg' on 'sunt2k-02'
    CRS-2676: Start of 'ora.DATA.dg' on 'sunt2k-02' succeeded
    u01/11.2.0/grid/bin/srvctl start nodeapps -n sunt2k-02 ... failed
    Configure Oracle Grid Infrastructure for a Cluster ... failed
    2. Per doc ID 1053192.1, I rerun the following....
    bash-3.00# /u01/11.2.0/grid/bin/srvctl start nodeapps -n sunt2k-02
    PRKO-2421 : Network resource is already started on node(s): sunt2k-02
    PRCR-1079 : Failed to start resource ora.sunt2k-02.vip
    CRS-5005: IP Address: 10.112.0.150 is already in use in the network
    CRS-2674: Start of 'ora.sunt2k-02.vip' on 'sunt2k-02' failed
    CRS-2632: There are no more servers to try to place resource 'ora.sunt2k-02.vip' on that would satisfy its placement policy
    PRKO-2422 : ONS is already started on node(s): sunt2k-02
    PRKO-2423 : eONS is already started on node(s): sunt2k-02
    same problem on node2....
    CRS-2676: Start of 'ora.crsd' on 'sunt2k-03' succeeded
    CRS-2672: Attempting to start 'ora.evmd' on 'sunt2k-03'
    CRS-2676: Start of 'ora.evmd' on 'sunt2k-03' succeeded
    /u01/11.2.0/grid/bin/srvctl start nodeapps -n sunt2k-03 ... failed
    Configure Oracle Grid Infrastructure for a Cluster ... failed
    3. Per doc ID 1053192.1, I rerun the following on node2.....
    bash-3.00# /u01/11.2.0/grid/bin/srvctl start nodeapps -n sunt2k-03
    PRKO-2421 : Network resource is already started on node(s): sunt2k-03
    PRCR-1079 : Failed to start resource ora.sunt2k-03.vip
    CRS-5005: IP Address: 10.112.0.152 is already in use in the network
    CRS-2674: Start of 'ora.sunt2k-03.vip' on 'sunt2k-03' failed
    CRS-5005: IP Address: 10.112.0.152 is already in use in the network
    CRS-2674: Start of 'ora.sunt2k-03.vip' on 'sunt2k-02' failed
    CRS-2632: There are no more servers to try to place resource 'ora.sunt2k-03.vip' on that would satisfy its placement policy
    PRKO-2422 : ONS is already started on node(s): sunt2k-03
    PRKO-2423 : eONS is already started on node(s): sunt2k-03
    4. Now I got stuck here that can not bring up CRS....this is the last step from installing Grid Infrastructure.
    bash-3.00# cat installActions2010-10-26_09-10-36PM.log
    INFO: Checking user equivalence...
    INFO: User equivalence check passed for user "grid"
    INFO: ERROR:
    INFO: CRS is not installed on any of the nodes
    INFO: Verification cannot proceed
    INFO: Post-check for cluster services setup was unsuccessful on all the nodes.
    INFO:
    WARNING:
    INFO: Completed Plugin named: Oracle Cluster Verification Utility
    INFO: Oracle Cluster Verification Utility failed.
    INFO: Oracle Cluster Verification Utility failed.
    INFO: ConfigClient.executeSelectedToolsInAggregate action performed
    INFO: Exiting ConfigClient.executeSelectedToolsInAggregate method
    INFO:
    The Runconfig command constructed is /u01/11.2.0/grid/oui/bin/runConfig.sh ORACLE_HOME=/u01/11.2.0/grid MODE=perform ACTION=configure RERUN=false $*
    INFO: Since the option is to overwrite the existing /u01/11.2.0/grid/cfgtoollogs/configToolFailedCommands file, backing it up
    INFO: The backed up file name is /u01/11.2.0/grid/cfgtoollogs/configToolFailedCommands.bak.2
    INFO: ConfigClient.saveSession method called
    INFO: Calling event ConfigSessionEnding
    INFO: ConfigClient.endSession method called
    INFO: Completed Configuration
    bash-3.00#
    Any advise would be appreciated.
    Thanks much in advance...
    R-

    Hi,
    it looks like the VIPs you used are already taken in your network or the name resolution on the VIP name does not return the correct IP address for the VIP, hence the problems.
    Sebastian

Maybe you are looking for

  • Lock ups, Freezes, black monitors

     if your computer is turning itself off, the motherboard is probably overheating. I took the cover off the computer and bought a small fan to blow directly on it and it stopped doing it. I also haven't had a blue screen or hard drive failure since I

  • [solved] USB drives won't auto mount

    When I plug in a drive, I get this error message: Rejected send message, 1 matched rules; type="method_call", sender=":1.24" (uid=1000 pid=4499 comm="exo-mount) interface="org.freedesktop.Hal.Device.Volume" member="Mount" error name="(unset)" request

  • Alias account not receiving emails question

    I setup an alias account under my outlook.com account.  The alias account is a btinternet.com account.  I sent an email to the btinternet.com account and expected that email would appear in the outlook.com inbox. Is there a "forwarding" step missing?

  • Infix to PostFix

    hi, I have an infix format as shown below, i need to know how does this logical infix expression can be converted in to postfix expression. How do v specify the IF THEN ELSE of the expression in the postfix expression. IF:VarX :> :123 :THEN :VarY :=

  • Htmlhelp workshop - import font

    I've posted this here. But i believe it should be on this forum. Hey! I know its already obsolete, but im working on a small project and I think this program is the best for this job. Im trying to use an external font / import a font on a topic, but