Pie Chart/Appointment Target/Log

My employer wants some sort of Appointment Target design that will generate Appointments made (tele sales) and show it getting closer to the daily target.  The target number could vary each day so i thought about a Pie Chart that works on percentage and the data base can automatically update the flash file (somehow), I have no idea about MySql etc so wondered if anyone out there had any suggestions that may help.  Thank you in advance... Jay 

My employer wants some sort of Appointment Target design that will generate Appointments made (tele sales) and show it getting closer to the daily target.  The target number could vary each day so i thought about a Pie Chart that works on percentage and the data base can automatically update the flash file (somehow), I have no idea about MySql etc so wondered if anyone out there had any suggestions that may help.  Thank you in advance... Jay 

Similar Messages

  • No data in Active sessions pie-chart and availability is 0%

    Hi All,
    Does anyone know why my Enterprise Manager cosole in Oracle 10g installed on windows xp professional is not showing any data? Availabilty is always 0% for the instance ORCL and the active sessions pie-chart is always showing 0.01 since May 17,2005.
    Can anyone tell me how to configure EM so that instance ORCL and the active sessions start showing data again?
    Thanks

    Hi,
    Kindly activate the data request. Post that, Under "request available for reporting" a symbol will appear which means that the data has been moved to Active table and is available for reporting at further levels.
    And you can then check for contents in the active table of the DSo, you should get the records.
    Change log: Contains the change history for the delta update from the DataStore object into other data targets, such as DataStore objects or InfoCubes. It makes sense in case of delta uploads.
    Regards,
    hemlata

  • SSRS Report Builder 3.0 - Pie Chart

    Hi,
    I have Pie chart that displays Number of  items by Country,
    My data set is pulling the correct values.
    The 3D effect is true for the pie chart and the Series Labels are set to diplay out of the Slice.
    I used the collected style to be SingleSlice and not using percentages but just the values less than or = 5 to be collected to other countries slice.
    for labels format I am using a column value from the query where I Concatenate the Value and Name of the country as string as I am not showing the legend on the chart for more space
    All the values are showing up right except for one value for one slice which is added extra numbers at the beginning of the number part of the string.
    For Example , if for USA there are 320 items  it should should show up as USA - 320  as that is the value that the query bring and I double checked that. But that value dipslays USA - 12320 for some reason and this is happening only with one
    label.
    I might be missing somethign silly but if someone can save my time and help me it would be appreciated.
    Please let me know if you have any questions.
    Thanks,
    Chaitanya

    Hi Chaitanya,
    Sorry for the delay.
    I am unable to reproduce the issue in my test environment. The issue seems rather odd. Here, I suggest that you create a new report and design the Pie Chart from scratch, and then check the issue again.
    If the issue persists, please post the expression of the label data as well as the CustomAttributes settings of the target series of the Pie Chart. 
    Regards,
    Mike Yin
    TechNet Community Support

  • Active sessions showing no data in pie-chart

    Hi All,
    Does anyone know why my Enterprise Manager cosole in Oracle 10g installed on windows xp professional is not showing any data? Availabilty is always 0% for the instance ORCL and the active sessions pie-chart is always showing 0.01 since May 17,2005.
    Can anyone tell me how to configure EM so that instance ORCL and the active sessions start showing data again?
    Thanks

    What errors were you seeing in the log files, i am experienceing the same issue but the listener appears to be fine.

  • Pie chart with two measures and date dimension navigation not working

    Hi Experts,
    Pie chart with two measures and date dimension navigation not working. Any help is appreciated.
    Thanks
    V

    Hi Deepak,
    I had time dimension in the RPD.
    I have stacked bar chart with same time dim like year & month in the report. when I go to legand and set navigation it is working fine. But not with pie chart.
    I am not not sure what is the problem. When I click on Pie chart it is not navigating to the target report. Can it be any other issues..???

  • Pie-chart drill-down

    Hi,
    I have created a pie chart on my report. I want it so that the user can double click on a segment of the pie and drill-down to view some detailed logs. The logs just being a list of details from the records like "name" "age" etc.
    I have read some stuff on subreports and linking, but im not quite sure wether this is the way to do this or if there is an easierway without all that subreport linking malarchy.
    Is there an easier way? and if so, could you please provide me with a step-by-step as im fairly new to this whole crystal reports thingamajig. Thanks
    J

    Hi James
    You can get a drill down on your pie chart once you apply groups in your report and create chart based on those groups.
    For example: I create a report to display the last year sales for all the cities in a country. I want a drill down onmy pie chart for the cities. I do the below:
    1. I create two groups on Contry and City.
    2. Now I create a pie chart. In Data tab of Chart expert select the group for City in On change of, and show value Last year sales.
    3.Place the chart on group header of Country group.
    4. Refresh the report, now I would get the drill down for the cities for every country in the Pie chart.
    For more information please refer to Crystal Reports Help.
    Hope this helps!!!
    Regards
    Sourashree Ghosh

  • Drill down to detail reports from a Pie Chart

    Is it possible to code for drill downs in a Pie Chart to a detail report based on the section that is clicked in an RTF template?
    Can anyone provide an example for this?

    Hi Raja,
    I used CEO LOG ON TOKEN to avoid asking for credentials  when im trying to access the dash doard form another dashboard.
    From connections we can have flash variable
    Note : Names are case sensitive here in flash variable so name it as shown below
    Define its name as CELogonToken
    Variable Format as CSV
    Variable data -->under ranges define a range :
    Name it as CELogonToken
    Range :map to a excel cell (Ex Sheet1!A$2)
    From info view you can find DOC ID  suppose your DOC ID is 9609
    Then frame your URL AS
    http://sapdev:8080/Xcelsius/opendoc/documentDownload?iDocID=9609&sKind=Flash&CELogonToken=
    in another cell Concatenate the above your with your Logon token captured in Sheet1!A$2
    suppose your url is in 'Sheet 1'!A$6
    then your formula cell for concatenation should be 'Sheet 1'!A$6 & Sheet1!A$2
    Use a url component and map the concatenated url cell to the component and place it over your  pie chart.
    uncheck show button background
    try this and apply according to your scenario.
    Hope this works..
    @Sri

  • Pie chart wedge itemRollOver

    I need help with creating a custom pie chart class that will allow a function call on pie wedge rollOver.
    Right now I can get a function call on rollover using itemRollOver using;
    import mx.charts.events.ChartItemEvent;
    -in the <mx:PieChart>;
    itemRollOver="pieChart_itemRoll(event);"
    -which calls this function
    private function pieChart_itemRoll(evt:ChartItemEvent):void {
                    var psi:PieSeriesItem = evt.hitData.chartItem as PieSeriesItem;
                    trace(psi.item.target);
    Please advise on how can I put this into a custom PieChart .as that extends PieChart?
    Currently itemRollOver in my custom class throws an undefined property error.
    Thanks.

    OK, now I get it. So you would need to place your two PieCharts in a s:Group or mx:Canvas. On top of the pie charts, lay another s:Group on which you will do some drawing on its graphics:Graphics object.
    In your case, you need to use dataToLocal() (will give you pixel coordinates in your chart) then localToGlobal()  (convert to Application coordinates) then globalToLocal() (convert to the Top Group or Canvas coordinates you want to draw in) :
    Using the dataToLocal() method
    The dataToLocal() method converts a set of values to x  and y coordinates on the screen. The values you give the method are in  the "data space" of the chart; this method converts these values to  coordinates. The data space is the collection of all possible combinations of data values that a chart can represent.
    The number and meaning of arguments passed to the dataToLocal() method depend on the chart type. For CartesianChart controls, such as the BarChart and ColumnChart controls, the first value is used to map along the x axis, and the second value is used to map along the y axis.
    For PolarChart controls, such as the PieChart control, the first value maps to the angle around the center of the  chart, and the second value maps to the distance from the center of the  chart along the radius.
    The coordinates returned are based on 0,0  being the upper-left corner of the chart. For a ColumnChart control, for  example, the height of the column is inversely related to the x  coordinate that is returned.
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/DisplayOb ject.html#localToGlobal%28%29
    http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/display/DisplayOb ject.html#globalToLocal%28%29

  • Creating Pie Chart?

    Hi All,
    2 problems:
    I am attempting to create a Pie Chart in VC but it does not work, I have built other graphs with success.
    The data I am using is simple, I have one Data column Actual Amount and another Target Amount, I simply want to put both of them into a Pie chart and show how much Target is still left to achieve compared to Actual.
    When i attempt this all i get is one full amount?
    Another problem is i want the value displayed on my line chart rather than just when i hover my mouse over the Line Chart?
    Any advice appreciated,
    Thanks

    John,
    VC does not support displaying the data series on charts (other than hovering over it).
    As for the other problem of displaying two data series on the same pie chart, try charting them on separate pie charts instead? what is ur query drilled by? to see the actual vs target amts, i would think it would be easier to view if you plotted them as bar/column charts (just a suggestion)
    prachi

  • I need help making a pie chart

    Hello, hoping for some help with making a chart that will update as i continually input data
    I have a chart that has many columns logging details of win/loss records. I would like to make a pie chart that represents a set of columns and shows the ratio of wins for each of the columns.
    I will try and give some better details. There are 5 columns (j,k,l,m,n) and each represents a color. In each column there are check-boxes. 1 or more will be checked on each row. On the same row there is a tally of wins. each row represents a different day. What I am looking for is a pie chart that shows how many wins i have in each color.
    for example.
    nov 1st: 5 wins in color J
    nov 2nd: 2 wins in color k
    nov 3rd: 4 wins in colors m and n
    the pie chart will contain a total of 15 'wins' split up on the chart between each color....... 5(j) + 2(k) + 4(m) + 4(n). theoretically the J should take up 1/3rd of the pie and so on.
    I also have a total at the bottom of the colors column, but this will not show which color got the wins.
    Hopefully this makes some sense to understand and if I am very fortunate someone much smarter then me will be generous enough to help me out.
    Thank you very much, all help is appreciated.

    Hi Anthony,
    This table may be  what you want. I added a row at the top (you don't need that row. It is just may way of getting around the poor screen shots in this forum).
    I hid some columns, then I copied the table and pasted directly into this reply (I have had it with screen shots ).
    A
    F
    J
    K
    L
    M
    N
    Date
    Wins
    Colour J
    Colour K
    Colour L
    Colour M
    Colour N
    Nov 1
    1
    TRUE
    Nov 2
    1
    TRUE
    Nov 3
    2
    TRUE
    TRUE
    Checkboxes show as TRUE (not a tick) in this pasted table. But a tick = TRUE .
    Formula in F3 (Wins, Nov 1)
    =COUNTIF(J3:N3,"=TRUE")
    I hope this helps with your pie chart.
    Regards,
    Ian.

  • On Pie chart rotation - the labels disappear

    I am using followig to rotate a pie chart:
    <mx:Rotate id="rotate" angleFrom="{angle-90}"
    angleTo="{angle}"
    target="{myChart}"/>
    private function rotateImage():void {
    rotate.end();
    angle += 90;
    rotate.play();
    <mx:PieChart id="myChart" dragEnabled="true"
    dragComplete="rotateImage()">
    So, when a user tries to drag the pie chart, the chart
    rotates. The
    chart rotates fine but the labels disappear? why would this
    happen and
    any solution to this.
    Also, I would like to use some other event for rotation
    instead of
    dragComplet. I would like to do it when user clicks left
    mouse
    button+moves the mouse (both on the outside of the chart)
    Any suggetions?
    Thanks in advance.

    Are your fonts embedded? Rotating non-embedded fonts makes
    text disappear during rotation.

  • I need to display pie chart data tips at specified location instead of default location?

    I need to display pie chart data tips at specified location instead of default location?
    can any body let me know how to do that?
    thanks guys.

    Hi,
    Check this thread.
    Log for J2EE Web Services?
    Regards,
    Harini S

  • Link not working on a pie chart which uses a customized XML

    Hi,
    I have created a pie chart which uses customized XML.
    For this, i am using database function. This function returns a customized XML which is eventually used by chart.
    But the problem now i am facing is the link on chart is not working . I have to navigate to another page from this chart sending value of link attribute.
    Can someone help me out , in how to create link in such case ?
    Thanks in advance.
    Edited by: Vaibss on Feb 22, 2011 10:49 PM

    Good news: I've found that the directive
    -Dlog4j.configuration=/home/myServer/Oracle/Middleware/wlserver_10.3/server/bin/log4j.properties
    shuld be instead:
    -Dlog4j.configuration=file:/home/myServer/Oracle/Middleware/wlserver_10.3/server/bin/log4j.properties
    - noticed that <<file:>> ? VERY important...
    This way the log4j logging works also on a standalone WLS.
    reference:
    http://jaikiran.wordpress.com/2006/07/05/i-get-log4jwarn-no-appenders-could-be-found-for-logger-message-2/
    Sergio.

  • To print an Pie Chart image with more than 1 slice is not working

    Hi friends,
    I'm using a version 12.0.4 and when I try to generate an Pie Chart image with more than 1 slice using the function saveImage() it's not working. The image is only generate when its return is just 1 value (1 peace of pie).
    Anybody help me?
    Regards!

    It's not unique for your setup, but it also happens in 12.0.11, so it's a bug.  Looks like it is throwing a null pointer for some bizzare reason when generating the GIF output by the ImageStorageServlet (per the NW logs). 
    Your best bet would be to log a ticket so it can be patched.
    12.1.7 seems to work fine.
    Edited by: Michael Appleby on Nov 23, 2010 2:39 PM

  • Pie Chart with Portal 3.0.8.9.8

    I have two portal installations, one with version 3.0.8.9.8 and the other with version 3.0.9.8.0. I have enabled the beta feature "Image Charts From Query Wizard" on both installations. I can successfully create and display a pie chart on the newer version (3.0.9.8). However, on the earlier version (3.0.8.9.8), I can only create the pie chart but it does not display. That is to say, the pie chart creation is successful, but when I run it, it times out and never displays the pie chart. Has anyone experienced problems displaying a pie chart with 3.0.8.9.8? I need to create one on this older installation since it is the version my client is using.
    Thanks,
    Kendra

    Do you have any logged error in jserv.log. Can you isolate the action of running the chart in 3.0.8.9.8 and find out corresponsing logging messages in jserv.log and error.log.

Maybe you are looking for

  • Windows 7 and a mac and vmware and internet connection challenges

    Hello I have a macbook pro that I bought this year. Loaded vmware and win xp on it. Tried to load win 7 on it and it went well. Now it seems I can't connect to the internet. I removed all the preloaded pc security to zero, so I believe this isn't the

  • How do I copy and paste text from gmail?

    While reading email messages in the Gmail app if I want to copy text I will tap and hold over the text - but nothing happens. This same gesture in the messages app brings up a dialogue to copy/paste/etc... I must be missing something cuz this should

  • Traffic Lights in ALVgrid

    Hi, I am using 'CL_GUI_ALV_GRID' method to display data via ALV. I have a requirement of displaying the succesful records with green light and unsuccessful ones with red lights. Can somebody tell me which field to use in field catalog for that icon o

  • How to create more than one SID in .bash_profile

    I Want to create more than one SID in bash_profile without disturbing oracle's default SID i.e orcl and create database with new SID?

  • C3-01 screen bar

    I've bought today a Nokia C3-01 and on bottom bar of screen where it should be "Names" on my phone is "Web" and I want to know how I can change it. Attachments: c3_warm_grey_front_604x604.png ‏169 KB