Creating a delta graph

hello,
we are trying to create a graph that will show the changes from month to month, along the year.
example:
the data in the cube:
Jan - 12,
Feb - 20.
the graph will show:
Feb - 8.
Our best solution so far was to create a new cube that will save the same data on the next month and then we could divide the key figures and get the delta.
Does any one got a better solution?

Is this what you want:
Peter

Similar Messages

  • I would like to know how i can create a bell graph with out using sub VIs, the data that i created consists in 500 readings with values of 0 to 100, i calculated the mean value and standard diviation. I hope some one can help me

    I would like to know how i can create a bell graph with out using sub VIs, the data that i created consists in 500 readings with values of 0 to 100, i calculated the mean value and standard diviation. I hope some one can help me

    Here's a quick example I threw together that generates a sort-of-bell-curve shaped data distribution, then performs the binning and plotting.
    -Kevin P.
    Message Edited by Kevin Price on 12-01-2006 02:42 PM
    Attachments:
    Binning example.vi ‏51 KB
    Binning example.png ‏12 KB

  • How to create a pie graph in 10g or 9i forms using beans??

    Hi..
    Please can anyone show me how to use pie graphs in oracle 10g or 9i forms using bean?
    i also want to know how to put data in pie graph.. as u know in column graph for example we have an x-axis and y-axis,and in pie there is no x-axis and y-axis.. so how i can put the same data in pie graph.. and also i may need more than one value for the x-axis or the y-axis to use in pie graph so how can i do it??
    i use set_custom_property to call properties in beans.
    I would so thankful for how can answer me.. please its urgent
    Thanks.

    there are some other posts to this topic - How to create a pie graph in 10g or 9i forms using beans?? and so on.
    use the search function of this forum. this may the fastest way for your urgent question

  • Creating multiple Line Graph having common values..

    Hi...
    I've created one application process for creating Multiple Line Graph.
    And i've integreted two tables in this graph, where values may be common for both the tables. In this case, for common values, instead of getting overlapped I'm getting scattered graph(its totally abnormal). Please help me if you 've any idea about this issue.....?
    Please go through the App Process and the output of the SQL query.
    In output of the query, in the NAME column "Feb-2010" is common.
    This is the SQL query OUTPUT:_
    TABLE 1
    NAME VALUE
    Sept-2009 100
    Oct-2009 95
    Nov-2009 98
    Feb-2010 97
    TABLE 2
    NAME VALUE
    Jan-2010 93
    Feb-2010 100
    Mar-2010 98
    Application Process :_
    DECLARE
    BEGIN
    OWA_UTIL.mime_header ('text/xml', FALSE);
    OWA_UTIL.http_header_close;
    HTP.p ('<?xml version = "1.0" encoding="utf-8" standalone = "yes"?>');
    HTP.p ('<anychart>');
    HTP.p ('<settings>');
    HTP.p ('<animation enabled="True"/>');
    HTP.p ('</settings>');
    HTP.p ('<charts>');
    HTP.p ('<chart plot_type="CategorizedVertical">');
    HTP.p ('<data_plot_settings default_series_type="Line">');
    HTP.p ('<line_series>');
    HTP.p ('<marker_settings>');
    HTP.p ('<marker type="None" />');
    HTP.p ('<states>');
    HTP.p ('<hover>');
    HTP.p ('<marker type="Diamond" />');
    HTP.p ('</hover>');
    HTP.p ('</states>');
    HTP.p ('</marker_settings>');
    HTP.p ('<tooltip_settings enabled="True">');
    HTP.p ('<format>Year {%Name}{enabled:false} {%SeriesName} - {%Value}{numDecimals:0}%</format>');
    HTP.p ('</tooltip_settings>');
    HTP.p ('<effects enabled="True">');
    HTP.p ('<drop_shadow enabled="False" />');
    HTP.p ('<bevel enabled="true" distance="1" blur_x="2" blur_y="2" />');
    HTP.p ('</effects>');
    HTP.p ('<line_style>');
    HTP.p ('<line thickness="3" /> ');
    HTP.p ('</line_style>');
    HTP.p ('</line_series>');
    HTP.p ('</data_plot_settings>');
    HTP.p ('<chart_settings>');
    HTP.p ('<title enabled="true">');
    HTP.p ('<text>Avg. %App. Uptime per month </text>');
    HTP.p ('</title>');
    HTP.p ('<axes>');
    HTP.p ('<y_axis>');
    HTP.p ('<title>');
    HTP.p ('<text>Value</text> ');
    HTP.p ('</title>');
    HTP.p ('<scale minimum="90" maximum="101" major_interval="1" />');
    HTP.p ('<labels>');
    HTP.p ('<format>${%Value}{numDecimals:0}</format>');
    HTP.p ('</labels>');
    HTP.p ('<axis_markers>');
    HTP.p ('</axis_markers>');
    HTP.p ('</y_axis>');
    HTP.p ('<x_axis tickmarks_placement="Center">');
    HTP.p ('<title enabled="False" /> ');
    HTP.p ('</x_axis>');
    HTP.p (' </axes>');
    HTP.p ('</chart_settings>');
    HTP.p ('<data>');
    FOR ObjRecord IN (select DISTINCT(K_OBJECT.OBJECT_ID) as OBJECT_ID,name from K_OBJECT, K_OBJ_TYPE_ASP_REL where K_OBJECT.OBJECT_ID=K_OBJ_TYPE_ASP_REL.OBJECT_ID and K_OBJ_TYPE_ASP_REL.OBJECT_TYPE_ID=1)
    LOOP
    HTP.p ('<series name="'|| ObjRecord.name ||'">');
    FOR MonthlyValueRecord IN (select NAME,VALUE
    from K_REPORT_RUN,K_ASPECT_VALUES,K_ASP_TIM_RPT_REL
    where K_REPORT_RUN.RUN_ID=K_ASP_TIM_RPT_REL.RUN_ID
    and
    K_ASPECT_VALUES.ASPECT_VALUE_ID=K_ASP_TIM_RPT_REL.ASPECT_VALUE_ID
    and
    K_ASP_TIM_RPT_REL.ASPECT_ID=1
    and
    K_ASP_TIM_RPT_REL.OBJECT_ID=ObjRecord.OBJECT_ID
    order by K_REPORT_RUN.STARTTIME)
    LOOP
    HTP.p ('<point name="'|| MonthlyValueRecord.name ||'" y="'|| MonthlyValueRecord.value ||'" />');
    END LOOP;
    HTP.p ('</series>');
    END LOOP;
    HTP.p ('</data>');
    HTP.p ('</chart>');
    HTP.p ('</charts>');
    HTP.p ('</anychart>');
    htmldb_application.g_unrecoverable_error := true;
    END;
    Edited by: user12873839 on Apr 9, 2010 3:58 AM
    Edited by: user12873839 on Apr 9, 2010 4:02 AM
    Edited by: user12873839 on Apr 9, 2010 8:00 AM

    >
    Help Needed Urgent.....
    >
    That is one surefire way to not get any help and certainly not urgently. I suggest that you amend the title of your post to something that reflects the actual issue. This will also help anyone with similar issues to find the thread.
    When posting code please put {noformat}{noformat} (with the curly brackets and the word code in lower case) above and below it to preserve formatting like this...
    {noformat}{noformat}
    SELECT *
    FROM emp
    {noformat}{noformat}
    This will be displayed on the forum like this...SELECT *
    FROM emp
    Cheers
    Ben                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Is it possible to create an interactive graph/chart using Report Builder 3.0?

    Hi All,
    I am using Report Builder for the first time. Here is what I am trying to accomplish. The data I plan to use in Report Builder is coming from SQL Server and in the Report Builder I want to create an interactive graph(chart).
    For example, The table in SQL Server consists of Hospital Name, Measure name, and Scores for each measures for different quarters.
    The idea is to create a graph that will allow the user to pick the measure name(from a drop down list or something similar) and Hospital name, then the graph will display the measure scores for different quarters and corresponding target scores for that
    particular Hospital.
     The data in SQL server looks like this :
    measure
    MC_NM
         q112
        q212
       q312
    XXY
    TARGET
    0.9
    0.9
    0.9
    XXY
    REGION
    0.832879
    0.848934
    0.865714
    XXY
    Hospital 1
    0.875
    0.916084
    0.92
    XXY
    Hospital 2
    0.833333
    0.876923
    0.905797
    ZZZ
    TARGET
    0.979167
    0.952381
    0.955556
    ZZZ
    REGION
    0.942029
    0.945205
    0.983871
    ZZZ
    Hospital 1
    0.22
    0.270833
    0.372549
    ZZZ
    Hospital 2
    0.990291
    0.989583
    0.98913
    YYY
    TARGET
    0.928934
    0.9
    0.891429
    YYY
    REGION
    0.590909
    0.655172
    0.703704
    YYY
    Hospital 1
    1
    1
    1
    YYY
    Hospital 2
    0.788462
    0.82
    0.836735
    Is this is possible to do in Report Builder 3.0? Please share your thoughts.

    Thanks a lot for your response.
    I was able to create the parameters and now able to select the measure and facility and display that data in the table and chart.
    Now I am trying to see if I can add a line(target values) on top of the column chart to show the whether the scores of each measures, for each quarters are how far from the target values.
    Please let me know if this is possible.

  • Problem- Create Remote Delta link in Federated Portal Network environment

    Dear Experts,
    I am working in a Fedeated protal network environment where the producer is  BI 7.0 Portal and the EP portal is the consumer.
    FPN was already configured at client side and some reports were already integrated .
    Now i am working to integrate some other BI reports and need to work on PCD  ( creating iviews/pages/worksets/roles )..for integrating the BI reports.
    I followed to create th remote delta link for content of producer  in the consumer portal as following .
    1.In consumer portal i navigated to the  Portal catalog of NetWeaver Content Producers
    2 .Browse the Portal Catalog of the remote producer and then, choose Copy.
    3.Right-click a folder in conusmer local Portal Catalog (in the Portal Content root folder) and then choose Paste as Local Content.
    While perfoming third step i am getting following error
    "*Could not create remote delta link to object'pcd:portalcontent/com.analog.analog/hcm_bi_reports/iviews/basic_reports/com.analog.cost_center_report'Could not connect to producer portal. Please check that the producer portal is running, there are no network problems, and your consumer settings for the producer are configured properly_* "
    Producer potal is already in running mode and producer content is get dispalying in consumer portal under NetWeaver Content Producers.
    Could any body help me what might be the problem.
    i would appriciate if you replied for the same.
    Thanks and Regards
    Ratnakar

    Hi,
    Could you try to set the log level ALL for com.sap.portal.fpn and its subtree (From log configurator service in Visual Administration)?
    Then see the log messages in the default.trc logs and possibly post them to this threads.
    Regards
    Dagfinn

  • Is it possible to create a Gauss graph  in SAP Lumira ?

    Hi Gurus,
    Is it possible to create a Gauss graph  in SAP Lumira ?
    Thanks

    Hi Rogerio,
    You cant create Gauss graph in Lumira rather you can go for predictive analytics as Tammy said.
    For more information you can refer following link:
    SAP Lumira Chart Extensions with a Predictive Flavor
    Regards
    Megha

  • Programmatically create a bar graph (ADF DVT) at run time...

    Can someone show me how to programmatically create a bar graph (ADF DVT) at run time..
    Thanks in advance.
    Minh

    Hi Briston,
    You can make the column selected by setting "selected" property of column to true
    Sireesha

  • How do I create a 3d graph

    Hi all,
    I am trying to create a 3d graph in labview, would this be a waveform?
    Would I then need to use a waveform data type for the 3D array I will use to store my data?
    Regards

    HI,
    I have used the 3D graphs and they can be tricky.  My best recommendation is to look at the examples in the example finder.  I did not use wave from data types, just arrays of numbers, FWIW.
    Mark
    Mark Ramsdale

  • FPN Could not create remote delta link

    Hi everybody,
    I am trying to create a Remote Delta Link from producer content (EP Version 7.0 SP11) to consumer (EP Version 7.0 SP14).
    I have achieved the following FPN settings/configuration:
    SSO Connection in both direction
    Connection test is done successfully
    Producer registration done successfully
    The user is existing in both portals (Producer and Consumer)
    But unfortunately I am receiving the following RDL copy and paste error message:
    *Could not create remote delta link
    Could not connect to producer portal. Please check that the producer portal is running, there are no network problems, and your consumer settings for the producer are configured properly.*
    The producer is running.
    There are no network problem
    and the setting are correct.
    Any replay is welcome.
    Kind regards,
    Rashid
    Edited by: Rashid Salem on Aug 25, 2008 4:35 PM
    Edited by: Rashid Salem on Aug 25, 2008 4:37 PM

    Hi Sascha,
    no, there was no changes on the P4 Ports.
    The producer and consumer P4 Ports are configured as default ports. Producer P4 Port: 50004 and Consumer P4 Port: 51004.
    And if the P4 ports have been changed there is a possibility to enter the P4 Ports values in both Producer and consumer portals:
    System Administration > System Configuration > Service Configuration >Applications > ProducerInformationService > Alias To Ports
    I tried also this way/possibility without any success ;-(
    Any idea how to solve the issue?
    Kind regards,
    Rashid
    Edited by: Rashid Salem on Aug 25, 2008 5:00 PM

  • Creating an XY graph with history

    Hello,
    I'm looking to create an XY graph in LabView 2013 that keeps a history of points visually on the graph. I created a simple VI to do a simple export to excel data log but it would be helpful to be able to see the point that I am saving in a graph format as well as with indicators. I have the indicator part well oiled but the graph is giving me a problem.
    Idealy I would like to be able to just run a wire from Signal A to an X axis and a wire from signal B to a Y axis (from DAQ assist select signal function), with the ability to keep all previous points through the entire test. All the examples I have come across do not use DAQ Assist, which makes me wonder if this graph is even possible. Being a novice in labview I would love a solution that just uses signals from DAQ assist.
    The points I am recording should be linear(ish) in nature
    Thanks.
    mtgeotech

    Use a shift register, or feed back node to keep a history which you build.  But be aware that you need an upper limit.  You can't let your array reach infinite size, because we don't have infinite memory.  Have it check the size and then if it is greater than some size, get a subset.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • Trying to create and excel graph and having trouble finding properties and methods for active x.

    I am trying to use Active X in labview 7 to create an excel graph and the HasMajorGridlines property for charts is not in my menu. Where can I get this property and others that appear to be missing and what is a good resource (looking for anything, especially books) for for using activeX/Labview/excel together?

    I am not sure if there is a book or tutorial how to use excel with LabView. I ncluded a Vi which gives you access to the HasMajorGridlines property. I hope it gives you the clou how to work with excel obejcts...
    Chris
    Attachments:
    excel_example.vi ‏24 KB

  • Create a line graph on EP 7.0

    We are trying to create a complex line graph in the portal which will pull data from SAP ISU. What is the best approach to developing this graph? Is SAP Chart Design suitable for creating a complex graph from scratch?
    Any help would be appreciate.

    U can open any one of this as per ur like and edit.
    Well, you cannot edit the standard delivered themes. You will need to make a copy of the standard one and edit that custom copy.
    Besides the theme editor in the portal, there is a tool called Eclipse theme editor which can come in handy to create/modify a theme. You can download this tool and the corresponding guide at the following location:
    http://www.sdn.sap.com/irj/scn/downloads?rid=/library/uuid/136dd890-0201-0010-1b9d-bd09a0d3b1d8
    Thanks,
    Shanti

  • Not able to create Remote Delta Link from Producer content to Consumer.

    Hi everybody,
    I am trying to create a Remote Delta Link from producer content (EP Version 7.0 SP15) to consumer (EP Version 7.0 SP15).
    I have achieved the following FPN settings/configuration:
    SSO Connection in both direction
    Connection test is done successfully
    Producer registration done successfully
    The user is existing in both portals (Producer and Consumer)
    But unfortunately I am receiving the following RDL copy and paste error message:
    *Could not create remote delta link
    Could not connect to producer portal. Please check that the producer portal is running, there are no network problems, and your consumer settings for the producer are configured properly.*
    The producer is running.
    There are no network problem
    and the setting are correct.
    Regards,
    Nagaraju

    Hi Nagaraju,
    did you solve this problem? I get the same error message and no hints in the log/trace files in both portals.
    Kind regards
    Gerd

  • Creating a delta against a custom Function Module datasource

    I currently created a datasource via RSO2 against a function module.  The function module uses the RSAX_BIW_GET_DATA_SIMPLE as a template and I molded this against the data that I need.  Full loads for this extractor work without any problems but I'm having issues with creating a delta load.  Is there someone that can create a list on how to createa delta against a function module.  I believe there is more to do this than just have RSO2 set up against a field.  How do I get the new records into RSA7?  Thanks for your help.
    Tim

    We are trying to create the same delta extract from r/3 against a custom z table to an infocube in BW. Were you able to do this successfully using the f RSVD_BW_GET_DELTA_DATA as a template and did u receive the code? If so, are you able to send your code?
    My function modules works and fetches the data normally but the info package when scheduled gives an error
    <b>Error message from the source system
    Diagnosis
    An error occurred in the source system.
    System response
    Caller 09 contains an error message.
    Further analysis:
    The error occurred in Service API .
    Refer to the error message.
    Procedure
    How you remove the error depends on the error message.
    Note
    If the source system is a Client Workstation, then it is possible that the file that you wanted to load was being edited at the time of the data request. Make sure that the file is in the specified directory, that it is not being processed at the moment, and restart the request.</b>
    You can send the code or procedure to my mail id
    [email protected]
    Thanks in advance,
    Best Regards,
    Vishal

Maybe you are looking for