Create a dashboard with moving display like stocks prices

hi all!
I was thinking if we can create a dashboard/ report with moving displays like stock prices, just like in TV we see the data moving showing the prices.
I highly appreciate for any reply.
Thanks,
Ravi

Hi,
where is my points... Mark helpful or correct for answers... so the user know whats right and i will get points...
Regards
Naresh
Edited by: Naresh Meda on Dec 30, 2008 10:50 PM

Similar Messages

  • How to create an application with a 'Windows' like interface?

    Hi,
    I am trying to create an application with an windows like interface where menu selections need to open bound taskflows in a page/window but i can not get it to work. I did the following
    - i created a page template with a panelStretchLayout
    - added a menuBar with commandMenuItems
    - created a start page based on the template
    - created bound taskflows with page fragments for all menu items
    - placed a dynamic region on the start page which initially shows a taskflow with an empty/blank page fragment
    - change the dynamic region taskflow from every menuitem and added partial triggers on the dynamic region for every menu item
    When i run the application the first empty page fragment is showed correctly but when i select a menu item the correct new page fragment is showed but it keeps showing a loading data .... hint and seems to freeze. So no data is showed while the underlying datacontrols work while using the bc tester.
    Besides this problem i am wondering if i at all am going the right way with this with using a dynamic region? In the final application i will have a total of about 25 menu items over several menus and if they all will be showing in one main dynamic region with partial triggers set to all menu items it may get a bit complex? I saw you can also create a window in a popup which i like even more because it looks like an actual window but this is modal. I would like a bound taskflow to be opened whenever a menu selection is made.
    Any pointers or tips or the solution to not showing data?
    Kind Regards,
    Andre

    Hi Sascha,
    If have not encountered that problem. Are you sure you have a taskflow entry under the executables tag in the page definition of the page which has the dynamic region on it? I have one like this:
    <taskFlow id="dynamicRegion1" taskFlowId="${DynamicRegionBean.dynamicTaskFlowId}" xmlns="http://xmlns.oracle.com/adf/controller/binding"/>
    During the selection of its initial value when it is rendering for the first time it should have the session bean already initialized. My bean looks like this:
    public class DynamicRegion {
    private String taskFlowId = "/WEB-INF/startTF.xml#startTF";
    public DynamicRegion() {
    public TaskFlowId getDynamicTaskFlowId() {
    return TaskFlowId.parse(taskFlowId);
    public String feitenTF() {
    taskFlowId = "/WEB-INF/feitenTF.xml#feitenTF";
    return taskFlowId;
    public String themasTF() {
    taskFlowId = "/WEB-INF/themasTF.xml#themasTF";
    return taskFlowId;
    public String feitCategorienTF() {
    taskFlowId = "/WEB-INF/feitCategorienTF.xml#feitCategorienTF";
    return taskFlowId;
    The startTF is the initial taskflow and the other methods are being called from my menu. The dynamic region has the menu items as partial triggers. That is all i did.
    Kind Regards,
    Andre

  • How to deal with moving around like in gta2?

    Hi there,
    I'm programming an game but i was wondering how to deal with moving around like in gta2.
    my game is also top-down with you(tha player) constantly in the middle of the screen. I know how to deal with button press etc.. but how to calculate how manny pixels the map has to move in the x and y axis...
    It's difficult to explain for me.. but hope the picture is clear..
    greetings

    I was afraid for this one already.. the picture is not clear:) thanx for your response so far.. I will try again.. with the game gta2 in mind:)
    see this screenie: http://www.vollversion.de/bilder/705_1_full.jpg
    My game looks the same as gta2 top down... with the character in the middle of the screen(the one firing the flame thwower )(the player). if i press up he walks towards the police car.. if i press left or right.. he only turns around(an combination of pressing up and left is also posible) thus the character walks in the direction he's facing.
    Now i would like to know how did they do this? how to programm such a movement? Because the character is standing constnatly in the middle of the screen the map has to move like in almost every game... how to calculate the x and y axis movement of the map?
    Please.. try agian.. hopefully the screenie will help.

  • This will be my first time buying a laptop and I was thinking about the macbook pro with retina display but the price is a little to high I was wondering for any suggestions?  Like other ways to get it cheaper?

    This will be my first time buying a laptop and I was thinking about the macbook pro with retina display but the price is a little to high I was wondering for any suggestions?  Like other ways to get it cheaper?

    Actually you could get student discount from apple and a 10% dicksmith with limited time and I think jb hi fi gives even better discount. But lets see what other people think?

  • How to create a dashboard with multiple prompts ?????

    Dear All,
    I need to design a dashboard with multiple prompts, which has been desined from webi.
    Ex: i have a prompts of year,sales manager and promotions has prompts in webi report.
    I am trying to create a dashboard on top of this webi report; i am also using live office.
    how can i design this dashboard with mutiple prompts.
    any doc's are links which is related to this topic will be a great help.
    Thanks in advance.
    Regards,
    Suman

    Dear Praveen,
    Thanks for your suggestion; i hope we need some third party tool for multiple selection.
    But i need to know which kind selectors i can use from the components for multiple selection.
    question 1:
    Ex:
    I have prompt for year;
    scenario 1: i need to filter the year by 2001,2002,2003.
    or
    scenario 2: need to filter the year by only one year 2001.
    question 2:
    I have created a dashboard on top of webi report; but i have filter for the year in from to value's.
    Ex:
    Year is from 2001 - 2009.
    when i am enabling this prompt in xcelsius i cannot see from and to option; how should i design this one.
    Regards,
    Suman

  • How can i create a button with richText display instead of label

    Hi All,
    I'm trying to create a button that will look exactly as the regular spark button but will have more than one color in his label (Like attached 'buttonPic.jpg')
    I have tried to create a new button skin and new button component that will replace the label text and will to the job, but still it looks like the button original class overides the richText definitions. (Code attached)
    Maybe there is other solution?
    This is my extra code in the MyButtonSkin
         <!-- layer 8: text -->
        <!---
        @copy spark.components.supportClasses.ButtonBase#labelDisplay
        -->
        <s:Label id="labelDisplay"
                 visible="false">
        </s:Label>
        <s:RichText id="exLabelDisplay"
                    color="0x900000"
                    textFlow="{TextConverter.importToFlow(htmlTextAsHTML, TextConverter.TEXT_FIELD_HTML_FORMAT)}"
                    left="7" right="7" top="2" bottom="2">
        </s:RichText>
        <fx:Declarations>
            <fx:String id="htmlTextAsHTML"><![CDATA[<p><b>0</b>+</p>]]></fx:String>
        </fx:Declarations>

    Hi mewk,
    probably it was a catch due to eyes that actually got a bit of sleep
    anyway small test app
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/halo" minWidth="1024" minHeight="768">
    <fx:Script>
    <![CDATA[
    protected function updateBtn_clickHandler(event:MouseEvent):void
    richbtn.label=mytext.text;
    ]]>
    </fx:Script>
    <s:Button id="richbtn" x="69" y="58" width="169" height="83" skinClass="ButtonSkin1" label="&lt;p&gt;hello&lt;/p&gt;&lt;p&gt;goodbye&lt;/p&gt;"/>
    <s:Button x="70" y="333" label="Update rich button" id="updateBtn" click="updateBtn_clickHandler(event)"/>
    <s:TextArea x="69" y="174" id="mytext" text="&lt;p&gt;hello&lt;/p&gt;&lt;p&gt;&lt;b&gt;bold&lt;/b&gt;&lt;/p&gt;"/>
    </s:Application>
    and a skin with minimal change
    <?xml version="1.0" encoding="utf-8"?>
    <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"
                 xmlns:fb="http://ns.adobe.com/flashbuilder/2009" minWidth="21" minHeight="21" alpha.disabled="0.5">
        <fx:Metadata>
            <![CDATA[
            [HostComponent("spark.components.Button")]
            ]]>
        </fx:Metadata>
        <fx:Script fb:purpose="styling">
            <![CDATA[        
    import flashx.textLayout.conversion.TextConverter;
                static private const exclusions:Array = ["labelDisplay"];
    override public function get colorizeExclusions():Array {return exclusions;}
              override protected function initializationComplete():void
                    useBaseColor = true;
                    super.initializationComplete();
    override protected function updateDisplayList(unscaledWidth:Number, unscaledHeight:Number) : void
                    var cr:Number = getStyle("cornerRadius");
                    if (cornerRadius != cr)
                        cornerRadius = cr;
                        shadow.radiusX = cornerRadius;
                        fill.radiusX = cornerRadius;
                        lowlight.radiusX = cornerRadius;
                        highlight.radiusX = cornerRadius;
                        border.radiusX = cornerRadius;
                    if (highlightStroke) highlightStroke.radiusX = cornerRadius;
                    super.updateDisplayList(unscaledWidth, unscaledHeight);
                private var cornerRadius:Number = 2;
            ]]>       
        </fx:Script>
        <!-- states -->
        <s:states>
            <s:State name="up" />
            <s:State name="over" />
            <s:State name="down" />
            <s:State name="disabled" />
        </s:states>
        <!-- layer 1: shadow -->
        <s:Rect id="shadow" left="-1" right="-1" top="-1" bottom="-1" radiusX="2">
            <s:fill>
                <s:LinearGradient rotation="90">
                    <s:GradientEntry color="0x000000"
                                     color.down="0xFFFFFF"
                                     alpha="0.01"
                                     alpha.down="0" />
                    <s:GradientEntry color="0x000000"
                                     color.down="0xFFFFFF"
                                     alpha="0.07"
                                     alpha.down="0.5" />
                </s:LinearGradient>
            </s:fill>
        </s:Rect>
        <!-- layer 2: fill -->
        <s:Rect id="fill" left="1" right="1" top="1" bottom="1" radiusX="2">
            <s:fill>
                <s:LinearGradient rotation="90">
                    <s:GradientEntry color="0xFFFFFF"
                                     color.over="0xBBBDBD"
                                     color.down="0xAAAAAA"
                                     alpha="0.85" />
                    <s:GradientEntry color="0xD8D8D8"
                                     color.over="0x9FA0A1"
                                     color.down="0x929496"
                                     alpha="0.85" />
                </s:LinearGradient>
            </s:fill>
        </s:Rect>
        <!-- layer 3: fill lowlight -->
        <s:Rect id="lowlight" left="1" right="1" bottom="1" height="9" radiusX="2">
            <s:fill>
                <s:LinearGradient rotation="90">
                    <s:GradientEntry color="0x000000" alpha="0.0099" />
                    <s:GradientEntry color="0x000000" alpha="0.0627" />
                </s:LinearGradient>
            </s:fill>
        </s:Rect>
        <!-- layer 4: fill highlight -->
        <s:Rect id="highlight" left="1" right="1" top="1" height="9" radiusX="2">
            <s:fill>
                <s:SolidColor color="0xFFFFFF"
                              alpha="0.33"
                              alpha.over="0.22"
                              alpha.down="0.12" />
            </s:fill>
        </s:Rect>
        <!-- layer 5: highlight stroke (all states except down) -->
        <s:Rect id="highlightStroke" left="1" right="1" top="1" bottom="1" radiusX="2" excludeFrom="down">
            <s:stroke>
                <s:LinearGradientStroke rotation="90" weight="1">
                    <s:GradientEntry color="0xFFFFFF" alpha.over="0.22" />
                    <s:GradientEntry color="0xD8D8D8" alpha.over="0.22" />
                </s:LinearGradientStroke>
            </s:stroke>
        </s:Rect>
        <!-- layer 6: highlight stroke (down state only) -->
        <s:Rect left="1" top="1" bottom="1" width="1" includeIn="down">
            <s:fill>
                <s:SolidColor color="0x000000" alpha="0.07" />
            </s:fill>
        </s:Rect>
        <s:Rect right="1" top="1" bottom="1" width="1" includeIn="down">
            <s:fill>
                <s:SolidColor color="0x000000" alpha="0.07" />
            </s:fill>
        </s:Rect>
        <s:Rect left="2" top="1" right="2" height="1" includeIn="down">
            <s:fill>
                <s:SolidColor color="0x000000" alpha="0.25" />
            </s:fill>
        </s:Rect>
        <s:Rect left="1" top="2" right="1" height="1" includeIn="down">
            <s:fill>
                <s:SolidColor color="0x000000" alpha="0.09" />
            </s:fill>
        </s:Rect>
        <!-- layer 7: border - put on top of the fill so it doesn't disappear when scale is less than 1 -->
        <s:Rect id="border" left="0" right="0" top="0" bottom="0" width="69" height="20" radiusX="2">
            <s:stroke>
                <s:LinearGradientStroke rotation="90" weight="1">
                    <s:GradientEntry color="0x000000"
                                     alpha="0.5625"
                                     alpha.down="0.6375" />
                    <s:GradientEntry color="0x000000"
                                     alpha="0.75"
                                     alpha.down="0.85" />
                </s:LinearGradientStroke>
            </s:stroke>
        </s:Rect>
        <!-- layer 8: text -->
    <s:RichText id="LabelDisplay"
    color="0x900000"
    textFlow="{TextConverter.importToFlow(hostComponent.label, TextConverter.TEXT_FIELD_HTML_FORMAT)}"
    left="7" right="7" top="2" bottom="2">
    </s:RichText>   
    </s:SparkSkin>

  • Create custom folders with custom icons like created by Vibe

    I would like to create a custom folder and sub folder in the GW folder list to link to an outside feature. Ideally, it would display in a custom pane on the right like the email list, forum plugin or calendar view.

    You might want to have a look at Russ Ward's WS Utilities: http://weststreetconsulting.com/WSC_Utils.htm
    ImpGraph by the late Bruce Foster also did most of this, but is no longer available.
    Steve Kubis' AutoText may also provide part of the solution (custom sized Anchored Frames): see: http://www.siliconprairiesoftware.com/Products.html
    You can also create custom anchored frames on your Reference pages and then copy & paste from there. Automatically scaling an imported file to properly fit would require a custom FrameScript or plug-in - FM's auto-scaling on import may distort your graphic.

  • Creating a Dashboard with Stored Procedure

    Hello Experts
    I have a doubt. I'm starting to develop Dashboards for SAP b1.
    How do I pass a parameter for a procudure and can operate in DashBoard?
    I am using the example below, where the procudure brings the total billed a certain seller.
    Ex: Exec Dash03 (SELECT T0 [SlpName] FROM OSLP T0 WHERE T0 [SlpName] = '[% 0]')

    Hi SumanT
    I've never used the ITD (not sure how it works). Today I want to integrate the Dashboard to SAP Business One, and for this to work, it is necessary that within SAP B1 there is a query that results to feed the DashBoard.
    I tried using a variable to receive the name of the seller, and then pass the variable to the stored procedure, but still did not work out.

  • Can I create a Dashboard in CRM OD that Displays The Periodic Revenues?

    Hi,
    I would just like to ask how to create a Dashboard Report that displays Sales Revenues on a Monthly Basis?
    Currently, our company is displaying revenues on a per quarter or per fiscal year basis. However, the sales people wants to fine tune the display into monthly basis.
    What triggers should I activate in order to display the revenues as per the desired report?
    Appreciate your inputs. Thanks.
    - Tony

    There are several ways to do this. The third chapter in the
    cookbook is a good place to start.
    All things in ActionScript are based on objects. Constructing
    them with the data needed for the ui information you will need and
    then binding that data to your dashboard objects is basically what
    you are going to be doing.
    For me it makes the most sence to have an idea of what
    different types of objects you will be creating and create some
    extended components for those objects. Then when you recieve your
    data, binary or xml, you can digest the configuration settings from
    the layout and populate the constructor for each of your
    components.
    It sounds like you need to organize your layout structure in
    a heirarchy and from that you can walk each branch and create each
    set of things as you parse your data.
    Without a bit more information as to what you are
    specifically doing that is about as far as I can go minus adding in
    some code along some line that I think might work.
    Hope that helps some.
    -D

  • Create Delivery with reference to seasonal stock transport order

    Hello Gurus
    How do we create a delivery with respect to seasonal stock transport order, in R/3 4.7.
    Thanks in advance

    Any answers/suggestion please

  • Creating a PO with out hitting any Accounts

    Hi Gurus,
    We have a business scenario where they accept goods from different companies for free (like donations) and we have to accept them and take them into our inventory.
    One of our approach was to create a PO and then create a GR with reference to a PO. But the issue was, in this process some of the accounts are getting hit, which the client dont want. only revenue account has to hit and the material should get updated in the warehouse.
    Our second thought was to create a PR and send the PR to the donor and while creating a GR using 501 (without PO). but here the end user has to do a lot of updations in the GR document (for example if they have 100 line items the work is going to be tedious)
    Any thoughts of work around for this kind of scenarios would be highly appreciated.
    thanks
    Shane

    u have 2 options
    create  amterial master with price control indicator standrd and maintin the price of mateirial in account view now create a po with free line itme and do the gr now in this case sytem will create a accounting document and it post the amount to the stock account Dr.
    and no gr/ir  account hit will happen as it is a free itme so there is no question of paying any amount to vendor
    u can also use movement type 511 to do the gr for that free good
    option 2  create  am material with moving average price in this case if u do the gr then  system will not create any account document but point to note here is the price will become then zero in material master as map means latest price is updated in matreial master

  • Creating a .fmb with out using form builder

    Hi
    I am having a template to create form modules in the forms builder, for the most of the forms I need not change any
    of the PL/SQL code provided by the template. (All my business logic and information regading items in object navigator resides in the database) The only thing that I need to do is creation of fields in object navigator and provide the
    sub class information for it. So I felt that It's better to have a tool which generats the requried .fmb file if the all
    field details are stored in a table.
    While expermenting on that we came to know that there are some functions provided by Oracle Developer6.0 that creates all
    objects in the object navigator using a C program. These programs requires some header file, most of which are provided by
    Oracle developer6.0 and some are missing.
    Pls. let me know if any one experimented
    Thanx & Regards
    ([email protected])

    u have 2 options
    create  amterial master with price control indicator standrd and maintin the price of mateirial in account view now create a po with free line itme and do the gr now in this case sytem will create a accounting document and it post the amount to the stock account Dr.
    and no gr/ir  account hit will happen as it is a free itme so there is no question of paying any amount to vendor
    u can also use movement type 511 to do the gr for that free good
    option 2  create  am material with moving average price in this case if u do the gr then  system will not create any account document but point to note here is the price will become then zero in material master as map means latest price is updated in matreial master

  • Saving Dashboard with a prompt value

    Hi ,
    I have created a dashboard with dashboard prompt having value as 1,2,3,4,5 . I want to save the dashboard with value 1 with name dashboard value1 , then with value 2 with name dashboard value2 and so on . Please suggest , if this is possible .

    Hi,
    Using Saved customization we can.
    Select prompt value 1 and apply, then add saved customization
    Page option -> Save current customization as 1
    like wise create saved customization for all 5 values.
    when ever u want to apply saved customized values page options -> apply saved customization ex: 1
    http://santoshbidw.wordpress.com/2012/03/30/obiee11g-save-current-customization
    correct me if am wrong..
    Thanks........

  • Creating a Widget with Xcode

    Does anyone know of a website that shows an easy way of creating a widget with Xcode? Like even if they have you build a test widget so i get the idea of how to do it? I'm completly new to programing so i would love to learn how.

    Xcode is not really meant for building widgets. Widgets are built primarily with html, css and javascript. You can code them by hand or you can get a copy of the recently released "Dashcode" beta.
    Dashcode is a development tool specifically for building widgets. It is supposed to be released along with Leopard but Apple recently released a beta that's supposed to run in Tiger (I haven't tried it yet). If you've signed up for a free online developer account at Apple Developer Connection you can logon and download the beta.
    Steve
    PS - by the way, if you go to Apple Developer Connection and do a search for "widget" you'll get some hits on Dashboard tutorials and programming guides (these are not geared toward "Dashcode" and should be useful even if you're handcoding your widget)

  • The quality of built-in camera on macbook pro with retina display is far worse than any other mac. Why?

    I just got the new macbook pro with retina display like a week ago and I've been noticing that the quality of the built-in camera on it is so bad.
    It's even worse than my 2009 iMac or my sister's 2012 13" macbook pro. I don't get why this is a facetime HD built-in camera when i can obviously see that is not even near HD. Or is it just my computer. Do i have to bring it to the apple store??

    it's advertised 720p so yes it is the same as all the other MBP.  it may just be the resolution of your monitor is stretching the pixels.  Don't worry about bringing it to the apple store. 

Maybe you are looking for

  • Starting out with JBI

    In an attempt to introduce myself to JBI, I looked for something relevant to my field (health) and found the video created by Raghunadh Teegavarapu at http://wiki.open-esb.java.net/attach/HL7BC/HL7BCInboundOriginalACKDemo.wmv As I tried to follow the

  • Laptop taking really long time to restart after battery drain

    Last night I had a weird experience with my mid-2011 MacBook Pro; I went out to dinner and came back to find the cat had kicked the power cord out, draining the battery. I've had this happen before and wasn't too worried; it's always just restarted a

  • K9NGM-L recognises PC6400 as PC5300

    Hi, I have a new MSI K9NGM-L mainboard, with 1Gb dual channel PC6400. When I boot my system, it shortly flashes some info. I managed to see it by pressing the pause button Problem is: it thinks I have PC5300 667MHz memory installed. But in fact it's

  • Selected pics in Bridge don't open in Fireworks batch process

    I am trying to do a batch process in Fireworks CS3, initiated from Bridge CS3. If I select images in Bridge, then select Tools/Photoshop/Image Processor, and then run the action, the selected photos in Bridge are then processed. However, trying a sim

  • Can't Like Or Dislike Comments On Youtube On Macbook Pro (Please Help!)

    Hi I would really love it if someone could help me with this one. I've been looking for an answer forever. I can like and dislike comments on youtube videos on every other device in my house but not on my Retina Macbook Pro. This started happening ab