What is Style Property in BPC?

Anybody can please explain what is STYLE PROPERTY in BPC?

Hi there,
The Style property enabled you to flag certain dimension members so you can apply formatting to them in your EVDRE reports later on. It works a bit like a CSS file for HTML - you can say your input entities are "level 1", and their parents are "level 2", for example, and when you write your reports later on you can use dynamic formatting to treat these differently (with bold type-face or a different colour/size font, for example).
Page 32 of the admin guide gives more details on this, too.
Hope that helps!
Jason

Similar Messages

  • What is it supported in BPC about SSIS pkg

    I have some problems implementing SSIS dtsx for BPC.
    A package with a sequenct container, or with a user variable to use to setting a property, or with a task to call another dtsx doesn't function!.
    Does exist any technical documentation (not a user guide, please!) that describes what it is supported in BPC about SSIS dtsx?
    Many thanks.

    Craig,
    You can do Partition in AS DB.
    There was a bug in AS that didn't keep partititon information but it was fixed.
    Please try it.
    Also you can find How to document in here.
    http://wiki.sdn.sap.com/wiki/display/BPX/EnterprisePerformanceManagement%28EPM%29How-to+Guides
    Hope it will help you.
    James Lim

  • Inline text-shadow style property missing

    Hi, I'm wondering if anyone has come across this as I'm at a loss trying to debug it.
    I create a composition with text that has a text-shadow. The text shadow is there when I preview in IE11. I upload to my own site and it works fine.
    Update: I've checked the composition in the LCMS on other browsers and the text-shadow is there. Looks like it could be an IE issue.
    However, when I upload to my clients LCMS, all works correctly, except there are no text-shadows. When I inspect the code produced, the inline text-shadow style property is missing i.e. it is not hard coded in! Everything else is as expected.
    In order to deploy the composition to my clients LCMS, I have to change some image url's but otherwise, there are no differences.
    I can't work out why the JavaScript is not writing the text-shadow to the elements.
    Does anyone know where I can put checks in my JS to see what is happening?
    Thanks for any help.
    Cheers,
    Patrick

    Of course, text shadows are not supported in IE9 in particular. I am not sure whether filter is still supported though. You might want to check that out.
    Try using filter instead in your css code like:
    filter: progid:DXImageTransform.Microsoft.Shadow(color=#000000,direction=45);
    Note: keep text-shadow for the other browsers too.
    Hope it works but I make no promise.

  • How do I make this custom Style property work correctly?

    I'm trying to create a CSS style property that expects an
    mx:Effect object to be used in a custom AS class. I want to detect
    changes being made to the style property and assign the specified
    effect to an effect trigger belonging to a child of my custom
    component.
    Unfortunately, the specified mx:Effect object seems to be
    interpreted as a string instead of an mx:Effect object. Can anyone
    tell me what I need to correct for this to work as expected?
    You can see the compiled example
    here
    and review the source code below. It fails due to a
    "TypeError: Error #1034: Type Coercion failed: cannot convert
    "myTestEffect" to mx.effects.Effect.Style" in the custom
    components styleChanged function at the bottom of this post.
    EffectTest.mxml:
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application
    xmlns:mx="
    http://www.adobe.com/2006/mxml"
    xmlns:myComps="myComponents.*"
    layout="absolute"
    viewSourceURL="srcview/index.html"
    >
    <mx:Fade id="myTestEffect" alphaFrom="0.0" alphaTo="1.0"
    duration="1000"/>
    <mx:Style>
    MyCustomPanel {
    testEffect: myTestEffect;
    </mx:Style>
    <myComps:MyCustomPanel/>
    </mx:Application>
    myComponents/MyCustomPanel.as:
    package myComponents
    import mx.containers.Panel;
    import mx.effects.Effect;
    import mx.controls.Alert;
    [Style(name="testEffect", type="mx.effects.Effect",
    inherit="no")]
    public class MyCustomPanel extends Panel
    public function MyCustomPanel()
    super();
    override public function styleChanged(styleProp:String):void
    var allStyles:Boolean = !styleProp || styleProp ==
    "styleName";
    super.styleChanged(styleProp);
    if (allStyles || styleProp == "testEffect")
    var theTestEffect:Effect = getStyle("testEffect");
    if (theTestEffect)
    Alert.show("Effect assignment successful");

    Thanks for the quick response! I will definitely take your
    advice to work around the problem but your answer leads to more
    questions.
    I can specify effects via an instance when assigning them to
    effect triggers and it works without a problem, as seen below. How
    does it handle this at compile time?
    <mx:Fade id="rollOverFadeUp" alphaFrom="0.35"
    alphaTo="1.0" duration="250"/>
    <mx:Fade id="rollOutFadeDown" alphaFrom="1.0"
    alphaTo="0.35" duration="250"/>
    <mx:Style> // this is an external .css file in my app
    TextInput {
    rollOverEffect: rollOverFadeUp;
    rollOutEffect: rollOutFadeDown;
    </mx:Style>

  • Setting skinclass style property of ViewNavigator causes runtime error

    Hi,
    I am building a mobile app with Flash Builder 4.5. the project is of type ViewNavigatorApplication. What I want to do is to add an image as a background to all the Views. In a previous email I was told to add the image as a child to a customized  ViewNavigatorSkin in the createChilder() method.
    So since the ViewNavigator is instantiated inthe ViewNavigatorApplicationSkin, i created two customized skins one for the ViewNavigatorApplication and one for the ViewNavigator.  In the new customized skin (I called it Whateverskin)  that I subclassed from ViewNavigatorApplication skin I added the following line to set the the style skinclass property of the navigator instance like this:
    navigator = new ViewNavigator();
    navigator.id = "navigator";
    navigator.setStyle("skinClass","MySkins.MyViewNavigatorSkin"); // setting my own customized skin for the ViewNavigator
    But the application breaks as soon as the "skinClass" property style is set. I get the following debugger errors.I don't understand the first error message, complaining that "Whateverskin2.navigator" cannot be found, because the number "2" appended to the end of the name of the skin class "Whateverskin" is being done by Flex. My skin class is named "Whateverskin.as" no "Whateverskin2.as". So I don't know what is going on.
    Any idea?
    thanks
    Error: Skin for TastingNotes0.WhateverSkin2.navigator cannot be found.
        at spark.components.supportClasses::SkinnableComponent/attachSkin()[E:\dev\hero_private\fram eworks\projects\spark\src\spark\components\supportClasses\SkinnableComponent.as:698]
        at spark.components.supportClasses::SkinnableComponent/validateSkinChange()[E:\dev\hero_priv ate\frameworks\projects\spark\src\spark\components\supportClasses\SkinnableComponent.as:44 3]
        at spark.components.supportClasses::SkinnableComponent/createChildren()[E:\dev\hero_private\ frameworks\projects\spark\src\spark\components\supportClasses\SkinnableComponent.as:406]
        at spark.components::SkinnableContainer/createChildren()[E:\dev\hero_private\frameworks\proj ects\spark\src\spark\components\SkinnableContainer.as:879]
        at mx.core::UIComponent/initialize()[E:\dev\hero_private\frameworks\projects\framework\src\m x\core\UIComponent.as:7624]
        at spark.components.supportClasses::ViewNavigatorBase/initialize()[E:\dev\hero_private\frame works\projects\mobilecomponents\src\spark\components\supportClasses\ViewNavigatorBase.as:6 42]
        at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\hero_private\frameworks\pr ojects\framework\src\mx\core\UIComponent.as:7485]
        at mx.core::UIComponent/addChild()[E:\dev\hero_private\frameworks\projects\framework\src\mx\ core\UIComponent.as:7166]
        at MySkins::WhateverSkin/createChildren()[C:\Users\mmesarin\Documents\Comparing-Platforms\Fl ex4.5\Code\TastingNotes\src\MySkins\WhateverSkin.as:119]
        at mx.core::UIComponent/initialize()[E:\dev\hero_private\frameworks\projects\framework\src\m x\core\UIComponent.as:7624]
        at mx.core::UIComponent/http://www.adobe.com/2006/flex/mx/internal::childAdded()[E:\dev\hero_private\frameworks\pr ojects\framework\src\mx\core\UIComponent.as:7485]
        at mx.core::UIComponent/addChild()[E:\dev\hero_private\frameworks\projects\framework\src\mx\ core\UIComponent.as:7166]
        at spark.components.supportClasses::SkinnableComponent/attachSkin()[E:\dev\hero_private\fram eworks\projects\spark\src\spark\components\supportClasses\SkinnableComponent.as:692]
        at spark.components.supportClasses::SkinnableComponent/validateSkinChange()[E:\dev\hero_priv ate\frameworks\projects\spark\src\spark\components\supportClasses\SkinnableComponent.as:44 3]
        at spark.components.supportClasses::SkinnableComponent/createChildren()[E:\dev\hero_private\ frameworks\projects\spark\src\spark\components\supportClasses\SkinnableComponent.as:406]
        at spark.components::SkinnableContainer/createChildren()[E:\dev\hero_private\frameworks\proj ects\spark\src\spark\components\SkinnableContainer.as:879]
        at spark.components::Application/createChildren()[E:\dev\hero_private\frameworks\projects\sp ark\src\spark\components\Application.as:1274]
        at mx.core::UIComponent/initialize()[E:\dev\hero_private\frameworks\projects\framework\src\m x\core\UIComponent.as:7624]
        at spark.components::Application/initialize()[E:\dev\hero_private\frameworks\projects\spark\ src\spark\components\Application.as:1259]
        at spark.components.supportClasses::ViewNavigatorApplicationBase/initialize()[E:\dev\hero_pr ivate\frameworks\projects\mobilecomponents\src\spark\components\supportClasses\ViewNavigat orApplicationBase.as:762]
        at TastingNotes/initialize()
        at mx.managers.systemClasses::ChildManager/childAdded()[E:\dev\hero_private\frameworks\proje cts\framework\src\mx\managers\systemClasses\ChildManager.as:189]
        at mx.managers.systemClasses::ChildManager/initializeTopLevelWindow()[E:\dev\hero_private\fr ameworks\projects\framework\src\mx\managers\systemClasses\ChildManager.as:359]
        at mx.managers::SystemManager/initializeTopLevelWindow()[E:\dev\hero_private\frameworks\proj ects\framework\src\mx\managers\SystemManager.as:3063]
        at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::kickOff()[E:\dev\hero_private\frameworks\proje cts\framework\src\mx\managers\SystemManager.as:2849] 
        at mx.managers::SystemManager/http://www.adobe.com/2006/flex/mx/internal::preloader_completeHandler()[E:\dev\hero_privat e\frameworks\projects\framework\src\mx\managers\SystemManager.as:2729] 
        at flash.events::EventDispatcher/dispatchEventFunction() 
        at flash.events::EventDispatcher/dispatchEvent() 
        at mx.preloaders::Preloader/timerHandler()[E:\dev\hero_private\frameworks\projects\framework \src\mx\preloaders\Preloader.as:542] 
        at flash.utils::Timer/_timerDispatch() 
        at flash.utils::Timer/tick()

    Nikos,
    if you ever find the what the problem is let me know please.
    Also I found a better way to display my background image.
    The engineers at Adobe told me that it is better to subclass SkinabbleComponentSkin add my image there as a child in the createChildren() method and then set the the skinClass style property of  a View as a CSS class selector like this.
    <fx:Style>
    @namespace s "library://ns.adobe.com/flex/spark"; 
    s|View
    skinClass: ClassReference("MySkins.MyViewSkin");}
    </fx:Style>
    And this worked.

  • What CSS styles affect the background color of new suite bar?

    There is a new suite bar in O365. What CSS styles affect the background color of the bar, app launcher button and the Office 365 text in SharePoint Online? I want to hide Office 365 text and add my logo there.

    Hi,
    What new suite bar did you refer to?
    Please check if this image below is what you referred to:
    If yes, please note in this forum we mainly discuss questions and feedbacks about the Office client products, as your question is not about our products, I suggest you post the question in Office 365 Community Forum to get support:
    http://community.office365.com/en-us/f/default.aspx
    The reason why we recommend posting appropriately is you will get the most qualified pool of respondents, and other partners who read the forums regularly can either share their knowledge or learn from your interaction with us. Thank you for your understanding.
    If I misunderstood anything, feel free to let me know.
    Regards,
    Melon Chen
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • New App Launcher Suite Bar in 365: what CSS styles affect the background color?

    There is a new suite bar in O365. What CSS styles affect the background color of the bar, app launcher button and the Office 365 text in SharePoint Online? I want to hide Office 365 text and add my logo there.

    Hi,
    Per my understanding, you might want to change the style of the suite bar and replace the “Office 365” text with your custom logo image.
    In Office 365 admin page, we can customize the theme of the suite bar for the whole :
    However, as there is no such option can replace the “Office 365” text with a custom icon there, a workaround is that we can use some custom JavaScript to modify the
    corresponding HTML source code to display the icon dynamically after the page loaded.
    After applying the code snippet below into the master page:
    <script type="text/javascript">
    _spBodyOnLoadFunctionNames.push("ready");
    function ready() {
    var logo = document.querySelector("#O365_MainLink_Logo");
    var s = '<img style="max-height: 27px" alt="logo" src="/_layouts/15/images/siteIcon.png?rev=38">';
    logo.innerHTML = s;
    </script>
    Every time when users open a page in this site, this custom code will be executed, the “Office 365” text will be replaced by a custom icon:
    More information about how to add custom code into master page(similar in SharePoint 2013):
    http://techtrainingnotes.blogspot.com/2012/05/adding-javascript-and-css-to-sharepoint.html
    What’s more, if doing in this way, we can only replace the “Office 365” text with a custom icon in Office 365 SharePoint Online sites, not the whole Office 365, this
    is a fact that you might want to know. For about how to replace that text for the whole organization, I suggest you open another thread in Office 365 forum, you will get more help and confirmed answers there.
    http://community.office365.com/en-us/forums/default.aspx
    Best regards      
    Patrick Liang
    TechNet Community Support

  • What is singleton property in Webdynpro

    Hi,
    What is singleton property in Webdynpro?
    please explian along with diagram
    Regards,
    Sid.

    hi,
    Singleton Nodes
    •     It is very important to remember the difference in runtime behaviour between a singleton node and a non-singleton node. When a node is declared to be singleton, there will only ever be only one instance of that node-irrespective of the number of elements found in the parent node’s element collection. This is not the case for the non-singleton node. In this case, there will be as many instances of the non-singleton child nodes as there are elements in the parent node’s element collection.
    •     The significant point here is that when the lead selection in the parent element collection changes, the contents of the singleton child node become invalid. Consequently, the next time data is required from the singleton child node, the entire element collection must be rebuild in order that it match the data in the newly selected parent element.
    •     The task of rebuilding singleton child node must be performed by a dedicated supply function.
    [http://help.sap.com/saphelp_nw70/helpdata/EN/81/95384162316532e10000000a1550b0/frameset.htm]
    regards,
    pinki

  • Active style  Property in tab canvas - forms 10g

    Hi ,
    I have develop form in 10g and it has tab canvas, i set the active style property to bold .
    but in runtime it doesn't show the bold font in the tab title .
    please help out.
    Regrads
    Mani

    Please ...some body respond me with some suggestion..
    ???????????????????

  • Does anyone know what the entity property of the currency dimension does?

    Hi,
    I'm trying to figure out what the Entity property of the Currency dimension does.  All the online documentation I can find has the definition below which is not all that useful.  Has anyone uses this before and know how it can be used?
    Thanks,
    Morgan
    Online definition
    A 32-character field that can either be left blank or contain a valid
    member name of the entity dimension associated to the current model. The ENTITY property is
    validated against the entity dimension, and blank fields are allowed.

    Sounds like it provides one (extra) internet phone number that goes to their servers first. Then it could work like this:
    1) If you have the app running on your phone (oops, no background processing... perhaps this will be one of the first tests of background notifications), it uses the GPS to tell the server if you're near a landline that you've previously registered with it. If so, their server redirects the call to the landline phone.
    2) While you're on a call, you can start a conference call that includes the alternative phone (landline or iPhone) and then hang up on the old one. That would give a "seamless" switchover.

  • Changing the Alert style Property Dynamically

    hI..
    Is there any way to change the Alert Style Property Dynamically.... if there please tell me its urgent
    thnks in advance
    Regards
    Yashavanth

    yes, u can change properties dynamically through set_alert_property and set_alert_button_property
    here is an example
    DECLARE
    err_txt VARCHAR2(80) := Error_Text;
    al_id Alert;
    al_button Number;
    BEGIN
    al_id := Find_Alert('My_Error_Alert');
    Set_Alert_Property(al_id, alert_message_text, err_txt );
    al_button := Show_Alert( al_id );
    END;

  • Hello, I want to post about adobe color on my blog.. so can I know what is performance property of adobe color??

    hello, I want to post about adobe color on my blog.. so can I know what is performance property of adobe color??

    Just as of late I noticed that Apple Stores are selling security cameras that work with their app on an iPhone. Very expensive but it uses both WiFi when local and cellular when not at home.
    In your case I would check the apple store and see if there is a free or paid app to access your home closed circuit TV system. The cameras have to have their own ip address so you then need only enter that and access will be available to you. But they must be on your home network.
    a lot of the higher end CCTV systems have a free app that can be used like the new Apple Security system.
    Just Google it or check the store.
    Good Luck

  • What is associative property and Dependency ?

    I want to know what is associative property between two classes?
    What is called dependency between two classes?
    regards,
    namanc

    Is this about different forms of dependecies?
    Well, two classes can be associated by fields, like for example both stores a name. You can use the name stored in an object of one class to get the corresponding object of the other class. The name forms an association between the classes. This is a very loose dependency. A tighter dependency is when one class uses another class, meaning one class is part of another class' definition. Even tighter still is when a class extends another class so they become part of the same class hierarchy.

  • Field's style property question(from sec page)

    hi,
    i am trying to change the style of a particular column on a grid by using the 'style' property. this works fine from the standard page/subpage button fieldchange pplcode, but has no effect when I set the style from a fieldchange pplcode of a button located in a 'secondary page'. does secondary page not allow such field properties to trigger. is there a workaround or am i missing something specific to sec pages ?
    please help....

    can anyone pls reply....

  • How does one change XY Graph Plot.Style property defaults OR Change the Properties od Individual Plots?

    I have an XY graph with a variable (known) number of multiple plots. Because the number of plots can vary, the plot style is sometimes not what I want. I'm trying to use a property node in a for-loop to change the Plot.LineStyle, Plot.PointStyle, and Plot.Fill/PtColor properties for each of the plots in an XY graph. However, perhaps because the names are not static, the colors do not seem to be updating as I'd like, and I'm really unsure as to why this is happening. Strangely, the LineStyle and PointStyle do seem to be updating as I'd like.
    Please see the attached ScatterColors.zip file which contains the main VI in question (SplitInGroupsScatterByOrder.vi) and two sub-VIs on which it depends. Thanks in advance for your help
    Solved!
    Go to Solution.
    Attachments:
    ScatterColors.zip.zip ‏32 KB

    Hello Pierre,
    This dynamic color feature is still not present in 2009, much less 6.1. I have linked a discussion forum post here that discusses in detail a work around for addiing this functionality. While you may not be able to open their example VIs, the theory is described; such that, you may attempt to replicate in 6.1. 
    Hope this helps. 
    Patrick Corcoran
    Application Engineering Specialist | Control
    National Instruments

Maybe you are looking for

  • Access violation error with 1.4.0

    Our client/server application (RMI) ran fine in 1.3.1. When we compiled and deployed with 1.4.0, an error of "access violation" were thrown by Windows NT or Windown 2000 at run time. Stack trace posted as below. Anyone has any ideas on the cause of i

  • Importing a 900 page MS-Word document to InDesign CS 6

    The Word document has course descriptions of all the classes offered at a community college. The need is to have two columns(textboxes of equal size) in each page of the InDesign document and then bring the information from the Word document to InDes

  • Database functions without using a database

    I think I should have posted this here instead of on the basics are. Anyway here is my problem. I'm creating a little standalone program that needs to have database like functions. The program needs to store data fields like names, titles, etc. that

  • Activated Adobe Encore CS6 from Production Premium CS6 suite, closes with Trial Expired error

    Good day, We have customer owning 10 Adobe Production Premium CS6 packages. And he expiriencing huge problem, after activation, sometimes it was offline cause Workstations were moved from one location to another without internet, and we were forced t

  • Is there a limit to how many USB/Fire devices you can connect?

    I don't like the idea of having limited USB/Firewire inputs as I plan on having a ... 1). USB audio interface for Logic Express 2). USB connector for both an HD camcorder and a Nikon camera (although I most likely will switch between the two) 3). dig