Flash Islands : convert bindable ArrayCollection

Hi Experts,
I'd like to use a Flex calendar component in a Flash Island in my WDA application.
I've created a node (EVENTS) with 3 attributes (STARTTIME, ENDTIME, SUMMARY) and created a GACDataSource (calendarEvents) with 3 GACProperties (startTime, endTime, summary). Then I've created some bindable variables in my Flex application :
[Bindable]
public var calendarEvents:ArrayCollection;
[Bindable]
public var startTime:String;
[Bindable]
public var endTime:String;
[Bindable]
public var summary:String;
If I put a DataGrid in my Flex application and use calendarEvents as dataProvider everything works fine and the data is displayed in the grid :
<mx:DataGrid dataProvider="{calendarEvents}" id="grid">
     <mx:columns>
          <mx:DataGridColumn headerText="Start" dataField="{startTime}"/>
          <mx:DataGridColumn headerText="End" dataField="{endTime}"/>
          <mx:DataGridColumn headerText="Summary" dataField="{summary}"/>
     </mx:columns>
</mx:DataGrid>
However, if I use calendarEvents as dataProvider for the calendar component, the events are not displayed on the calendar. This component expects an ArrayCollection that looks like :
[Bindable] public var eventsArray:ArrayCollection = new ArrayCollection([
{startTime: "2011/03/10 00:00", endTime: "2011/03/11 00:00", summary: "Meeting"}]);
The problem is the calendarEvents ArrayCollection contains WDContextNode objects. How do I convert this ArrayCollection to an ArrayCollection that can be understood by the calendar component?
Regards,
Pierre

Problem solved by specifying calendar data with custom functions.
Pierre

Similar Messages

  • Flash island WDA Simulate DataSources Input for Development

    Hello,
    Does anybody know how I can simulate a DataSource that comes from the WDA to the Flash-Island.
    I am trying to create a FlashIsland and I looked at the function set dataSource example from Thomas Jung's WDA-GoogleMap.
    During development for the flex project I would like to use some example data the would be send by the WDA to my FlashIsland.
    I would like to fill that data during the init() of my Flex project. The data will only be pushed to the FlashIsland so no 'two-way' binding is needed.
    e.g.: I know that in my WDA I have defined a DataSource named dataSource, which contains three Properties (var1, var2, var3).
    The DataSource is a table containing e.g. three entries.
    Any help is appreciated.
    Leon

    Hello Leon,
    >>Does anybody know how I can simulate a DataSource that comes from the WDA to the Flash-Island.
    To simulate the data, the better approach would be to create an xml file with the simulated data and read that xml into an arraycollection and call the set method of the datasource.
    As you have one datasource with 3 properties, let me explain with an example:
    1. Create an xml file data.xml and enter the following in that file:
    <?xml version="1.0" encoding="UTF-8" standalone="no" ?>
    <root>
      <item>
        <userID>12345</userID>
       <firstName>User</firstName>
       <lastName>xyz</lastName>
      </item>
      <item>
        <userID>12346</userID>
       <firstName>User2</firstName>
       <lastName>xyz</lastName>  </item>
    </root>
    2. You have to define a HTTPService to read the xml file. Put the following mxml code in your flex application file.
    <mx:HTTPService id="service"
                url="data.xml"
                contentType="application/xml"
                resultFormat="xml"
                result="serv_result(event);"
                fault="serv_fault(event);" />
    3.  add the following code in the script block of flex application file.
    private var simulatedData:ArrayCollection = new ArrayCollection;
          private function serv_result(evt:ResultEvent):void {
                    /* Convert XMLNode to XMLDocument. */
                    var xmlStr:String = evt.result.toString();
                    var xmlDoc:XMLDocument = new XMLDocument(xmlStr);
                    var decoder:SimpleXMLDecoder = new SimpleXMLDecoder(true);
                    var resultObj:Object = decoder.decodeXML(xmlDoc);
                    var arr:ArrayCollection = new ArrayCollection;
                    arr.addItem(resultObj.root.item);
                    simulatedData = ArrayCollection(arr.getItemAt(0));
    private function serv_fault(evt:FaultEvent):void {
                    Alert.show("Not able to load data from xml" + evt.message); 
    private function readXML():void{
    service.send();
    4. Call readXML() method inside the event handler of initialize event of the flex application. And define an event handler applicationCompleteHandler for applicationComplete event of flex application.
    Inside applicationCompleteHandler, call the set method of datasource in the following way:
    private function applicationCompleteHandler():void
                    datasource=simulatedData; //datsource is the setter method here
    the setter method datasource can be the same as the one you use to read data from WDA.
    Please let me know if you need more info!
    Regards,
    Srilatha

  • Flash Island "Children DataSources"

    Hi all, I've been looking over the documentation for binding the data sources and properties in the FlashIsland's context nodes with The flex object, all of them show a simple scenario of one data source and few properties, but never shows the case of Children DataSources. I've had to use this case but I came across the following issue.
    The issue simply is Iu2019ve been accessing the DataSources defined in my FlashViewu2019s Context using the Bindable variables on my FlashIsland at the flex side, and whenever I need to get the ChildDataSource of it, I would use the actual name of that ChildDataSource thatu2019s defined in the COMPONENTCONTROLLERu2019s Contextu2026 I figured that this is not a good practice for reusability!
    Just to make sure Iu2019m clear this is a small example
    for each(var item:Object in _myFlashIsland.Box)
                var boxData:ArrayCollection = item[[BOX_DATA]];
    Where myFlashIsland.Box is the Bindable DataSource variable, and u201CBOXDATAu201D is the name of the ChildDataSource of Box.
    Would there be a way I can get the name of u201CBOX_DATAu201D generically or use the u201Cnameu201D property in my FlashIsland view at the SAP side the same way I used it for Box, so whoever is using the component wonu2019t have to strict their context to have this naming?
    Thank you in advance, and have a wonderful day.

    You had stumped me on this one, but I went back to the developer in Palo Alto who wrote the Flex side of the FlashIslands implementation.  He was kind enough to pass along this explanation. I had never tired it before, but there is a method of the FlashIsland library called getDataSourceFieldName that can be used for this.  Here is his complete explanation:
    There are two ways to access the child data source.  The first is to just use the normal data source declaration, if you do that you will get the lead selected (or default selected) child data source.  Lets say your context looks like this:
    context root
    |
    +-A (context node)
      |
      +-a1 (context attr)
      +-a2 (context attr)
      +-B  (context node)
        |
        +-b1 (context attr)
        +-b2 (context attr)
    And lets say you create your Flash Island with a GACDataSource name="A" and a child GACDataSource name="B"
    In your Flex code you would declare:
    public var A:Object;
    public var B:Object;
    "A" would be set to the lead selected node for context node "A" and "B" would be set to the lead selected node for context node "B".
    If, however, you would like to iterate through the all of the child context nodes you can use the getDataSourceFieldName FlashIsland function to get the correct child's field name.  Given the previous example the following should work:
    public function set A(val:Object) : void {
        if(!(val is IList))
            return;
        var mainDS = val as IList;
        var childDSField:String = FlashIsland.getDataSourceFieldName(this, B);
        for(var i:int=0; i<mainDS.length; i++) {
            var mainDSRowObject = mainDS<i>;
            var thisRowsChildDS:Object = mainDSRow[childDSField];
            Alert.show('Child ' + i +
                    ': attr1: ' + thisRowsChildDS[BAttr1Field] +
                    ' attr2: ' + thisRowsChildDS[BAttr2Field]);
    public var B:Object;
    public var BAttr1Field:String;
    public var BAttr2Field:String;

  • Data connection between Java Webdynpro - Flex Flash Island

    Hi,
    I'm developing a Java Webdynpro with connection to a Flex Flash Island. I'm using Flex 3.2.
    I've already set up the connection from WDJ to Flex, by using Events and the FlashIsland.fireEvent method, this all works fine. Now I'm trying to update a value in WDJ, to be updated in Flex. This gives the following error:
    Error: Error #1023: Stack overflow occurred.
         at Function/http://adobe.com/AS3/2006/builtin::apply()
         at mx.binding::Watcher/wrapUpdate()
         at mx.binding::PropertyWatcher/eventHandler()
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.core::UIComponent/dispatchEvent()
         at UWLApplication/set opentask_updated()
         at MethodInfo-4234()
         at Function/http://adobe.com/AS3/2006/builtin::call()
         at sap.core.wd.context::WDContextListener/execute()
         at sap.core.wd.context::WDContext/notifyListeners()
         at sap.core.wd.context::WDContext/_set()
         at sap.core.wd.context::WDContext/set()
         at sap.wd.island::WDIsland/storeProperty()
         at sap.wd.island::WDIsland/onUpdateProperty()
         at mx.binding.utils::ChangeWatcher/wrapHandler()
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.core::UIComponent/dispatchEvent()
         at UWLApplication/set opentask_updated()
         at MethodInfo-4234()
    This is especially strange, cause before I had a refresh button in which I updated my entire item collection. Now, I have added this field and suddenly I get this error !
    Does anybody has any idea what this could mean? Any help would be much appreciated ...
    My field in Flex:
    \[Bindable\]
    public var opentask_updated:Number;
    <mx:Text id="opentask_updated_text" text="{opentask_updated.toString()}" />
    My adaptions in WDJ:
    public void getInbox( )  {
           wdContext.currentInboxElement().setOpentask_updated(0);
    public void wdDoInit()  {
           getInbox();

    Solved!
    It appeared to be a "long" parameter and I was trying to put it in a "Number" parameter in Flex (because there is no long in Flex)
    When I changed both to String, it worked!

  • Receive Flash Islands data in flex-Dictionary ?

    Hi@ all,
    i´m developing a bigger Flash Islands application i need to loop over ~10 000 entrys to find a searched object.
    It is now realized inside an ArrayCollection, like all examples i found.
    Is there a faster way to solve the iterating problem?
    i´m looking forward to an solution.
    thx

    Hi Thomas,
    I'll be controversial here...
    Perhaps there are cases where from a performance point of view, it is better to do handling of records client side (in the island) rather than server side.
    From a design point of view, and a support view, I'd want to keep as much logic in the ABAP system as possible, easier to debug and control.
    But there may well be cases where data might be going through lots of manipulation to present results for the user - data visualisation for instance - where I could easily see the benefit of having all the data client side and manipulating it there.
    I'd be interested to hear your thoughts on this - if you've already blogged about it - sorry, you are so prolific, it's hard to keep up!
    Cheers,
    Chris

  • Error while running Adobe Flash Islands in ABAP Web dynpro

    Hi All,
    I am new to Adobe flash Islands. I am trying with simple examples. I have downloaded SDK and Flash Builder from Adobe.com
    I have build the flex project and imported as MIME in WD and integrated into it. If i see the design of the flex project in Flash Builder all seems ok. However, when i run my WD i am facing below error.
    TypeError: Error #1006: getCurrent is not a function.
         at sap::FlashIsland$cinit()
         at global$init()
         at Labelisland/initApp()
         at Labelisland/___Labelisland_Application1_initialize()
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.core::UIComponent/dispatchEvent()
         at mx.core::UIComponent/set processedDescriptors()
         at mx.core::Container/createComponentsFromDescriptors()
         at mx.core::Container/createChildren()
         at mx.core::UIComponent/initialize()
         at mx.core::Container/initialize()
         at mx.core::Application/initialize()
         at Labelisland/initialize()
         at mx.managers.systemClasses::ChildManager/childAdded()
         at mx.managers.systemClasses::ChildManager/initializeTopLevelWindow()
         at mx.managers::SystemManager/initializeTopLevelWindow()
         at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::kickOff()
         at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::preloader_completeHandler()
         at flash.events::EventDispatcher/dispatchEventFunction()
         at flash.events::EventDispatcher/dispatchEvent()
         at mx.preloaders::Preloader/timerHandler()
         at flash.utils::Timer/_timerDispatch()
         at flash.utils::Timer/tick()
    I tried couple of examples, all ending with same error and flash component is not getting displayed at runtime.
    Hope some one helps me. Thanks in advance.

    Hello,
    See Note: https://service.sap.com/sap/support/notes/1312542
    Flex SDK 3.4 and higher is not supported as documented.
    You should use Flex SDK 3.3 to build Web dynpro FlashIslands.
    Hope this helps!
    Thanks,
    Srilatha

  • Using flash island in ABAP Webdynpro

    Hi,
    I am trying to use Adobe Flash Island.. but when i right click on root element container i dont get option as Swap root element..
    I also tried creating new element with Flash Island option...
    I also cant find library stored in the MIME repository under SAP/PUBLIC/BC/UR/nw7/FlashIslands..
    What configuatin are required to be done for using flash island in WebDynpro ABAP...
    Regards,
    Jigar OZa

    Maybe you use the wrong NW version.
    Check that you use component SAP_ABA with version 701 or 711.

  • About Flash Islands In Web Dynpro Java

    Hi All,
    We developed a sample Web Dynpro Java application with Flash Islands. It executed fine. We used the Flex 2.0.1 Hotfix 3 Compiler. But now we have a requirement to use Flex 3.2 complier. But if we use SWF files in Web Dynpro, comipled with Flex 3.0 complier, It is not rendering the UI components. How can I resolve this problem. In some thread, I saw this problem is resolved in latest patch of CE 7.1 EHP1. Is it?. If so what is that patch and from where I can download this patch?
    Thanks,
    Sampath G

    hi,
    Check out this link. It will give you an idea how to integrate Aobe island comp with web dynpro.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/307b434f-ff32-2b10-e885-991247270480
    Thanx.

  • Flash Island WD ABAP Engine

    Hello everybody
    I've a question...
    Is it possible using only ABAP ENGINE to develop with Flash Island on WD ABAP ?
    Is it necessary having also the java engine?
    Thanks to all.

    Abap engine alone is enough to develop and embed flash applications in the flash islands.
    You need abap engine and also adobe flex builder.
    refer to this tutorial for step by step procedure to develop a demo application .
    it doesnot require a java engine.
    [http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10989ef6-968c-2b10-50a9-eb34a5267163|http://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/10989ef6-968c-2b10-50a9-eb34a5267163]
    thanks
    sarbjeet singh

  • Flash Islands Tutorial I - Confusion with Flex/Flash Builder Versions

    Hi Guys,
    i am new to the Adobe Flex/Flash Islands technology and tried to implement Tutorial I by Thomas Jung. Unfortunately i am confused by the various different versions for flex and the corresponding IDE's.
    As far as i understood SAP at the moment only supports Flex versions up to version 3.3 for NetWeaver 7 EHP1. Furtheron the Adobe Charting Components (used in the Tutorial) seem to be part of the Flex Builder Professional Version only.
    So i went to the Adobe Website and looked into the products and download areas. All i found was Flash Builder 4.5 Premium and the various Adobe and Open Source Flex SDK versions. I am using Flash Builder 4.5 as a trial right now. Unfortunately the Charting Components are not included.
    So the question i have is whether the Charting Components (e.g. <mx:BarChart /> )are included in the non Trial version of Flash Builder 4.5 Premium or whether there is any possibility to get them as an Add-On. Or do i have to use Flex Builder 3 Professional (i found no information about this on the Adobe Website)?
    Additional Hint:
    I found out that when i compile the poject with Flex SDK vesion 3.6 or higher, the compiler knows the <mx:BarChart /> tag. Also in that case the view designer is working. However FlashIslands is only supported up to Flex SDK 3.3. But when i choose 3.3 the <mx:BarChart /> tag and some other related tags are unknown.
    This is a really anoying issue.
    Best Regards,
    Dirk
    Edited by: Dirk Jäckel on Jul 19, 2011 12:14 PM

    HI Dirk,
    wtith Web Dynpro, you can only use Flex SDK version 3.3 and downwards. You can download the SDK here [http://opensource.adobe.com/wiki/display/flexsdk/DownloadFlex3]
    Flash Builder ships with Flex SDK 4.5 which is not compatible with WDA flash islands.
    As for the charts library, which Adobe referes to as the Data Visualization Component, it is also available as a separate download which can be unzipped into the same directory as the Flex SDK -- the library is available here [http://www.adobe.com/cfusion/entitlement/index.cfm?e=flex3sdk]
    I must say I am also confused, because as far I can tell data visualization component is not included in 3.3, but SAP makes no mention of this. Hopefully someone else can enlighten us on this issue?

  • Environment needed to build and test Flash islands ?

    Hi Everyone,
    I'm a Flex developer and I know very little about SAP technologies. I'm very interested in Flash Islands and the possibilities that they bring to the table. I attended Thomas Jung's talks at TechEd and I think I know how to build an Island on my own .. actually I've already kinda built one that I think would work. The documents at Mentor Workshop google code site were very helpful http://code.google.com/p/sdn-mentor-handson-2008/downloads/list
    Now the problem I have is that I have no where to test these Islands that I build (Thomas was gracious enough to help me test my first Island in WebDynpro and I hear its working) ... I don't work for a company and do not have access to a company installation ... so I would like to setup my own basic test Netweaver instance where I could tryout my Islands. I'm hoping that someone here could walk me through the steps I need to get started ... which version should I install? from where? Once the install is done do I need to do anything else? what do I do with all the .nugg and transport files provided here... http://code.google.com/p/sdn-mentor-handson-2008/downloads/list
    etc.
    I would really appreciate your help,
    Thank you,
    Mrinal
    http://weblog.mrinalwadhwa.com

    Hi. First thing you need is a NetWeaver ABAP system. You can download the trial from here.
    https://www.sdn.sap.com/irj/scn/downloads?rid=/library/uuid/80fd9a0a-e306-2a10-c896-b84c77c13ed2
    Once this is installed, then you can install SAPlink, which will help you in importing the .nugg files.  If you don't have any NetWeaver ABAP experience, this may be a challenge for you.
    Regards,
    Rich Heilman

  • Flash Island: Get varibles from Flex into SAP

    Hello,
    I am trying to get the content of a variable from an Flash Island into SAP. I am using :
    FlashIsland.fireEvent(this, "add");
    in order to fire the event in SAP which is working well. But I also have a variable which content I want to send to SAP. I am using:
    FlashIsland.storeProperty(this , "ERGEBNIS", Ergebnis);
    which is not working. "ERGEBNIS" should be the name of the context attribute in SAP, Ergebnis is the name of the variable in flex.
    In my FlashIsland I have a GACEVENT called add which triggers the ACTION ADD and a GACPROPERTY called ERGEBNIS with the value FLASH.ERGEBNIS.
    My problem is to get the value of Ergebnis from FLEx to SAP.
    regards
    stefan

    The storeProperty should work.  I've got an application that uses that very technique and it is working just fine.  Make sure that your name usage is mapping properly.  For instance here is my applicatoin:
    I have a textField.  I register a function for the change event of the textField. In this function I copy the current value back with the storeProperty function:
    public function changeText():void
                   if (!RTE.htmlText == ""){
                  var l_text:String;
                        l_text = RTE.htmlText.valueOf()
                        l_text = cleanHTML(l_text);
                   FlashIsland.storeProperty(this, "RichText", l_text );
    Now RichText is the name of the public variable that I am exposing to the Island. It is not the name of the context attribute in WDA. Inside of WDA I have a GACProperty with a name of RichText and a value bound to a context attribute named HTML_TEXT.
    If this still doesn't work for you (although it should) consider passing the value back as an event parameter instead of via the context. You can pack event parameters directly into the fireEvent function and then they can be read from within your ABAP event handler method:
         FlashIsland.fireEvent(this, "newSel", {newLS:coverflow.selectedIndex});

  • Adobe flash island and ECC6 system

    Hi friends,
    We are using SAP ECC 6.0 system for developing WD ABAP application. Now we need to use adobe flash island UI Element but its not available in the UI Library. Which Patch is required to be installed on this server to use this UI element.
    Thanks in advance.
    Vaibhav.

    For ECC you would need to update to ECC 6.0 Enhancement Package 4. This is the ERP Enhancement Package that contains NetWeaver 7.0 Enhancement Package 1.  It is NetWeaver 7.0 Enhancement Package 1 that provides the new Flash Islands functionality.

  • Flash Islands organizational chart

    Hi,
    Is there any code available for the example given in the link
    http://www.sdn.sap.com/irj/scn/elearn?rid=/library/uuid/a0c91fc0-932d-2c10-4ca7-f5774950c8e3&overridelayout=true
    I'm searching for the flex codes for the creation of an organizational chart  as a text file....
    Can anyone help me???
    ARUN
    Edited by: ARUN.NAREIN on Nov 11, 2010 7:09 AM

    I have tried so many times to get hold of that example code!
    All SAP has to do is invest a little more time in code like that and we can get rid of Nakisa!
    JNet is nice - but no match for Flex for a really nice rich environment. Not to mention it is not the simplest component to code for. The amount of trial and error to get your applications looking as you want! I spent most of the time when I built a JNet team calendar just doing tiny tweeks and then retesting.
    We created our own Org Chart Adobe Flex component. (well we actually contracted it out to some very smart people with more Flex/Adobe knowledge - I wasn't allowed to have the time to play myself   )  I looked around last year and there wasn't really any good free org charting Flex component out there that could be adopted into an SAP Flash Island.
    IBM have some great Flex OrgChart components - but they are very expensive to licence.
    Good luck.
    Chris

  • Flash Islands in WD4J - NW 7.01

    Hello,
    We are currently on NW 7.01 SP 05 (NW 7.0 Enhancement Package 1) for our Web AS JAva.
    My NWDS version is 7.01.05
    I am trying to integrate a Flex application into SAP Portal using Web Dynpro for Java.
    I am following the article http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/b006b4c2-82bf-2b10-d28a-b0c599e7fa0d
    As per the document, I have created my Flex application using Flex Builder 3.0 and generated the "swf" file and integrated it into the "mimes" folder
    of my Webdynpro for JAva Project.
    However, in my NWDS version I don't have the option of replacing the Root Container of my View with the Flex application.
    I have read that Flash Islands is available as of NW 7.11 CE (Composition Environment) for Java.
    Also, it looks like "Flash Islands" feature is available in NW 7.01 ABAP (correct me if I am wrong).
    My Questions are:
    1. Is flash islands available in NW 7.01 or 7.02 (Enhancement Pack 1 or 2) (Java) ?
    2. Is there any alternative for using Flash Islands in WD4J besides going for NW CE 7.11 ?
    Please throw some light into this area.
    Thank you for reading.
    - Raj

    Hello Guys,
    Thanks for your comments. I did not know that my forum post would become so interesting
    Anyways, I am one of the WD4J developers out there who would like to see more features in NW 7.0 version. The 7.1 CE version of Java involves more work (like Daniel said) and would still not solve all our purposes. It would not be an upgrade actually going to CE 7.1 but an addition of a new server in the current landscape for better integration of some cool features.
    Though we cannot compare the ABAP and Java worlds, it would have been nice to include some useful (most anticipated for) features in NW 7.0 version of Java. (that were included in NW 7.0 of ABAP)
    Back to the my initial questions, if integration of Flex applications into SAP Portal using Flash Islands (WD4J) is not possible  in the NW 7.01 Java version - What would be my options ?
    - Can I use any other SAP specific java methodologies (Abstract Portal Components, JSPDynpage, EJBs, etc) to achieve this ?
    - To use WD4A based Flash Islands - would it require BSP coding as well ?
    Please share some of your valuable experiences.
    Thank You,
    - Raj

Maybe you are looking for

  • One itunes account for many phones

    Hello, We are currently deploying iphones within our business and I need to know how best to install some apps on all phones. As you need an itunes account to download apps (free ones) is there a way to have one account (for the business) and this al

  • Is there a cheap or free good alternative program to Filemaker pro that will work on Mavericks and allow me to open FM databases from version 7?

    I recently switched from a power pc (2004 I think) to a MacBook Pro, and had to upgrade so much. My old system was running Filemaker pro 7. I really need a good database program for my work (freelance/self-employed), and have forked out so much money

  • Multiple Contribute Admin Accounts

    Hey, I am trying to use Contribute to edit a Template file made in Dreamweaver for an HTML email. I know its not the best way of doing things, but all the office need to do is change the text, so its working just fine except for CSS. I have found tha

  • Expert Advice - For Non Cumulative

    Experiencing performance issue with Non-*** and lookiong for guidance. I have following data in cube -Non- *** based on Calendar Day ( Its a custom non-*** cube) Cube Data Material             Day         Quantity M1                    11/25        2

  • Lion seems to have added calendars I don't want

    Since upgrading to Lion many things I don't like have happened. Wish I had not done so, except for the nice brushed aluminum log-in screen. But in any case, a whole bunch of calendars have been added to my iCal that I do not want.  It doesn't seem I