Standard Component Definition Class Change

Hello Experts
1) STD. UI Component: FICACMP_WLI
    1st Viewset screen -> Search
                                -> Search result
             When i press 'Continue' button on the serach result view, it will take me to next screen with worklist details
    2nd Viewset Screen -> Worklist Details
            When i press 'Workitem + Interact' on the worklist details view, it will take me to next screen with 'Actions'
   3rd Viewset Screen -> Action List
Requirement       
   1) I need to prepare Custom 'Search' View and 'Search result' view as per custom requirement, As per requirment I need to change Query_Result method also.
   2) When i press 'Continue' button on the 'Search Result' view then it must take screen directly to 3rd screen 'Action list'
   3) From ' Action List' standard functionality has to work.
Options:
I am planning to enhance Standard UI Component 'FICACMP_WLI' to do my requirement
or
do I need to prepare my custom component and i need to add component Usuage in standard UI component?
If i add custom component then there is a small problem, standard QUERY_RESULT method is populating so many attributes which are using in next screens, when i use my custom BOL QUERY_RESULT method i can't populate the standard attributes method, because they all are protected.
Note: Everything must be standard functionality , only i need to change 'Search' and 'Search result' , 'Query_result' method  and Navigation from 1st screen to 3rd screen.
Just i need to skip 2nd screen.
Please guide me.
Thanks & Regards,
Sarath Kothuri

Hi Sarat,
In my view, First enhance the UI component and then enhance the Search and Search Result view and put your custom logic there by redefining the existing methods. Then find out the event handler method for "Continue" and 'Workitem + Interact'  buttons, now redefine the event handler for "Continue" button and write the Copy paste the code from 'Workitem + Interact' event handler method. Please note I am assuming that all the views discussed in the query is in the same component.
Regards
Ajay

Similar Messages

  • Navigating from Custom Component to Standard Compoent(IUICCON). Getting Exception "Define Component Usage 'Random Component Usage of Standard component'"

    Hi Everyone,
    We have a requirement to
    Navigate from Custom Component to the Standard Component(IUICCON – Contract
    management) on the basis of some conditions.
    We tried navigating with Manual
    as well Dynamic Navigation. The Navigation is happening properly and the Navigation is completed and we are on the Contract
    Management Screen(Standard component View).
    On the Contract Management
    screen (standard Component view), when we click on New Contract Button; it throws dump stating “Define
    Component Usage IUICOBJ”. After debugging we identified that the issue was with the Parent class/ component is getting changed, because of which the usage was not found.
    Appreciate your help.
    Thanks in Advance.
    Regards,
    Bhavikjp.

    Hi Bhavik,
    Check which is the active enhancement set at the runtime in the component_loading BADI.
    If it is anything other than your enhancement set,Set it to your enhancement set .
    Check if the parameter WCF_IGNORE_ENHANCEMT in Tcode SU01 is set to 'A' for the User.
    Regards JP.

  • Error while enhancing standard component CRMCMP_CND

    Hi,
    We have one requirement that Phase Id and Offer Id needs to added in the /SAPCND/GCM transaction and the same needs to be disaplay in the web ui.  So we added two fields in field catalog after that we made two implementation in /SAPCND/ROLLNAME and CRM_COND_COM_BADI.
    Now the funtionality is working fine in the GUI and in WEBUI the field is added but the F4 value is not visible in the new web ui screen.
    So I tried to enhance the standard component CRMCMP_CND, in order to retreive the F4 value help.  While selecting the context node in the standard view CondRecEditView we are getting the status message u201CError during analysis of method REATE_CONDRECORD of class L_CRMCMP_C_CONDRECEDITV0_CTXT. Message no. BSP_WD_TOOLS031u201D
    In standard view itself I am getting this error and while enhancing the component the context node is not converted in to Zclass.
    If we try to add attribute from the context node its giving error create_condrecord does not exist error.
    So I am unable to proceed further.  If any one aware how to solve this issue kindly let me know.

    Hi,
    While enhancing a view of a component only the controller (xx_IMPL) and the context class (xx_CTXT) are extended into Z classes. Context nodes (xx_CNXX) are not automatically extended. You have to do it manually only for the context node(s) you would like to modify. Indeed there is a message that appears when you select the context node but this is not the reason why the CN class is not extended.
    What you have to do is to redefine the method CREATE_CONDRECORD in class ZL_CRMCMP_C_CONDRECEDITV0_CTXT and create a new class ZL_CRMCMP_C_CONDRECEDITV0_CN00 that extends CL_CRMCMP_C_CONDRECEDITV0_CN00
    In ZL_CRMCMP_C_CONDRECEDITV0_CN00 implement method GET_V_xx for the field you want a search help on
    Regards,
    Fabian

  • Standard Component in CRM that will call RFC Function Module

    HI all,
    Is there any Standard Component in CRM that will call RFC Function Module from ECC and that called RFC FM should Fetch the data from ECC.

    You can call RFC from different places, like programs, function modules, web dynpros, classes...
    So you just have to have appropriate RFC on ERP side and call it from CRM side. To call it you use the following statement...
          CALL FUNCTION 'YOUR RFC FUNCTION'
            DESTINATION i_dest "name of server
            EXPORTING
              your export parameters
            IMPORTING
              your import parameters
    Regards.

  • Best Practice : Creating Custom Renderer for Standard Component

    I've been reading the docs and a few threads about Custom Renderers. The best practice seems to be to create a Custom Component where you need a Custom Renderer. Is this the case?
    See [this post|http://forums.sun.com/thread.jspa?forumID=427&threadID=520422]
    I've created several Custom Renderers to override the HTML provided by the Standard Components, however I can't see the benefit in also creating a Custom Component when the behaviour of the standard component is just fine.
    Thanks,
    Damian.

    It all depends on what you are trying to accomplish. Generally speaking if all you need is for the user interface output to be changed then a renderer will work just fine. A new component is usually made in order to provide some fundamental change in server side functionality not related to the user interface. - Ponderator

  • Custom renderer on standard component

    I try to implement a custom renderer to a standard component (<h:outputText>), but
    my Tomcat failed to start the webcontainer.
    here are my files:
    faces-config.xml
    <render-kit>
    <renderer>
    <renderer-type>MyRenderer</renderer-type>
    <renderer-class>renderkit.MyRenderer</renderer-class>
    </renderer>
    <supported-component-class>
    <component-class>javax.faces.Text</component-class>
    </supported-component-class>
    </render-kit>
    ...renderkit.MyRenderer.java
    package renderkit;
    import java.io.IOException;
    import javax.faces.component.UIComponent;
    import javax.faces.component.UIOutput;
    import javax.faces.context.FacesContext;
    import javax.faces.context.ResponseWriter;
    import javax.faces.render.Renderer;
    public class MyRenderer extends Renderer {
         public void decode(FacesContext context, UIComponent component) {
              System.out.println("decode");
              if ((context == null) || (component == null)) {
                   throw new NullPointerException();
         public void encodeBegin(FacesContext context, UIComponent component)
              throws IOException {
              System.out.println("encodeBegin");
              if ((context == null) || (component == null)) {
                   throw new NullPointerException();
         public void encodeChildren(FacesContext context, UIComponent component)
              throws IOException {
              System.out.println("encodeChildren");
              if ((context == null) || (component == null)) {
                   throw new NullPointerException();
         public void encodeEnd(FacesContext context, UIComponent component)
              throws IOException {
              System.out.println("encodeEnd");
              UIOutput comp = (UIOutput) component;
              ResponseWriter writer = context.getResponseWriter();
              StringBuffer sb = null;
              writer.startElement("<test>", comp);
              writer.write(comp.getValue().toString());
              writer.endElement("</test>");
    }

    <h:outputText> will use a rendererType of "javax.faces.Text"; to use a custom renderer on a standard component, you must not only write a renderer and register it, but also add a custom tag that uses that renderer type. Alternatively, you could use the "binding" attribute to set the renderer type like:
      <h:outputText binding="#{someBean.customText}" .../>
    public class SomeBean
      public SomeBean()
       HtmlOutputText customText = new HtmlOutputText();
        customText.setRendererType("MyRenderer");
        setCustomText(customText);
      public HtmlOutputText getCustomText()
        return _customText;
    public void setCustomText(HtmlOutputText customText)
       _customText = customText;
    private HtmlOutputText _customText;
    }-- Adam Winer (EG member)

  • How to refer standard component to create customize component?

    Dear experts,
    Can any one guide me how to refer a standard component to understand the flow of the event of with in the views and there are various methods are present to change properties of a field property. How can we refer the standard code for changing our field property?
    with regards
    crmfresher.

    Hi,
        The CRM 2007 Webclient cookbook is available if you have a marketplace ID.
    Refer to this thread.
    [CRM 2007 WebClient Cookcook available!;
    Regards,
    Arun Prakash

  • How to build secondary keys dynamicaly in a generic entity definition class

    Hi developers,
    try to rebuild a generic entity definition class, where every instanced entity typ can has its own set of secondary fields. On the first moment it seems to be no problem, but now my problem is how to bind the annontation @Secondarykey... to the particular fields during construction of the entity shell be used?
    Hope I counld make the problem visible?
    Thanks for any help!
    ApeVeloce

    Hi Joachim,
    After understanding more about your application (off forum) I think I can answer your question more clearly. The general problem is: How can a dynamic, user defined schema be represented in Berkeley DB for multiple entity types, each with any number of properties, and arbitrary secondary keys for selected properties?
    There are many ways to do this and I'll describe one approach. I do not recommend using DPL for this case. In our documentation,
    http://www.oracle.com/technology/documentation/berkeley-db/je/PersistenceAPI/introduction.html
    we say: "Note that we recommend you use the DPL if all you want to do is make classes with a relatively static schema to be persistent." For a dynamic schema that is not represented using Java classes, the base API provides more flexibility.
    The common requirements for a dynamic schema are:
    1) Each entity has a type, which is roughly equivalent to a Java class. But unlike classes, types may be added dynamically. Queries are normally limited to entities of a particular type; this is not true for all applications, but I will make this assumption here.
    2) Each entity contains, at least logically, a Map of key-value properties. The property name is equivalent to a Java field name and the property value is equivalent to the field value. Properties may be added dynamically.
    3) Any number of properties for a given type may be defined as secondary keys. Secondary keys may be added dynamically.
    One approach for implementing this is as follows.
    A) A Database per entity type is created. This allows queries against a given type to be performed withing a single database. For simplicity the database name can be set to the name of entity type.
    The alternative is to have a single Database for all entity types. This works well for applications that want to query against properties that are common to all entity types. While such a schema is not common, it does occur; for example, an LDAP schema has this characteristic. If you do store all types in a single Database, and you want to query against a single entity type, you'll need to make the entity type a secondary key and perform a BDB "join" (see Database.join) that includes the type key.
    When queries are performed against a single type it is more efficient to have a Database per type. This avoids the extra secondary key for entity type, and the overhead of using it in each query.
    Another advantage to using a Database per type is that you can remove the entire Database in one step if the type is deleted. Calling Environment.removeDatabase is more efficient than removing the individual records.
    B) The properties for each entity can be stored as serialized key-value pairs. There are several ways to do this, but they are all roughly equivalent:
    B-1) If you use a SerialBinding, Java serialization does the work for you, but Java serialization produce larger data and is slower than using a TupleBinding.
    B-2) A TupleBinding can be implemented to write the key-value pairs. Each key is the string name. The value can also be a String, if all your data values are already Strings or if you convert values to/from Strings when they are used.
    B-3) If you have typed values (the type of each property is known) and you don't want to store values as Strings, you can write each value as a particular type in your TupleBinding. See TupleInput and TupleOutput for details.
    If your property values are not simple types (String, Integer, etc) then this approach is more complex. When using a TupleBinding, you will need custom marshaling code for each complex type. If this is too complex, then consider using a SerialBinding. Java serialization will handle arbitrary complex types, as long as each type is serializable.
    Another approach is to store each property in record of its own in a Properties database. This is a natural idea to consider, because this is what you might do with a relational database. But I do not recommend this approach because it will be inefficient to reconstruct the entire entity record from the individual property records. With BDB, we are not limited to the relational model so we can store the entire key-value map easily in a single record.
    However, this is one advantage to using a Properties database: If you commonly add or remove a single property, and entities normally have a large number of properties, and you do not commonly reconstruct the entire entity (all properties), then the Properties database approach may be more efficient. I do not think this is common, so I won't describe this approach in detail.
    C) To support any number of secondary keys, you will need to know which properties are secondary keys and you will need to implement the SecondaryKeyCreator or SecondaryMultiKeyCreator interface.
    C-1) Assuming that you have a Database per entity type, the simplest approach is to create a single SecondaryDatabase for each entity type that is associated with the primary Database for that type. The name of the SecondaryDatabase could be the name of the primary Database with a special suffix added.
    In this case, you should implement SecondaryMultiKeyCreator that returns all secondary key properties for a given entity. A two-part key should be returned for each property that is a secondary key -- {name, value} -- where name is property name and value is the value (either as a String or as a binary type using TupleInput/TupleOutput). When you perform queries for a given property, you will need to construct the {name, value} key to do the query.
    The SecondaryDatabase will need to permit duplicates (see SecondaryConfig.setSortedDuplicates) to allow any of the secondary keys to have the same value for more than one entity. If you have secondary keys that are defined to be unique (only one value per entity) then you will need to enforce that restriction yourself by performing a lookup.
    C-2) The alternative is to create a SecondaryDatabase for every property that is a secondary key. The database name could be the primary database name with a suffix identifying the secondary key.
    In this case you can implement either SecondaryKeyCreator or SecondaryMultiKeyCreator, depending on whether multiple values for each secondary key are permitted. And you can configure duplicates for the secondary database only if more than one entity may have the same secondary key value.
    Each secondary key consists only of its value, the name is not included because it is implied by the SecondaryDatabase in which it is stored. This approach is therefore more efficient than C-1 where we have a single SecondaryDatabase for all properties, because the secondary keys are smaller. However, there is the added work of maintaining the SecondaryDatabases each time the schema is changed: You must create and remove the secondary databases as the schema changes.
    For best performance, I recommend C-2.
    D) If you have a dynamic schema, you must store your metadata: the information that describes the names of each entity type, the properties allowed for that type (if restricted), and the list of which properties are secondary keys.
    I recommend storing metadata in a Database rather than in a file. This database could have a special name that cannot be used for any entity type. When metadata changes, you will be adding and removing databases. To ensure consistency, you should change the metadata and change the databases in a single transaction. This is possible only if you store the metadata in a Database.
    The Berkeley DB base API provides the flexibility to implement a dynamic schema in a very efficient manner. But be warned that implementing a data store with a dynamic schema is a complex task. As requirements grow over time, the metadata becomes more complex. You may even have to support evolution of metadata. If possible, try to keeps things as simple as possible.
    If you want complete flexibility in your schema and/or you want to store complex data types, you may want to consider storing XML. This is possible with Berkeley DB Java Edition since you can store arbitrary data in a Database, but you must implement secondary indexes for the XML data yourself -- this could be a very complex task. If you don't require pure Java, you should consider the Berkeley DB XML product. BDB XML supports many kinds of indexes as well as large documents, XPath, XQuery, and other features.
    Mark

  • RT Build Specifications: Component Definition Category is unresponsive

    Hi,
    I am using LabVIEW 2013 SP1 f2, with Real-Time 13.0.1
    When I open the Properties page for a Real-Time Application build specification (to run on a cRIO-9075), and select the Component Definition category, I find that the following occurs:
     - LabVIEW becomes unresponsive, and thinks for a while. It takes approximately 20-30 seconds or so to finally show the Component Defintion page.
     - When I click on Create a component definition file (.cdf), nothing happens. As I write this, I see "Required software components", and then these are greyed out: "Software component description", and "Software version" - but there is nothing to select or change?
     - If I click on another category, it takes in the order of 20 seconds to finally show this category.
     - To close the build spec (by pressing OK), it also takes a long time (more than 60 seconds). 
     - Things are fine with the build spec if I never enter the Component Definition category.
    Is anyone else experiencing this?
    Any help would be appreciated.
    Christopher Farmer
    Certified LabVIEW Architect
    Certified TestStand Developer
    http://wiredinsoftware.com.au
    Solved!
    Go to Solution.

    Hey Chris,
    I believe the following patch is the fix that you are looking for.
    LabVIEW Real-Time Module 2013 SP1 Application Builder Patch Details
    http://digital.ni.com/public.nsf/allkb/D72B45C6905D327A86257CC800547992?OpenDocument
    There's a link to download the patch at the bottom of that page.
    Regards,
    Ryan

  • The row key or row index of a UIXCollection component is being changed outside of the components context ????

    Hello Guys,
    I'm working at this moment on implementing GANTT functionality via the <dvt:projectGantt> in my Web App :
    Rather than using data binding technology, I use a managed bean in this way :
    @ManagedBean(name="myBeanController")
    @ViewScope
    public class MyBeanController implements Serializable{
    private List<InternalTask> internalTasks;
    @EJB
    private InternalTaskDao internalTaskDao;
    //Root for tree component
    private List<TreeNode> root;
    private transient TreeModel model;
    public MyBeanController(){
         this.internalTasks = new ArrayList<InternalTask>();
    @PostConstruct
    public void init(){
         //Here I construct my TreeModel
         this.model = new ChildPropertyTreeModel(root,"collection");
    //getters and setters
    And my Component in my JSF page would be :
    <dvt:gantt value="#{myBeanController.model}></...>
    In my Browser the component seems to work properly without any problems but if I expand each node then I can see in my log :
    "<org.apache.myfaces.trinidad.component.UIXCollection> <BEA-000000> <The row key or row index of a UIXCollection component is being changed
    outside of the components context. Changing the key or index of a collection when the collection
    is not currently being visited, invoked on, broadcasting an event or processing a lifecycle method, is not valid.
    Data corruption and errors may result from this call...>"
    What's going on here ? Something with rowKeySet ?
    Thanks,
    Remy

    Hi,
    I made my tree model variable non transient and the warning message appears again.
    I implement the gantt in the same way as you did in the demo
    1st) populate ArrayList (As far as I'm concerned, it's populated via @EJB)
    2nd) create TreeModel with a helper class as in the demo which extends ChildPropertyTreeModel and implements TaskKey
    In my browser all the stuff is running fine except this warning message.
    I use for info JDev 12c
    Thanks,

  • Standard view element visibility change

    hi experts,
    In a standard component, i need to change the toolbar button visibility property at runtime,
    i have written code in post-exit of doint method,but changes are not repflecting in the portal sceen. in the button properties visibility is selected directly.
    i have created attribute in the context and changed the value to abap_false.but how to bind this attribute to the button visibility propert. when i directly tried to bind, as this is standard, it is not allowing me to change. when i use replace property attribute..it is showing error that method is protected, so it cannot be used. please advice.
    regards,
    suneetha

    Hi
    In post exit of doinit method you can change the binding of visible property by using attribute you have created
    Method is BIND_VISIBLE.
    Alternatively instead of post exit of init try your code of setting visible property to false in post exit of domodifyview.
    Hope this helps
    Regards
    Manas Dua

  • Unknown component: ENDECA_BULK_ADD_OR_REPLACE_RECORDS class

    Hi,
    I see below error while running the graph:
    INFO [main] - Graph definition file: graph\LoadData.grf
    ERROR [main] - Unknown component: ENDECA_BULK_ADD_OR_REPLACE_RECORDS class: ENDECA_BULK_ADD_OR_REPLACE_RECORDS
    java.lang.ClassNotFoundException: ENDECA_BULK_ADD_OR_REPLACE_RECORDS
    what is the jar file to have this component?
    It seems that I have all set to classpath as below.
    Still getting same error.
    Thanks
    Pradeep K Pathak
    =======================================
    I tested forward slash with backward also but same error.
    =======================================
    USER_CLASSPATH=
    "java.exe" -classpath ";;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\;;;c:\Ora
    cle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/annotations.jar;c:\Oracle\Endeca\
    Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/cloveretl.engine.jar;c:\Oracle\Endeca\Discov
    ery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/commons-cli-1.1.jar;c:\Oracle\Endeca\Discovery\2.3
    .0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/commons-codec-1.4.jar;c:\Oracle\Endeca\Discovery\2.3.0\In
    tegrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/commons-httpclient-3.1.jar;c:\Oracle\Endeca\Discovery\2.3.0\In
    tegrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/commons-io-1.4.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator
    \plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/commons-io-LICENSE.txt;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plu
    gins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/commons-logging-1.1.1.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plug
    ins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/commons-net-2.0.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com
    .cloveretl.gui_3.2.1\lib\bin\.\../lib/dom4j-1.6.1.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.
    gui_3.2.1\lib\bin\.\../lib/ftp4j-1.4.3.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\l
    ib\bin\.\../lib/ftp4j-LICENSE.txt;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\
    ../lib/httpclient-4.1.1.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib
    /httpcore-4.1.1.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/icu4j-L
    ICENSE.html;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/icu4j-normalize
    r_transliterator-4.8.1.1.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../li
    b/icu4j-unicode-LICENSE.txt;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib
    /jakarta-oro-2.0.8.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/javo
    lution.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/jaxb-api-LICENSE
    .txt;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/jaxb-api.jar;c:\Oracle
    \Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/jaxb-impl-LICENSE.txt;c:\Oracle\Ende
    ca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/jaxb-impl.jar;c:\Oracle\Endeca\Discovery\
    2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/jaxen-1.1.1.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integ
    rator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/jets3t-0.8.0.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plug
    ins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/jms.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.g
    ui_3.2.1\lib\bin\.\../lib/joda-time-1.6.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\
    lib\bin\.\../lib/jsch-0.1.42.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\.
    ./lib/jsr173_1.0_api.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/jx
    l.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/LICENSE.txt;c:\Oracle
    \Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/log4j-1.2.15.jar;c:\Oracle\Endeca\Di
    scovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/openxml4j-1.0-beta.jar;c:\Oracle\Endeca\Discov
    ery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/org.eclipse.nebula.widgets.grid-1.0.0-SNAPSHOT.jar
    ;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/poi-3.8-beta4-20110826.jar
    ;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/poi-ooxml-3.8-beta4-201108
    26.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/poi-ooxml-schemas-3.
    8-beta4-20110826.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/sardin
    e.jar;c:\Oracle\Endeca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/tar.jar;c:\Oracle\End
    eca\Discovery\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/truezip-6.8.1.jar;c:\Oracle\Endeca\Disco
    very\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/xmlbeans-2.3.0.jar;c:\Oracle\Endeca\Discovery\2.3
    .0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/XmlSchema-1.4.3.jar;c:\Oracle\Endeca\Discovery\2.3.0\Inte
    grator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\../lib/XmlSchema-LICENSE.txt" "-Dclover.home=c:\Oracle\Endeca\Discovery
    \2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\.." org.jetel.main.runGraph -plugins "c:\Oracle\Endeca\Disco
    very\2.3.0\Integrator\plugins\com.cloveretl.gui_3.2.1\lib\bin\.\..\plugins" -noJMX graph\LoadData.grf
    ===========================================================

    Hi! Thanks for your reply,
    I did what you said (drag the component again to the Graph and delete the old one) but I am still getting the same error (The component that is not being found is the RESET DATA STORE),
    One thing I forgot to tell you is that I am running it from the command line using "./clover" command line which is located in
    /home/oracle/Endeca/Discovery/2.3.0/Integrator/plugins/com.cloveretl.gui_3.2.1/lib/bin
    When I ran from the Integrator it worked OK.
    I am using Endeca 2.3.0. and I am executing it like the following:
    ./clover runGraph /home/oracle/Endeca/workspace/MFGProject/graph/RunAllGraphs.grf
    Any new ideas?

  • Component Definition and Arrays in 8

    Is there any way to get the component inspector window to
    display the numbers next to items in an array? It's rediculous that
    they won't appear, is it a bug? I'm on a Mac G5 OS 10.4.5.
    Dan P.

    you can assign a variable's default value in the component
    definition dialog box, but you must initialize the variable in your
    class definition and you must define what that variable does in
    your class definition.

  • SRM: Using Z Configuration in Standard component

    Hello Experts,
    I want to hide a colunm of a table hence i created my own z configuraiton . However during the applicaiton is called,the newly created "Z" configuraiton is never called. Instead stil the standard configuration is called.
    How can make my z configuraiton being called instead of the Standard?
    Please help.
    Thanking you,
    best Regards,
    Tamanna.

    Hello Tamanna,
    the reason probably is, that within the application configuration still the standard FPM component configuration is inside. When you create your own application configuration and enter there your own component configuration, it should work.
    Have you ever thought about using the administrator mode for your change? When you are doing this you will create a customizing for SAP delivered component configuration. Within the administrator mode you remove the column from the table and this change will have an effect on the application runtime for all users in this client.
    So you don't have to copy SAP's component configuration and the benefit of changes in admin mode is that e.g. new deliveries/updates from SAP to this standard component configuration are not lost.
    For a further look of enhancing/adapting SAP component configurations please have a look at this [document|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/c0a2b7c2-1598-2e10-45bc-c556df3b9576 ].
    Best regards,
    Julia

  • Create interface method in standard component.

    Hi Experts,i want to enhance standard component.in that i created one attribute and i used in my component.For that attribute the value is passing from some other component.i try to create interface method in standard component.but it is not possible.so please help me out this issue.
    Regards
    prasad

    Hi,
    No, You cannot create Interface Methods/Nodes in Standard Component by Enhancing. I would suggest to create a Singleton class and create your method in that class and can access across components.
    Regards,
    Kiran

Maybe you are looking for

  • ORA 600 [kkqvmRmViewFromLst1] error

    Hi, I am using Binary XML DB . Here is the DB banner info. Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production PL/SQL Release 11.2.0.1.0 - Production "CORE 11.2.0.1.0 Production" TNS for Linux: Version 11.2.0.1.0 - Production

  • Black thumbnails and pictures in Media Center in PE8

    Hi, I've had this issue for years (in PE6, 7 and now 8) and on various Windows versions (XP MCE, Vista and now on W7 x86 and x64) but I've finally decided to try and do something about it as I'd really like to be able to use the MC plugin. As the tit

  • How to insert long query

    rs.Open "INSERT INTO staff (em_no,....... upto 60 variables)  values  '" & aa.Text & "' , '"&  upto 60 variable "'" , cn when i write upto 60 variable in text or int  one line is not enough for this its down to next line but not working what the righ

  • X-Plot Channel 1 vs. Channel 0 in Signal Express

    Hello All! This is probably obvious, but I have not been able to find it. I am trying to use signal express to record 2 differential analog imputs in a DAQ device (NIDaqMX). I have differential Channel 0 and differential Channel 1. I can record chann

  • Connection error DIPRoxy ( b1i landscape )

    I keep having this error when launching the DI PROXY SERVER .  I don't know what is wrong , or in which way i have to look to solve this. ( FYI : some levels up I have an error when testing the connection in the landscape set up in the iApp.   ) Does