Exception TYPE_NOT_FOUND on alv configuration

Hi guys,
I'm in a misery. I need to solve following issue:
having a table with some columns, each columns might hava a value. for each column the user should get a second column which is empty and editable so he may porpose a new value.
I have the structure in the context as a node, with all possible cols (but without the "porposed value" columns) being rendered with ALV component
To get the proposed value columns at runtime I change the context node and add some attributes. So far so good. I can see the table has twice the columns than before. (I just copy the attribute info and add it to the node info)
Alas when I change the cell editor of the table column I get an exception:
Exception condition "TYPE_NOT_FOUND" raised.
in class CL_ABAP_TYPEDESCR=============CP
I get the exception late, its not happening in my code though
I've played around with the attribute info type but it's not behaving any different.
I can change the cell editor of the original static attribute columns without exception.
here some excerpts
copying the attribute
DATA lo_nd_ups_info TYPE REF TO if_wd_context_node_info.
  DATA lv_attr_info TYPE wdr_context_attribute_info.
  DATA lv_attr_info_temp TYPE wdr_context_attribute_info.
  DATA lt_ups_attributes TYPE wdr_context_attr_info_map.
  lo_nd_ups_info = lo_nd_ups->get_node_info( ).
  lt_ups_attributes = lo_nd_ups_info->get_attributes( ).
  LOOP AT lt_ups_attributes INTO lv_attr_info.
    lv_attr_info_temp = lv_attr_info.
    lv_attr_info_temp = lo_nd_ups_info->get_attribute( name = lv_attr_info-name ).
    CONCATENATE lv_attr_info_temp-name '_PROP' INTO lv_attr_info_temp-name.
    lo_nd_ups_info->add_attribute( attribute_info = lv_attr_info_temp ).
  ENDLOOP.
trying to set cell editor
DATA lo_cell_editor TYPE REF TO cl_salv_wd_uie_input_field.
some loop...
      IF lv_prop_name EQ 'ONECAEICNR_PROP'.
      clear lo_cell_editor.
       CREATE OBJECT lo_cell_editor
         EXPORTING
           value_fieldname = lv_prop_name.
       lo_col = lo_config_table->if_salv_wd_column_settings~get_column( id = lv_prop_name ).
       lo_col->set_cell_editor( value = lo_cell_editor ).
any ideas?
regards
Stefan

Hi Stefan,
Am not sure about this as I haven't tried it out ever but just a wild guess as how you had said you are creating your columns dynamically... You must be coding something like:
data: lr_column_settings TYPE REF TO if_salv_wd_column_settings,
        lt_columns         TYPE        salv_wd_t_column_ref.
lt_columns = lr_column_settings->get_columns( ).
So may be you don't get the column references for the newly created ones returned by this method. So when you try to change the cell editor by looping through the different columns then the system raises an error coz it doesn't manage to find this particular reference. (I mean the newly created column reference) May be just try check in debugging mode if  get_columns( ) is even returning back the references for the dynamically created columns.
Am sorry if this isn't the reason behind the error. I haven't ever tried out a similar thing & it was a just a wild guess from my side
Regards,
Uday

Similar Messages

  • Exception thrown while calling Configuration.save() in CX Utility

    Hi,
    We are building up a CZ CX Utility to update some common fields [Decimal Features] in existing Configurations. After succesffuly updating the Decimal Feature with requisite value. when we are calling the Configuration.save() to update/save the changes following exception is being thrown:
    "Configuration items could not be saved: ORA-00001: unique constraint (CZ.CZ_CONFIG_ITEMS_PK) violated
    ORA-06512: at "APPS.CZ_CONFIG_CONTENTS_V_T1", line 47
    ORA-04088: error during execution of trigger 'APPS.CZ_CONFIG_CONTENTS_V_T1'"
    Any idea/ info on this exception?
    PLS NOTE: we will not be using the Configuration.saveNewRev() or Configuration.saveNew() methods as we intend to update the existing config rather than creating a new one.
    I have an SR created for this.
    Thanks,
    Rocker.

    Hi Sandeep,
    the XML structure is u're problem.
    this is a responsibility of the tool, so you dont really have to do anything except :
    1> check the versions of all dependancies of SAP .NET Connector: java, xml,
    2> make sure u're target system is constant, at least initially for testing [i.e.  a proxy generated for sys1, but used for sys2]
    3> regenerate proxies
    with respect,
    amit

  • Exception in Universal Worklist configuration

    Hi,
    I'm getting the following error while connecting from the Portal UWL to a R/3 system.
    Exception type:com.sap.netweaver.bc.uwl.connect.ConnectorException
    Message:Thu Apr 20 17:23:14 GMT+08:00 2006 :
    JCO.Client not connected in repository call
    Portal is SP14 and the R/3 system is NW 640 SP12.
    Any help is greatly appreciated, stuck on this for a while now.
    Thanks,
    Manik

    I am facing similar error while trying to register a R/3 system with Portal.
    (Connector) :com.sap.netweaver.bc.uwl.connect.ConnectorException:Mon Jun 05 10:23:29 EDT 2006
    (Connector) :com.sap.mw.jco.JCO$Exception:User is locked. Please notify the person responsible
    The R/3 system has been configured for UID/PWD and tested successfully. Connection test is successful. But when I tried to register the same system through
    System Administration -> System Configuration -> Universal Worklist & Workflow -> Universal Worklist Administration, I am getting the above error.
    I am trying to configure the R/3 system using 'WebFlowConnector' type.
    Can anyone please guide me how to configure a R/3 more detail.
    Thanks in advance.

  • Change MD04 Exception for incomplete Variant Configuration

    Hi PP Gurus.
    I have a problem!
    This is my scenario: when I create a sales order with a configurable  material with a incomplete configuration I need, if possible, to block the generation of the requirement list in MD04. If possible, can I change, with a user exit or BadI or... the Exception Code in MD04?
    Thanks
    Manuel Chiarelli

    Hi.
    I'm sorry...
    The scenario is:
    I've a Sales document with a configurable material. Thi material have some configurable components with different production time.
    If I change the schedule type and I don't set the "MRP relevant", when I launch the MRP on this material, the system doesn't explode the requirement for the components.
    I need, if possible, to force the exception when I execute the planning so I can produce the components.
    Can I do this?
    Thanks
    Manuel

  • Issue in ALV configuration

    Hi,
    I have some requirements to make some changes in WD ALV layout. By reading some earlier blog i guess i can make use fo class CL_SALV_WD_CONFIG_TABLE. however im not sure how would i make my ALV node (or data) available to methods of these class. I couldn't find any method of this class which is taking reference of ALV node. Can anybody please explore something in this.
    Rgds
    sudhanshu

    hI,
    Please clarify what Layout changes u need. there are many classes and interfaces for ALV which are used for doing changes.
    And regarding the  class u are mentioning is used to get the model. But before u can access this u must have instantiate the ALV component usage.
    DATA lv_value TYPE REF TO cl_salv_wd_config_table.
      lv_value = lo_interfacecontroller->get_model( ).

  • Mapping Exception during Dynamic file configuration

    Hello,
    I have to configure the file adapter such that the file name is configured dynamically.
    I wrote a UDF which gives the following error.
    <SAP:Stack>com.sap.aii.utilxi.misc.api.BaseRuntimeException thrown during application mapping com/sap/xi/tf/_GSFt_AccountReconciliation_Format_: RuntimeException in Message-Mapping transformatio</SAP:Stack>
      <SAP:Retry>M</SAP:Retry>
      </SAP:Error>
    The code is :
    DynamicConfiguration conf = (DynamicConfiguration)
    container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http//sap.com/xi/XI/System/File","FileName");
    String FileName  = conf.get(key);
    String newFN = FileName.substring (11,15) ;
    String FN = "<abc>+  newFN +  "_"  +    ".dat";
    conf.put(key,FN);
    return FN;
    Am I missing something here?
    I have also specified the variable substitution in Receiver Channel.
    Kindly help me out ppl.
    Regards,
    Sanjay

    Modify code as below...
    String FN="";
    try{
    DynamicConfiguration conf = (DynamicConfiguration)
    container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http//sap.com/xi/XI/System/File","FileName");
    String FileName = conf.get(key);
    if(FileName != null && FileName !=""){
    String newFN = FileName.substring (11,15) ;  //make sure u do substring rite way... index 10 is 11th char of the string
    FN = "<abc>+ newFN + "_" + ".dat";
    conf.put(key,FN);
    }catch{
    return FN;

  • Unable to drop an image object onto an ALV.

    Hi ,
    I have created an Image with value 'OBJECT_IMAGE' for the tag in the Drag Source Info.
    I have created an ALV and declared it as a drop target by calling the 'create_drop_row_target_info' using the ALV configuration model and passed in the value 'OBJECT_*' for the tag.
    Im not able to drag the image onto the ALV and trigger my corresponding event.
    I have also declared the event handler in the methods list.
    Kindly help. I need to drag this image into the ALV and populate my ALV with data.
    Warm regards,
    Newton.

    HI Chris ,
    Im working on Netweaver 7.02.
    I have used the following code to enable the drop feature in my ALV.
      DATA lo_cmp_usage TYPE REF TO if_wd_component_usage.
      lo_cmp_usage =   wd_this->wd_cpuse_alv_scarr2( ).
      IF lo_cmp_usage->has_active_component( ) IS INITIAL.
        lo_cmp_usage->create_component( ).
      ENDIF.
    DATA lo_interfacecontroller TYPE REF TO iwci_salv_wd_table .
    lo_interfacecontroller =   wd_this->wd_cpifc_alv_scarr2( ).
      DATA lv_value TYPE REF TO cl_salv_wd_config_table.
      lv_value = lo_interfacecontroller->get_model(
    DATA : LIF_DROP_TARGET_INFO TYPE REF TO IF_SALV_WD_DROP_TARGET_INFO.
    DATA : LV_STRING TYPE STRING VALUE 'ALV_SCARR2'.
    CALL METHOD lv_value->if_salv_wd_drag_and_drop~create_drop_row_target_info
      EXPORTING
        id          = LV_STRING
        name    = 'IMAGE'
        tags      = 'OBJECT_*'
        enabled = 'X'
      receiving
        value   = LIF_DROP_TARGET_INFO.
    Regards,
    Newton.

  • How to create a context menu in ALV table cell editor(Webdynpro abap )

    Hello Experts,
    I am having a problem in creating a context menu in a table cell editor in the ALV table output.I have assigned a 'lta' as the cell editor.But befor assigning the lta as cell editor I have assigned the menu to the lta.But when the view is rendered I can see the lta with the actioned assigned to it.But I cannot see the context menu.
    The code snippet below:
      "Create menu for each coloumn
      create OBJECT lo_menu_actions type CL_SALV_WD_VE_MENU EXPORTING
          id = 'MITM_ACTIONS'.
      lo_menu_actions->set_visible( value = abap_true ). 
      lo_menu_actions->set_visible_fieldname( value = 'ACTIONS' ).
      "ADd menu items
      CREATE OBJECT lo_menu_item_create type CL_SALV_WD_VE_MENU
      exporting
        id = 'MITM_CREATE_EXPRESSION'.
      lo_menu_item_create->set_visible( value = abap_true ).
      lo_menu_item_create->set_visible_fieldname( value = 'Create' ).
      "Add item 1
      lo_menu_actions->ADD_ITEM( VALUE = lo_menu_item_create ). 
      "  Set the cell editor for each column cell(link to an action)
      LOOP AT lt_node_dec_tab_cols INTO ls_node_dec_tab_cols .
        lv_column_name = ls_node_dec_tab_cols-object_name.
        lr_column = lr_column_settings->get_column( lv_column_name ).
       "Create 'lta' Ui item
        CREATE OBJECT lo_lta TYPE cl_salv_wd_uie_link_to_action.
        lo_lta->set_menu( value = lo_menu_actions ).
        lo_lta->set_text_fieldname( lv_column_name ).
        lr_column->set_cell_editor( lo_lta ).
        IF ls_node_dec_tab_cols-is_result EQ abap_true.
          lr_column->set_cell_design( value =
                      cl_wd_table_column=>e_cell_design-key_medium ).
        ENDIF.
      ENDLOOP.

    Hi Prakash,
    I have not come across this requirement till now to have context menu in a cell editor of alv.
    Unfortunately  the implementation of method SET_MENU of alv ui elements ( ex: cl_salv_wd_uie_text_view ) is not updating alv configurable table, instead it just stores in a global attribute as string. Hence has no effect on context menu.
    If your user is very particular about this requirement of having context menu in cell editor, you can go for a normal table. Because, normal table's cell editor has the property to set the menuID as we do it for other ui elements.
    Regards,
    Rama

  • Oid installation Exception

    Hi all,
    i am trying to install oid(11.1.1.6.0) ,on linux 64 bit .i got the below error....
    1) progress in calculate progress10
    Called setOVDCAIntoEMAgentWallet
    EMAgent Wallet Exists
    java.io.IOException: java.lang.ClassCastException: oracle.security.crypto.cert.ext.NetscapeCertTypeExtension cannot be cast to oracle.security.crypto.cert.X509Extension
         at oracle.security.crypto.cert.X509Extension.inputInstance(X509Extension.java:257)
         at oracle.security.crypto.cert.X509ExtensionSet.input(X509ExtensionSet.java:261)
         at oracle.security.crypto.cert.X509ExtensionSet.<init>(X509ExtensionSet.java:103)
         at oracle.security.crypto.cert.X509.input(X509.java:615)
         at oracle.security.crypto.cert.X509.<init>(X509.java:142)
         at oracle.security.crypto.cert.PKCS12CertBag.input(PKCS12CertBag.java:126)
         at oracle.security.crypto.cert.PKCS12CertBag.<init>(PKCS12CertBag.java:80)
         at oracle.security.crypto.cert.PKCS12Bag.inputBag(PKCS12Bag.java:78)
         at oracle.security.crypto.cert.PKCS12Safe.input(PKCS12Safe.java:203)
         at oracle.security.crypto.cert.PKCS12Safe.<init>(PKCS12Safe.java:119)
         at oracle.security.crypto.cert.PKCS12.input(PKCS12.java:179)
         at oracle.security.crypto.cert.PKCS12.<init>(PKCS12.java:122)
         at oracle.security.pki.OracleKeyStoreSpi.engineLoad(Unknown Source)
         at java.security.KeyStore.load(KeyStore.java:1185)
         at oracle.security.pki.OracleWallet.getKeyStore(Unknown Source)
         at oracle.security.pki.OracleWallet.getCertReqDNs(Unknown Source)
         at oracle.as.idm.install.config.util.CertificateUtil.importCertificate(CertificateUtil.java:112)
         at oracle.as.idm.install.config.util.CertificateUtil.setOVDCAIntoEMAgentWallet(CertificateUtil.java:165)
         at oracle.as.idm.install.config.IdMDirectoryServicesManager.doExecute(IdMDirectoryServicesManager.java:1137)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:371)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:64)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:160)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)
         at java.lang.Thread.run(Thread.java:662)
    2) oracle.as.provisioning.util.ConfigException:
    Error while deploying the Application oracle.ldap.odip.install.DIPInstaller .
    Cause:
    An internal operation has failed: Error in configuring DIP caused by: DIP-00004: Error in connecting to Oracle Internet Directory Server.
    Action:
    See logs for more details.
         at oracle.as.provisioning.util.ConfigException.createConfigException(ConfigException.java:123)
         at oracle.as.provisioning.weblogic.ASDomain._executeJ2EEConfigAssistant(ASDomain.java:834)
         at oracle.as.provisioning.weblogic.ASDomain.executeJ2EEConfigAssistant(ASDomain.java:678)
         at oracle.as.provisioning.engine.WorkFlowExecutor._runJ2EEAssistant(WorkFlowExecutor.java:1140)
         at oracle.as.provisioning.engine.WorkFlowExecutor._deployApps(WorkFlowExecutor.java:911)
         at oracle.as.provisioning.engine.WorkFlowExecutor.executeWLSWorkFlow(WorkFlowExecutor.java:470)
         at oracle.as.provisioning.engine.Config.executeConfigWorkflow_WLS(Config.java:866)
         at oracle.as.idm.install.config.IdMDirectoryServicesManager.doExecute(IdMDirectoryServicesManager.java:1304)
         at oracle.as.install.engine.modules.configuration.client.ConfigAction.execute(ConfigAction.java:371)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.run(TaskPerformer.java:88)
         at oracle.as.install.engine.modules.configuration.action.TaskPerformer.startConfigAction(TaskPerformer.java:105)
         at oracle.as.install.engine.modules.configuration.action.ActionRequest.perform(ActionRequest.java:15)
         at oracle.as.install.engine.modules.configuration.action.RequestQueue.perform(RequestQueue.java:64)
         at oracle.as.install.engine.modules.configuration.standard.StandardConfigActionManager.start(StandardConfigActionManager.java:160)
         at oracle.as.install.engine.modules.configuration.boot.ConfigurationExtension.kickstart(ConfigurationExtension.java:81)
         at oracle.as.install.engine.modules.configuration.ConfigurationModule.run(ConfigurationModule.java:86)
         at java.lang.Thread.run(Thread.java:662)
    Caused by: oracle.as.provisioning.exception.J2EEConfigAssistantException: Error in configuring DIP caused by: DIP-00004: Error in connecting to Oracle Internet Directory Server.
         at oracle.ldap.odip.install.DIPInstaller.executePostDistribute(DIPInstaller.java:225)
         at oracle.as.provisioning.weblogic.ASDomain._executeJ2EEConfigAssistant(ASDomain.java:822)
         ... 15 more
    my question is
    1) can i use existing schema ? ( which was created by oid(11.1.1.3.0) 32 bit linux )
    2) i try these installations in two different boxes both are showing the same msg's but one ldap is read only mode and another read & write mode . why ?
    thanks in advance

    For your first question:
    This should not be a problem. But check here first: http://www.oracle.com/ocom/groups/public/@otn/documents/webcontent/161244.xls
    Second question:
    I don't think the problem here(according to the logs) is read only or not. It looks like Directory Integration Plataform(who will provision information thru these) is just not finding OID. So, try telnet from one to another and see if they are 'speaking'. Check all(OID,DIP and Database ports).
    I hope this helps,
    Thiago Leoncio.

  • Install Enterprise Manager Grid Control 11R1 Failed at OMS Configuration

    Hello:
    I have installed Oracle 11g (11.2.0.1) and WebLogic Server (WLS) 10.3.6.0 and currently I am in the process of installing Enterprise Manager Grid Control 11R1 on a Linux RedHat 5.8 and it fails at OMS Configuration.
    I have read the following thread and they suggested to use WLS 10.3.2:
    Trouble installing EM GC -- installer patch 9329357 fails
    I was looking for WLS 10.3.2 in Oracle's website and I could not find it.
    Any help would be greatly appreciated.
    Here is the log regarding the error:
    The patch has more than one Archive Action but there is no Make Action.
    ApplySession applying interim patch '9367763' to OH '/dbs0/product/fmw/oms11g'
    Running prerequisite checks...
    You selected -local option, hence OPatch will patch the local system only.
    Please shutdown Oracle instances running out of this ORACLE_HOME on the local system.
    (Oracle Home = '/dbs0/product/fmw/oms11g')
    Is the local system ready for patching? y
    Y (auto-answered by -silent)
    User Responded with: Y
    Backing up files and inventory (not for auto-rollback) for the Oracle Home
    Backing up files affected by the patch '9367763' for restore. This might take a while...
    Backing up files affected by the patch '9367763' for rollback. This might take a while...
    Patching component oracle.ldap.rsf, 11.1.1.2.0...
    Updating archive file "/dbs0/product/fmw/oms11g/lib/libldapclnt11.a" with "lib/libldapclnt11.a/gslu.o"
    ApplySession adding interim patch '9367763' to inventory
    Verifying the update...
    Inventory check OK: Patch ID 9367763 is registered in Oracle Home inventory with proper meta-data.
    Files check OK: Files from Patch ID 9367763 are present in Oracle Home.
    Execution of 'sh /dbs0/product/fmw/oms11g/install/oneoffs/111010/9367763/custom/scripts/post -apply 9367763 ':
    Return Code = 0
    The local system has been patched and can be restarted.
    OPatch succeeded.
    This config tool has failed. Please re-run this config tool manually from another terminal as
    <ORACLE_HOME>/perl/bin/perl <ORACLE_HOME>/install/oneoffs/apply_NewOneoffs.pl <ORACLE_HOME> <oneoff_numbers>
    Eg: /scratch/EM/agent10g/perl/bin/perl /scratch/EM/agent10g/install/oneoffs/apply_NewOneoffs.pl /scratch/EM/agent10g 5632264,5961654
    Finished one-offs apply...
    Deleting the files...
    Finished deleting the above files...
    Configuration assistant "OMS Oneoff Patch Application" Succeeded
    Running Configuration assistant "Repository Configuration"
    Calling the EMSCHEMA MANAGER: CREATE
    Please check the Repository Configuration Assistant logs at: /dbs0/product/fmw/oms11g/sysman/log/schemamanager
    The create is completed now running the MOS
    Configuration assistant "Repository Configuration" Succeeded
    Running Configuration assistant "MDS Schema Configuration"
    Configuration assistant "MDS Schema Configuration" Succeeded
    Running Configuration assistant "OCM EM Repository Instrumentation"
    Configuration assistant "OCM EM Repository Instrumentation" Succeeded
    Running Configuration assistant "OMS Configuration"
    Executing the OMSCA command...
    Check the OMS Configuration Assistant logs at: /dbs0/product/fmw/oms11g/cfgtoollogs/omsca
    INFO: Required tool's Execution failed
    Configuration assistant "OMS Configuration" Failed
    INFO: ***Configuration Assistants Action END ***
    *** The installation was Successful, but some configuration assistants were failed or cancelled or skipped. ***

    Hello:
    For some reason after selecting the Retry button it successfully passed the Add-on OMS Side Configuration. Now I am failing at the "Agent Configuration Assistant". Here's the agent log:
    log4j:ERROR No appenders could be found for category (oracle.sysman.emas.sdk.discovery.discover.WeblogicTargetDiscovery).
    log4j:ERROR Please initialize the log4j system properly.
    Total Discovery time is :1675milliseconds.
    INFO: oracle.sysman.top.agent:AddingToTargetsXml: WLS targets
    INFO: oracle.sysman.top.agent:Adding /oracle/product/agent11g/sysman/install//oraclewls.out file to /oracle/product/agent11g
    INFO: oracle.sysman.top.agent:addToTargetsXML:TargetInstaller added target file= /oracle/product/agent11g/sysman/install//oraclewls.out to /oracle/product/agent11g successfully.
    INFO: oracle.sysman.top.agent:AgentPlugIn:perform:Starting Agent with startAgent=true
    INFO: oracle.sysman.top.agent:Starting the agent
    INFO: oracle.sysman.top.agent:Starting the agent...
    INFO: oracle.sysman.top.agent:Executing Command: /oracle/product/agent11g/bin/emctl start agent
    INFO: oracle.sysman.top.agent:Oracle Enterprise Manager 11g Release 1 Grid Control 11.1.0.1.0
    INFO: oracle.sysman.top.agent:Copyright (c) 1996, 2010 Oracle Corporation. Allrights reserved.
    INFO: oracle.sysman.top.agent:Agent is already running
    INFO: oracle.sysman.top.agent:Requested Operation Completed with Status = 0
    INFO: oracle.sysman.top.agent:
    The Management Agent Configuration Assistant has failed. The following failureswere recorded:
    Securing of the agent failed.
    INFO: oracle.sysman.top.agent:Internal PlugIn for {Micro Step state:step:2:configuration in CfmAggregateInstance: oracle.sysman.top.agent:11.1.0.1.0:common:family=CFM:oh=/oracle/product/agent11g:label=10} failed with an unhandled exception:
    java.lang.Exception:
    The Management Agent Configuration Assistant has failed. The following failureswere recorded:
    Securing of the agent failed.
    at oracle.sysman.emcp.agent.AgentPlugIn.startProcessing(AgentPlugIn.java:269)
    at oracle.sysman.emcp.agent.AgentPlugIn.invoke(AgentPlugIn.java:243)
    at oracle.sysman.emCfg.core.PerformMicroStep.runJavaClass(PerformMicroStep.java:540)
    at oracle.sysman.emCfg.core.PerformMicroStep.executeMicroStep(PerformMicroStep.java:120)
    at oracle.sysman.emCfg.core.ActionPerformer.performMicroStep(ActionPerformer.java:917)
    at oracle.sysman.emCfg.core.ActionPerformer$Performer.run(ActionPerformer.java:1038)
    INFO: oracle.sysman.top.agent:The plug-in Agent Configuration Assistant has failed its perform method
    Any help would be greatly appreciated.
    Thanks,
    Orivares

  • How to configure the JMS application in WSAD 5.0

    hi
    i need to configure an JMS application in WSAD 5, but while configuring the application i am checked with intial context exception. but i have configured the jndi in the server. but i cant able to run the application.
    can anybody help me like how to configure the JMS application in WSAD (can we configure it without MQ simulator if yes i need the steps)
    thanks in advance

    Hi,
    did you check the WebSphere documentation or ask a question on an IBM forum?
    Frank

  • ALV Tree Output

    Hi,
    In my present project we have requirement for developing ALV tree output using ALV configuration model in WD4A. Please provide sample code or tutorial related to ALV Tree development in WebDynpro ABAP.
    Best regards,
    Alleiah

    Hi Alleiah Marabathini ,
    The following r excellent websites containing ONLY PDF docs on ALV Tree in WebDynpro ABAP:
    Simple Example for Using ALV in Web Dynpro for ABAP
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3439404a-0801-0010-dda5-8c14514d690d
    Programming the ALV Configuration Model in Web Dynpro for ABAP
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/1190424a-0801-0010-84b5-ef03fd2d33d9
    Editing ALV in Web Dynpro for ABAP
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3133474a-0801-0010-d692-81827814a5a1
    Using Events with ALV Tables in Web Dynpro for ABAP
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/bd28494a-0801-0010-45a3-fc359d82d3e8
    Using ALV with a Dynamic Context Node in Web Dynpro for ABAP
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/4c70444a-0801-0010-7688-9e4bd844b783
    cheers!
    gyanaraj

  • Mapping Problem with 2 ALV Tables after sorting

    Hi,
    I have a context node INCIDENTS with a sub-node SUB_INCIDENTS.
    The sub-node is filled via a Supply Function.
    Both nodes are displayed in separate ALV Grids on the same view, which works pretty well.
    The only problem I face is when I try to sort one of the ALVs, then I get an error "The node specified in mapping ( SUB_INCIDENTS) could not be found ".
    I have no clue how to solve that, already tried to fill the sub-node with the ALV standard function "ON_STD_FUNCTION_AFTE", no effect.
    Does anybody can imagine what might be the reason?
    Best regards, Steffen
    Edited by: Steffen Weber on Aug 27, 2008 2:55 PM

    In general, having two ALVs for parent and then a sub node is not supported.  Here is a section from the online help that describes what happens when a sort occurs on the parent node in ALV:
    Important Exception: Sorting
    Here ALV has to use the entire dataset so that the data records can be arranged in the new order. For this purpose, the ALV component temporarily takes control of the internal data table and invalidates the corresponding context node of your application during this time. This ensures that the application cannot access the context node while the ALV component is editing the internal data table.
    Once the internal data table has been resorted, ALV rebuilds the context node, releases it again for the application, and displays the data accordingly.
    This ensures that the internal data table is never copied. This is important because large volumes of data would considerably impact performance and memory space.
    When you are planning your application, note the following side-effects of this mechanism:
    ●      When the context node is invalidated, information about current selections, and in particular the lead selection, is lost.
    ●      If your application has created subnodes for the context node, (master-detail scenario), these subnodes are lost as soon as the ALV component invalidates the context node. If the application then tries to access the subnodes, a runtime error occurs.
    Because of the invalidation that is described here, the subnode leadselection is lost and is invalidated as well. This leads to the error you are encountering.

  • JDBC Adapter configuration not initialized Error

    Hi,
    I am doing a RFC to JDBC scenario in PI 7.1. I am getting the following error:
    com.sap.engine.interfaces.messaging.api.exception.MessagingException: JDBC Adapter configuration not initialized: null
    In communication channel monitoring, it shows the following,
    Error when attempting to get processing resources: com.sap.aii.af.lib.util.concurrent.ResourcePoolException: Unable to create new pooled resource: DriverManagerException: Cannot establish connection to URL '<URL>': SAPClassNotFoundException: com.ibm.as400.access.AS400JDBCDriver
    The JDBC parameters for driver & connection are correct only.
    Is the problem related to deployment of JDBC driver or something else? How can i ensure that the JDBC driver deployment is succesful in PI 7.1?
    Edited by: senthil nathan on Mar 25, 2009 10:57 AM

    Hi Senthil,
    Your drivers are not installed properly. Please re-deploy them through SDM.
    Regards
    joel

  • How to restrict the no of rows to be displayes in ALV in webdynpro

    Hi All,
    Can any one suggest how to restrict the no of records to be displayed in the portal in the ALV through webdynpro ABAP.
    Thanks & Regards,
    Sreelatha Gullapalli.

    HI,
    If you want to change the Source (Design time) then you can do that via the alv configuration.
    Something like this in the component SALV_WD_COLUMNS_UI
    lr_available_model->if_salv_wd_table_settings~set_visible_row_count( lc_row_count ).

Maybe you are looking for

  • Can anyone please advise how I 'enable' extensions in Safari 5.0.6. on an iBook G 4?

    Hi, can anyone please advise me how I  'enable' extensions in Safari 5.0.6. I have an iBook G4? and secondly,  is there anyway I can update from 10.5.8 Mac OSX on my iBook G4 ? I am a complete novice. Many thanks. thall3

  • Java Comm API in FreeBSD? HELP!!!

    I'm doing a project for my company that needs to access the serial port, with commAPI the thing works flawlessly under Windows XP, however big problem comes with commAPI doesn't work in FreeBSD which the company server runs on. This is what I have do

  • How to move library file to other location

    Hi i have a little question. Is it possible to move the library file so an other location ? For example to another folder. Are there values in the Windows Registry that have to be edited ? Thanks PC   Windows XP  

  • JQuery and the row selector column.

    I have a tabular form which i'm running some validation against. I'm using the row selector to indicate rows which are to be deleted. Now i've deleted rows using the method below, that's fine. DECLARE rows_int integer; Err_message varchar2(50); BEGIN

  • Saving Actions

    How does one save actions? The 'save' option is greyed out in the actions dropdown panel.