Component to spreadsheet bindings

Hi,
Please guide me how to implement Component to spreadsheet bindings.
I am trying to do so, but for some reason it is not working.
spreadsheet to component binding however is working fine.
Thanks

Solved !!!

Similar Messages

  • 'Spreadsheet Table' component formatting

    Hi,
    I have an excel "block" of data that is formatted to the client's expectation. Is it possible to capture those specific formats using the Spreadsheet Table Component (or some other)? It appears that most of my formats are lost, especially the "Wrap Text".
    Is there a way to wrap text using the Grid, List View, or Spreadsheet Table modules on Xcelsius 2008 SP3?
    Thanks in advance!
    -Phil

    I dont think you can do this with any other component except Spreadsheet one. Try playing more with the spreadsheet table component
    the only way i can think of is if you can delete all the text in that block of data and map the spreadsheet table on that - by doing  this you will have the basic structure of that block of data and then you can use lables to do the formatting
    hope it helps

  • To fetch data from a standard component through Component Controller

    Hi,
    I have a requirement in which i have to access and display a standard view of a standard component in a Custom Component.
    I am able to display or configure that view on Custom Component by using Component Usage and Component Interface. But unable to populate the data in that view. Although i have exposed a context node in the standard component and created the same context node in my custom component in the Component Controller and using its method WD_USAGE_INITIALIZE to bind them.Please, provide some pointers on it.
    Cheers,
    Sharad

    Hi Sharad,
               The data will show up only if you put them there. May be the standard component itself gets the data from some where else. Usually, these data are provided by the component controller. For example, the component controller contains the header entity and the used component has access to the header entity via binding and shows all item entries fetched via relations(usually this is done in on_new_focus method). If the binding is there, but no data ia available, it will stay empty.
             Check a standard main component which uses the standard component that you are using and look at how they are establishing the connections.( component/custom controller bindings, on_new_focus methods,,)
    Regards,
    Arun Prakash

  • ADF UIX: How to use MessageCheckbox to trigger a component to be rendered?

    I have two UIX component:
    messageCheckBox model="${bindings.Servicelocal}"
    and messageStyledText id="mst_TextChange".
    I want messageStyledText to be showed if messageCheckBox was checked.
    I want to know how to set the “rendered” property of the MessageStyleText.
    The following is my uix xml code:
    <rowLayout>
    <contents>
    <cellFormat>
    <contents>
    <messageStyledText id="mst_TextChange" text="${bindings.Servicelocal}" rendered="${bindings.Servicelocal}"/>
    </contents>
    </cellFormat>
    <cellFormat>
    <contents>
    <messageCheckBox model="${bindings.Servicelocal}" >
    <end>
    <formValue model="${ctrl:createCheckBoxState(bindings.Servicelocal)}"/>
    </end>
    <primaryClientAction>
    <firePartialAction event="ShowHide_Text" unvalidated="true" targets="mst_TextChange"/>
    </primaryClientAction>
    </messageCheckBox>
    </contents>
    </cellFormat>
    </contents>
    </rowLayout>

    I think you're on the right track here.
    Assuming that the values for Servicelocal are 'Y' and null, what you could do is use EL to define the rendered component as follows:
    rendered="${!empty bindings.Servicelocal.inputValue}"
    or alternatively:
    rendered="${empty bindings.Servicelocal.inputValue ? false : true}"
    I'm writing this from home so can't check the above but you get the idea.
    Note the use of ".inputValue" to retrieve the actual value of Servicelocal.
    I note your use of the &lt;firePartialAction&gt; tag in the &lt;messageCheckBox&gt;. Please note I recently found a bug (I've raised this with Oracle Support) where the &lt;firePartialAction&gt; causes the running page to ignore any user input for some seconds (5 sec?) when fired from a &lt;messageCheckBox&gt;. Your mileage may vary.
    Hope this helps.
    CM.

  • List View selecting wrong record

    Hi all,
    I have placed a List view on my dashboard. i am using direct connection with BI and am populating the list view with the data retrieved from the connection. the problem is that when i launch the dashboard and select a record from the list view, it selects the record above the one on which i click. I want the list view the select the record which i click on. How do i rectify this.
    regards,
    hamza

    Hi Hamza
    Check all of your data insertion type and associated spreadsheet bindings.
    Regards
    Charles

  • Dynamically enable a field based on a selected table row

    Hi everyone.
    I'm getting really confused right now, please show me the right way. My approach may be, and probably is, wrong since I am self learning this and all I have is an ASP.NET background.
    I have a page with a table in it. I've created a DataControl for a collection I've made and mapped it to the table. I added a column that shows an "edit" button. On it's click, I open a popup that shows the selected row's data. Naviguation controls are also present on the popup.
    This is working fine.
    My problem comes in the popup. Each row has multiples fields. These fields, shown on the popup, need to dynamically be enable/disable. To toggle those field, the only way I can see right now is to have a function that takes into parameter the rowId and the fieldName. Based on those two fields, I can get the necessary information to know if I need to enable or disable the control.
    What I was aiming for, but then again I totally failed, was to have that function called on the "enabled" EL Expression, returning a Boolean.
    Now that this has been said, can someone guide my on how to dynamically enable/disable each field based on the selected row.
    Thanks !

    Above +
    why don't you create a bean method that returns a Boolean ans through EL Expression Builder select the method to this property.
    btw .. on which components are you setting this?
    Also,
    If there is business logic that prohibits to update this object unless that is met.. you can also do it as..
    In EOImpl .. override isAttributeUpdateable(int i) method eg:
    @Override
    public boolean isAttributeUpdateable(int i) {
    if(i == this.ENAME && "KING".equalsIgnoreCase(this.getEname())){
    return true;
    }else
    return super.isAttributeUpdateable(i);
    and then in UI for the component say
    ReadOnly = #{bindings.Ename.updateable}
    Or, In UI
    disable = #{ bindings.Ename.attributeValue == 'KING' & bindings.Mrg.attributeValue == null ? true : false}
    adf does provides many ways to do it ..
    Cheers, Amit

  • Fault policies not getting executed for called BPEL process

    Hi,
    I am facing one issue in execution of fault policy for a called BPEL Process.
    I have two BPEL Processes - BPELProcess1 and BPELProcess2.
    We have fault-policies and fault-bindings file.
    Case1 - BPELProcess2 is synchronous :-
    BPELProcess2 throws a fault of selectionFailure.
    Now this fault is defined in fault-policies and fault policy is bound to BPELProcess2 component in fault-bindings.xml file.
    But this fault policy is NOT getting executed.
    This selectionFailure fault from BPELProcess2 goes unhandled and in BPELProcess1, invoke activity gets this unhandled fault and raises a fault "remoteFault".
    This remotefault is also defined in fault-bindings and bound to BPELProcess1 component. Here fault policy bound to BPELProcess1 is working fine.
    So problem is that for called process, fault policies are not getting executed while for calling process, they are getting executed.
    Case1 - BPELProcess2 is Asynchronous
    BPELProcess2 is asynchronous. So same situation happening here. Fault policy for BPELProcess2 is not getting executed on throwing selectionFailure.
    But now here, since BPELProcess2 is async in nature, BPELProcess1 is not getting response and it is always waiting for response which is wrong.
    So how can we use fault policies in this case?
    Please suggest.
    Thanks & Regards,
    Parshant

    So that means - only fault originating from invoke activity in BPEL can be associated with a fault policy. No other fault can be associated. Even if I throw a selectionFault from throw activity, that will not be captured. Only fault from invoke activity can be associated with a fault policy.
    Please confirm.
    Thanks,
    Edited by: 833944 on Feb 24, 2011 9:36 PM

  • Array of objects into dataset and then to datagrid

    I have discovered amfphp (
    http://amfphp.org). It's a really
    cool way to move complex data objects from php to flash and back.
    quote:
    So I am successfully creating an array of items from my
    database...an item that would otherwise be created like this:
    items = array();
    item[0] = new Object();
    item[0].id = 7;
    item[0].name= "Item 1";
    item[0].styleNumber = "001";
    item[1] = new Object();
    etc.
    I put DataSet and DataGrid objects on my stage called
    productDataSet and productDataGrid, respectively, and tried this:
    quote:
    this.productDataSet.items = re.result;
    trace('dataSet length:' + this.productDataSet.getLength());
    this.productDataGrid.dataProvider =
    this.productDataSet.dataProvider;
    the trace appears to work correctly--several hundred
    items--and the dataGrid shows my object property names (albeit in
    reverse order) and the DataGrid appears to have several hundred
    items in it but there is NO DATA THERE. All the list items are
    blank.
    I've had a bit of luck working with the component inspector
    creating bindings and stuff but I'm hampered by my incomplete
    understanding of how it works. All the tutorials I've found
    instruct me to import an XML sample to create a schema. Since I
    have no XML i cannot one.
    I want to do just a couple of things:
    1) put my data in the DataSet properly, ideally in one fell
    swoop--i *think* i've done this correctly above
    2) attach the DataGrid to the DataSet so that when i sort or
    filter the data set, the datagrid shows the results and when i
    select an item in the DataGrid, the DataSet knows that is the
    currently selected item.
    3) hide the 'id' field in the data grid and display
    user-friendly names for the columns: "Style Number" rather than
    "styleNumber".
    Any help would be much appreciated. I *think* this is all
    about understanding schemas but I don't really know.

    That *is* a very interesting article. Unfortunately, it
    doesn't mention anything about DataSets. I haven't had any trouble
    getting my data into my flash application. I've also been able to
    put it into a DataGrid pretty easily (although not quite as
    elegantly as that example did).
    The problem is that I'm having issues when I introduce a
    DataSet for filtering. I can't get the data from the DataSet into
    the DataGrid like I want it. I haven't been able to hide the 'id'
    column of my data and the column names unfortunately are *exactly*
    what the Object property names are. I was hoping to put
    user-friendly column headers on their like 'Product Name' rather
    than 'name' or 'Style Number' rather than 'styleNumber'.
    Also, the concept of a schema is still somewhat beyond me. I
    tried changing the schema for my productDataSet to this and I got
    the data to display. I added 'name, 'styleNumber', and 'id'
    quote:
    <-->dataProvider : Array
    <-->deltaPacket : DeltaPacket
    <-->items : Array
    <-->selectedIndex: Number
    <-->name : String
    <-->styleNumber: String
    <-->id : Integer
    I have tried radically different shemas (schemae?) that seem
    to also get the data in there but I don't really understand what
    i'm doing here and I feel like I'm asking for trouble not knowing
    how this stuff really works.
    And, like I said before, i want to hide certain information
    that's in the DataSet so that it doesn't get displayed. I'd also
    like to Have some user-friendly names rather than the actual
    field/property identifiers.

  • Dashboards - Alert View Widget Column Width

    Hello, I am trying to create some Dashboards using the Alert Widgets. I am having problems with the column width. The default widths are not useful and take up to much screen space for a dashboard (example" Maintenance mode is really wide just for
    a icon). After I create the Dashboard I can adjust the column width just fine, but as soon as I go to another view and come back SCOM forgets how I had it all configured and resizes it back to default. How do I fix this and get it to save my custom widths? 
    Thanks!

    It is because every time you go back to Alert View Widget, it will reload its original configuration. You can modify the orgininal configuration setting by export the MP, contains the Alert view Widget, and modify its XML file.
    The column width setting is under
    Presentation -> Component Overrides -> ComponentOverrideID -> Bindings -> Binding PropertyID="Columns" -> Complex Value Type(select the coumn which you want to set the column width) --> Binding Property ID="Width" -> SimpleValue Value="12"
    ( 12 is the new column width)
    Roger

  • Excel Functions Do Not Work When Data Source is BW

    Hello,
    My platform is, BOBJ BI 4.0. Data source is SAP BW. BW is connected to XCelsius with BEx. My problem is, excel functions do not work when data source is BW. For example, Excel cell A1=quantity1  B1= quantity2   C1= excel function "=A1+B1" When data source is Excel, for example A1=5, B1=9 C1 automatically equals to 14. (There is no problem when data source is Excel) But, in BW, for example when BW set values to A1=5, B1=9, the system does not calculate C1. C1 always equals to initial value, the system does not care any excel calculation when data source is BW.  Any guess for my problem? Thank you for your effort.

    Hi,
    As you are using very simple formula,it will work no matter which source you are consuming.As mentioned,try to place a simple component(Eg:spreadsheet),just to check whether you are getting the right calculated value or not.
    As you are using BW as source,the Preview option will not show the runtime data,so you need to publish in Portal to check whether the calculation happened or not.
    As far as I know only few fromulas are supported in Xcelsius,but these kind of simple formulas are very much supported.
    Rgds,
    Murali

  • SMTP BC problem

    I'm trying to test inbound email into BPEL but ran into several problems.
    The first is a lifecycle exception due to what appears to be a jar problem. This seems to be solved by using this fix: https://open-jbi-components.dev.java.net/issues/show_bug.cgi?id=582
    Is this component currently stagnant? Doesn't seem to have much new updates.
    Next, this example: https://open-esb.dev.java.net/kb/beta2/60/ep-smtp-bc.html
    That example no longer works. Looks like a problem with the BC again. Getting this error in GlassFish during deployment:
    startEmailService failed. Email server name: {http://j2ee.netbeans.org/wsdl/SMTPInBound}SMTPInBoundServiceSMTPInBoundPort port: 888
    Failed to start the end point with service name {http://j2ee.netbeans.org/wsdl/SMTPInBound}SMTPInBoundService and endpoint name SMTPInBoundPort: startEmailService failed. Email server name: {http://j2ee.netbeans.org/wsdl/SMTPInBound}SMTPInBoundServiceSMTPInBoundPort port: 888
    Deactivating endpoints that were activated
    Error starting service unit due to: com.sun.jbi.smtpbc.EndpointChangeException: startEmailService failed. Email server name: {http://j2ee.netbeans.org/wsdl/SMTPInBound}SMTPInBoundServiceSMTPInBoundPort port: 888
    Parameter count mismatch, expected 0, actual 1Would really appreciate some help or some alternatives...
    Thanks in advance.

    This is a snippet of the stack trace I'm getting on GlassFish on attempts to start up the sun-email-binding BC:
    JBIFW2555: Operation retrieveConfigurationDisplayData is not implemented by MBean com.sun.ebi:ServiceType=Configuration,InstallationType=bindingComponents,IdentificationName=sun-smtp-binding.
    JBIFW2555: Operation retrieveConfigurationDisplayData is not implemented by MBean com.sun.ebi:ServiceType=Configuration,InstallationType=bindingComponents,IdentificationName=sun-smtp-binding.
    JBIFW2555: Operation retrieveConfigurationDisplayData is not implemented by MBean com.sun.ebi:ServiceType=Configuration,InstallationType=bindingComponents,IdentificationName=sun-smtp-binding.
    JBIFW2551: Component sun-smtp-bindings configuration change [ Threads, EnvironmentVariables ] could not be persisted. JBIFW2555: Operation retrieveConfigurationDisplayData is not implemented by MBean
                            com.sun.ebi:ServiceType=Configuration,InstallationType=bindingComponents,IdentificationName=sun-smtp-binding.
    JBIFW2555: Operation retrieveConfigurationDisplayData is not implemented by MBean com.sun.ebi:ServiceType=Configuration,InstallationType=bindingComponents,IdentificationName=sun-smtp-binding.
    JBIFW2555: Operation retrieveConfigurationDisplayData is not implemented by MBean com.sun.ebi:ServiceType=Configuration,InstallationType=bindingComponents,IdentificationName=sun-smtp-binding.
    JBIFW2555: Operation retrieveConfigurationDisplayData is not implemented by MBean com.sun.ebi:ServiceType=Configuration,InstallationType=bindingComponents,IdentificationName=sun-smtp-binding.
    JBIFW2551: Component sun-smtp-bindings configuration change [ Threads, EnvironmentVariables ] could not be persisted. JBIFW2555: Operation retrieveConfigurationDisplayData is not implemented by MBean
                           com.sun.ebi:ServiceType=Configuration,InstallationType=bindingComponents,IdentificationName=sun-smtp-binding.
    JBIFW2555: Operation retrieveConfigurationDisplayData is not implemented by MBean com.sun.ebi:ServiceType=Configuration,InstallationType=bindingComponents,IdentificationName=sun-smtp-binding.
    javax.management.MBeanException
            at com.sun.jbi.management.facade.ComponentConfiguration.retrieveConfigurationDisplayData(ComponentConfiguration.java:1516)
            at com.sun.jbi.management.facade.ComponentConfiguration.getConfigDoc(ComponentConfiguration.java:4405)
            at com.sun.jbi.management.facade.ComponentConfiguration.encryptCompConfigPasswordField(ComponentConfiguration.java:4338)
            at com.sun.jbi.management.facade.ComponentConfiguration.persistAttributes(ComponentConfiguration.java:2354)
            at com.sun.jbi.management.facade.ComponentConfiguration.persistMBeanAttributes(ComponentConfiguration.java:2476)
            at com.sun.jbi.management.facade.ComponentConfiguration.getAttributes(ComponentConfiguration.java:517)
            at com.sun.jbi.management.facade.ComponentConfiguration.getAttribute(ComponentConfiguration.java:187)
            at com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getAttribute(DefaultMBeanServerInterceptor.java:666)
            at com.sun.jmx.mbeanserver.JmxMBeanServer.getAttribute(JmxMBeanServer.java:638)
            at com.sun.enterprise.interceptor.DynamicInterceptor.getAttribute(DynamicInterceptor.java:196)
            at com.sun.esb.management.base.services.AbstractServiceMBeansImpl.getMBeanAttributeValuesAsMap(AbstractServiceMBeansImpl.java:1442)
            at com.sun.esb.management.impl.configuration.ConfigurationServiceMBeanImpl.getConfigurationAttributeValuesAsMap(ConfigurationServiceMBeanImpl.java:2862)
            at com.sun.esb.management.impl.configuration.ConfigurationServiceMBeanImpl.getComponentConfigurationAsMap(ConfigurationServiceMBeanImpl.java:4860)
            at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    ...snip...
    Caused by: com.sun.jbi.management.system.ManagementException: <?xml version="1.0" encoding="UTF-8" standalone="yes"?><jbi-task version="1.0" xmlns="http://java.sun.com/xml/ns/jbi/management-message">
      <jbi-task-result><frmwk-task-result><frmwk-task-result-details><task-result-details><task-id>retrieveConfigurationDisplayData</task-id><task-result>FAILED</task-result><message-type>ERROR</message-type>
      <task-status-msg><msg-loc-info><loc-token>JBIFW2555</loc-token><loc-message>Operation retrieveConfigurationDisplayData is not implemented by MBean
      com.sun.ebi:ServiceType=Configuration,InstallationType=bindingComponents,IdentificationName=sun-smtp-binding.</loc-message></msg-loc-info>
      </task-status-msg></task-result-details><locale>en_GB</locale></frmwk-task-result-details></frmwk-task-result></jbi-task-result></jbi-task>
            at com.sun.jbi.management.facade.Facade.invokeRemoteOperation(Facade.java:315)
            at com.sun.jbi.management.facade.ComponentConfiguration.retrieveConfigurationDisplayData(ComponentConfiguration.java:1504)
            ... 57 more
    java.lang.NoClassDefFoundError: Could not initialize class com.sun.jbi.emailbc.endpoint.EmailBCEndpointManager
            at com.sun.jbi.emailbc.EmailBCComponentManager.initEndpointManager(EmailBCComponentManager.java:32)
            at com.sun.jbi.component.lifecycle.impl.AbstractComponentManager.init(AbstractComponentManager.java:321)
            at com.sun.jbi.framework.ComponentFramework.initializeComponent(ComponentFramework.java:1213)
            at com.sun.jbi.framework.ComponentFramework.startComponent(ComponentFramework.java:1799)
            at com.sun.jbi.framework.ComponentLifeCycle.start(ComponentLifeCycle.java:162)
    ...snip...Anyone have any ideas on what's wrong?

  • 1 to Many Binding

    Hi guys, I was working on this component ([http://bdisys.com/demos/colorchart.htm]) and has been able to create it successfully at last but one major problem which I faced while creating this component was 1toMany Bindings. Since it was for the customer, I was able to make it workable but now my company wants to sell it as a product component.
    Can someone help me in 1toMany Bindings.
    I have been able to solve the property sheet issues but in the component creation class I am not able to understand what kind of Data Structure should I use and how to handle that data structure?
    Any help is appreciated..........................
    Regards,
    Saurabh Seth
    BDI Systems & Tech.
    +91 9663175068

    Hi!
    I have a problem with the beginning. I don't know which datatype (or structure) i need to use and how to handle this.
    Could you write me this shortly?

  • Keep aspect  ratio?

    Hi,
    I created custom component(polygon) in Flex Builder, compiled and added to my add-ons.
    I got my custom component on stage in Xcelsius.
    I would like to keep aspect ratio of my custom component during resizing?
    Please check Spreadsheet Table component. Spreadsheet table and resize handlers keeps aspect ratio during resizing.
    How can i accomplish this?
    My thoughts:
    I could do this by adding mouse down and mouse move event to stage area. When user starts resizing component(mouse down pressed, mouse move dispatched) I could just simply calculate and change component minWidth and minHeight.
    Can I add events to stage area? If yes what kind?
    [Mariosh | http://mariosh.com]

    I agree it would help productivity if there were a "sticky" setting on the crop selections.
    In the meantime (assuming Adobe will eventually change this) you can use Synchronize or Copy Settings to apply a crop ratio to multiple images.
    There are a couple minor glitches/bugs using this approach :
    After synching, the crop size on the toolbar shows "Custom" rather than the actual ratio you set. I think it should display the chosen ratio, as it does when you choose a setting from the list.
    If you copy/paste, the ratio improperly shows "Original", and the list also shows "Original" checked. But the crop frame tool on the image correctly shows the pasted crop ratio. I've found you have to go back to grid view and return to develop to set it properly. Confusing, at best.

  • Overwrite actionlistner

    Hello,
    I have a popup in my application. I cant change the source code of this popup. Maybe because it is an external component (actually it is a component from oracle bpm)... I dont know.
    In the ok button of the component there is a command button like this:
    <af:commandButton textAndAccessKey="#{wflow_msg.BUTTON_OK_AK}"
    actionListener="#{reassignTaskController.takeAction}"
    id="reassignOkButton" partialSubmit="true"
    rendered="#{attrs.mode == 'REASSIGN'}"/>
    <af:spacer width="5"/>
    This component has a bindings attribute.
    My question is: is it possile to overwrite the action listner of the button, so that a custom bean code would be triggered? Is yes, how please?
    thank you!
    fwu

    Hi,
    try calling custom method using javascript in adf..
    refer this link<http://blogs.oracle.com/jdevotnharvest/entry/how-to_call_server_side_java_from_javascript>.
    by this you can also call your existing action,actionListener.. whateever and your custom method.
    Regards,
    Santosh.
    Edited by: Santosh Vaza on Jul 29, 2011 11:19 AM
    Edited by: Santosh Vaza on Jul 29, 2011 11:20 AM

  • Change CSS file programatically

    Hello,
    Is there a way to change the CSS file that it's applyed to the project programatically?
    Example:
    The user enters the application and want's to change it's appearence by giving it a new CSS, so he uploads a .CSS file which should then be applyed to the application.
    Thanks,
    Rui Belchior

    Maybe the CSS can be dynamically generated and made available via a servlet (or any other dynamic technology).
    Note also that the Style property of any component can be bound to a Java property:
    Right-click on a component, choose Property bindings..., select 'style' in the left column, and bind it to a Java property.

Maybe you are looking for

  • What is  a diference between Apple TV and Elegato

    Does ATV work without comp on and no wifi  router on?

  • Project management resp

    I have created responsibility for project management . But in Search project i am not able to view all tabs there like projects , workplan, etc . Can any body plpease help ??

  • Database VS Data warehousing

    pls help me in knowing the differences between database and data warehousing in detail send me links and PDF if u have thanks

  • MSS Attendance Overview

    Manager is unable to view all subordinate employees in attendance, he can only view direct subordinate employees on MSS. please advise on how to make manager view all employees in attendace. Thx.

  • Why do .ipa files end up in the trash?

    I just got done syncing wirelessly my iPad to my pc to iTunes and there are a bunch of .ipa files in my trash can, I'm curious why they go there and if they are safe to delete?