CFchart question

If we allow users to add a review about a class they took,
the data is
stored in the following way:
Rev_ID, Rev_Class_Date, Rev_Class_Instructor, Rev_Knowledge,
Rev_Part
Rev_Friend, Rev_Prep, Rev_Expect, Rev_Cont, Rev_Enjoy,
Rev_Comments,
Rev_Comment_Date, Rev_Comment_Online, Rev_Overall
with the data looking like:
38, 2008-01-28, Steve Grosz, 5, 4, 5, 4, 5, 5, 5, Steve made
the class
enjoyable, 2008-02-21, 1, 1
How can I loop through all the dates, group the data, average
it, and have
each on a seperate line with points using CFchart?
I can do individual line graphs of dates if I specify what
dates to select
the data from. I have the code below doing a bar graph, but I
would like to
get a line graph with more than 1 date.
<cfquery name="chart" datasource="B">
select avg(rev_knowledge) as avg_know, avg(rev_part) as
avg_part,
avg(rev_friend) as avg_friend, avg(rev_prep) as avg_prep,
avg(rev_expect) as
avg_expect, avg(rev_cont) as avg_cont, avg(rev_enjoy) as
avg_enjoy
from class_review
where Rev_Class_Date="2008-04-21"
</cfquery>
<cfchart format="flash"
xaxistitle="Beginning Fencing Class"
yaxistitle="Class Review" showlegend="yes" chartwidth="500"
chartheight="400">
<cfchartseries type="bar"
query="chart"
itemcolumn="Knowledge"
valuecolumn="avg_know"></cfchartseries>
<cfchartseries type="bar"
query="chart"
itemcolumn="Participation"
valuecolumn="avg_part"></cfchartseries>
<cfchartseries type="bar"
query="chart"
itemcolumn="Friendliness"
valuecolumn="avg_friend"></cfchartseries>
<cfchartseries type="bar"
query="chart"
itemcolumn="Preparation"
valuecolumn="avg_prep"></cfchartseries>
<cfchartseries type="bar"
query="chart"
itemcolumn="Expectations Met"
valuecolumn="avg_expect"></cfchartseries>
<cfchartseries type="bar"
query="chart"
itemcolumn="Planning on Continuing"
valuecolumn="avg_cont"></cfchartseries>
<cfchartseries type="bar"
query="chart"
itemcolumn="Overall Enjoyment"
valuecolumn="avg_enjoy"></cfchartseries>
</cfchart>

specify seriesLabel attribute in each of your
<cfchartsereis> tags if
you do not already (i.e. one would be "Apples" and another
"Oranges"),
and then pass the $SERIESLABEL$ in the url along with
$ITEMLABEL$:
reportname.cfm?date=$itemlabel$&fruit=$serieslabel$
Azadi Saryev
Sabai-dee.com
http://www.sabai-dee.com/

Similar Messages

  • Query and cfchart question

    I have this simple query :
    SELECT top 10
      SupplierName, supplierNumber
      SUM(TOTALS) AS TOTAL
      FROM tableName
    It will give me a simple output like:
    company1     12345     20
    company2     98881     5
    company3     76512     18
    What I need to do is plot the query in pie chart, with a drilldown report for each pie slice (supplier name) :
    <cfchart
             format="flash"
       chartwidth="350"
       chartheight="450"
       title='"Top 10 Supplier Volume "'
             pieslicestyle="sliced"
             labelformat="number"
             show3d="yes"
       url="../reports/supplierVolumeReport.cfm?supplierName=$itemlabel$&supplierNumber=#qryBuye rVolume.supplier#">
          <cfchartSeries type="pie"
                query="queryName"
                itemcolumn="supplierName"
                valuecolumn="Total"           
                datalabelstyle="value"
                colorlist="##CE1126,##3399CC,##CC5500,##444444,##00CC33,##7C96A1,##DAD9A0">
          </cfchartseries>
          </cfchart>
    Everything works fine. But when I go to the drilldown report, I cannot really search by supplierName because some companies might have the same name, but the supplier numbers are unique, so I have to search by supplier number. That is why I am passing that value also.
    But when I click on pie slice for company 3, it passes the supplier name company 3, but the supplier number is always the first one, 12345, regardless of what slice I click on. I have cfoutput in the report and it shows company 3 and 12345.
    How do I get the corresponding supplier number for the pie slice supplier name that I click on ? I need the corresponding supplier number so I can use it to search the query in the drilldown report.
    I tried to combine the name and number in the query and have the chart display 12345 - Company 1 in the legend, but they do not want the number to display, just the name in the legend.

    On your graph, pass the company name and total as a list with a delimter not likely to appear in the company name.  Like this:
    supplierName=$itemlabel$¿$value$
    On your drill down page, start with a query to get the supplier number.
    select suppliernumber, count(*)
    from yourtable
    where suppliername = ListFirst(url.suppliername, "¿")
    group by suppliernumber
    having count(*) = ListLast(url.suppliername, "¿")

  • CFCHART question (range in the background)

    Hola.
    I want to put together a line graph using CFCHART. That part
    works great. But I also want to display a horizontal band of color
    that shows the "acceptible range" of values, so that it is obvious
    to the users when the data points fall outside that range (both
    above and beyond). All I need is a different background color for
    just one area of the graph.
    But I can't figure out how to do it...
    Any suggestions?
    Thanks in advance!

    May I suggest not using cfchart at all? I quickly found out
    that it has very limited functionality. I'm not even sure it can
    handle what you want, let alone if you plan on doing something a
    little more "serious" (for instance, plotting time-series data).
    Someone on this forum suggested I use KavaChart. Since I've
    done that, I have been extremely pleased!
    http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?forumid=1&catid=7&threadid=11 14062&highlight_key=y

  • Cfchart questions

    Thanks in advance for any help you can give me! I have a
    basic bar chart with 5 cfchartseries. Each cfchartseries has a
    seriesLabel parameter with a value, but they are just not showing
    up on the resulting chart's x-axis (or anywhere), no matter how
    wide I make the chart or how small I make all the text (I even set
    them all to "1" to ensure it was small enough).
    Additionally, does anyone know how I can change the color and
    location of the dataSeriesLabel values? I've got the value from the
    query showing up in the bar itself, but it's black. I'd like to
    make it white (easier to see) or put the value just above the top
    of the bar.
    These seem like they would be simple, but I can't seem to
    find this info anywhere, so any help at all - or a push in the
    right direction - would be much appreciated!
    Bill

    Hi Bill
    Would appreciate if you could share any screen shot and the code which you are using. Also please give detail about the environment in which you are getting this issue.
    Swaraj

  • Encode using javascript

    Hi i wonder if someone can help me?
    i have given up on using the cfchart has noone has replied to
    my posts, so i am going with the google chart api
    i have a query which pulls back clubnames and a sum of a
    totalamount for each club, so for the google api i need to encode
    the total amount using the javascript below, what would be the best
    way of doing this?
    Many thanks

    i have given up on using the cfchart has noone has replied to my
    posts, so i am going with the google chart api... what would be the
    best way of doing this?
    Persevere. Use cfchart. Ask your cfchart question, and in the
    right section of the forum.

  • CFCHART - Line Chart Questions - CF7

    Hi Folks -
    I have a few questions about CFCHART in CF 7 and I am hoping
    that maybe different users can answer them:
    The following questions relate to creating a line chart.
    1) Is there a way to control the gridlines yourself, and not
    use the values for the lines that CFCHART presents?
    1A) If you have to accept the values that CFCHART gives you,
    is there a way to control the actual rounding of the values? Right
    now I am getting 3 decimal places, and I would prefer whole
    numbers.
    2) Is there an issue with displaying negative values? I have
    a chart that ranges from -255 to 100,000 and has 10 grid lines. But
    the -255 does not display. I get 0, the rest of the lines, except
    for the 9th line.
    <cfchart chartheight="300" chartwidth="450" font="@Arial
    Unicode MS" scalefrom="-255" scaleto="100000"
    gridlines="10" xaxistitle="Month" yaxistitle="Total"
    format="png" labelformat="number">
    <cfchartseries type="line" serieslabel="Review">
    <cfchartdata item="Jan" value="2569">
    <cfchartdata item="Feb" value="65535">
    <cfchartdata item="March" value="-57">
    <cfchartdata item="April" value="75778">
    <cfchartdata item="May" value="89955">
    <cfchartdata item="June" value="39898">
    <cfchartdata item="July" value="0">
    <cfchartdata item="August" value="12560">
    <cfchartdata item="Sept" value="-255">
    <cfchartdata item="Oct" value="767">
    <cfchartdata item="Nov" value="6868">
    <cfchartdata item="Dec" value="37352">
    </cfchartseries>
    </cfchart>
    Any and all questions and answers are appreciated.
    Thanks,
    Doug

    You can specify scaleFrom and scaleTo by hardoced values or
    dynamic variables and number of gridlines. If you not specified
    first two attributes, then by default, the minimum is 0 or the
    lowest negative chart data value, and the maximum is the largest
    data value.
    To avoid decimals in your case empirically find good
    combination for your scale, for example from - 500 to 10 000 and
    number of gridlines = 12.

  • How do I change the font size of a data point label on a cfchart?

    I know I can control the x axis and y axis font with the font="" attribute of the cfchart tag.  But I want to change the font size of the data label in the chart series.  Is that possible?

    To specifically and fully answer your question, no, you absolutely cannot change the “font size” as a function of print.
    First of all, there isn't a single “font size” associated with a PDF file (and we assume you are referring to a PDF file since this is an Acrobat forum).
    Secondly, PDF is a final form file format meaning that the content is static in terms of location, size, etc. on the page. To change the point size of any particular text, you really need to go back to the source document and make the changes there.
              - Dov

  • Can You Create Trend Line in CFCHART?

    Have pretty much got CF7 Charts and WebCharts3D down, at
    least to the point where they can do what I need the most. However,
    the one thing I'd like to be able to do, but not sure if it's
    possible, is create a TREND LINE.
    This would be a LINE charts with 2 series. The first series
    would be a line with the actual counts covering a period of time.
    I'd like to add a 2nd line, using the same data from the
    first series, but have it displayed as a TREND line. In Excel, you
    can easily create a TREND line, it's even offered as an option.
    I've seen somehwere (CFCHART or WebCharts3D) something to so
    with "logarithmic" options, which is one of the options for Excel
    charts.
    Two more quick questions:
    Q1. Is there any way to control the margin between the left
    and right borders of the charts, and the bars? Have tried
    experimenting, but can't seem to get this to work. Reason is, when
    I try to show a chart in 3D, the first bar on the left is "butted
    up" against the left chart border. Would like to add a little space
    there.
    Q2. Rather than display rectangular bars, I'd like to display
    rounded cylinders. I've tried setting the chart type in CFCHART to
    "cylinder" but it still displays a bar. When I try to change the
    type to "cylinder" in WebCharts3D, the chart STILL displays
    rectangular bars. Yet I've seen many examples of rounded, cylinder
    bars.
    Don't mean to push my luck with too many questions. Thanks
    for any advice, help.
    Gary

    Trend Lines:
    CFChart does not do trend lines of any type. However, it is
    not too difficult to compute the regression of your choice and to
    plot it as a second series.
    Logarithmic:
    Not sure what you are asking here.
    In theory, cfchart does do log-lin and log-log charts.
    However, it is so buggy, and the scaling problems are so
    great, that we have never been able to get it to work well.
    We use ChartDirector for anything that requires a log scale.
    Side margins:
    You cannot control these directly. Here are some workarounds:
    For "Category" axis:
    Make sure the "isBucketed" property is set to true (this is the
    default).
    If that is not enough, add extra bars to your data series,
    usually value zero. It's not ideal but it may be good enough.
    For "Scale" axis:
    Usually this works well enough. Otherwise, try toggling the
    "isAbsolute" property.
    The only other recourse is to manually scale the plot using the
    "scaleMin" and "scaleMax" properties. This can be a real pain for
    obvious reasons and also because cfchart scaling is fraught with
    bugs and "quirks".
    Cylinder Bars:
    These work. Perhaps there was a setting conflict within the
    XML or between the CFChartSeries setting and the XML?
    Also the cylinders will only look round when 3D is turned on.
    (Side view of a cylinder is just a shaded bar.)
    Anyway, I've said it before: cfchart is barely usable for a
    very limited range of charts.
    For real business or common engineering and scientific needs,
    you need to step up to something better.
    The package we use (has all the features and very reasonably
    priced) is ChartDirector (
    http://www.advsofteng.com/cdcoldfusion.html).
    (And, no, I'm not affiliated.)

  • Can't do detailed line chart in cfchart

    Hi
    is it possible to get a line chart suitable for say a
    financial series ie with ~1000 points of data in cfchart with
    CFMX7? I cant seem to get the line fine enough so have to limit
    chart to say 50 points. Someone must have done it but cant see any
    examples on web or adobe livedocs. I guess a follow up question is
    where is the best ref for cfchart?
    Thanks in advance
    Tim

    Hi, what did the genius mean by "everything being fried"? I'm guessing that you have a USB keyboard and mouse and they still work, right? I'm just trying to see what the extent of the damage is.
    Best,
    ~FifthWheel

  • Cfchart static items

    I have a query that I am outputing to a chart. That is all
    working fine. The question I have is has anyone out there added
    static items to a cfchart. I need to add to horizontal lines and
    one sloping line to my chart and they are always in the same
    locaiton on the chart. I would also like to lable the areas between
    the lines with text.
    I can see that cfchart is very limiting but has anyone found
    a workaround? If I could just find a way to overlay these items it
    would be perfect. Any suggestions would be greatly
    appreciated.

    Hi,
    Firstly, if you create the form, using the Form wizard and based on the TBL_SAMPLE table, then Apex will generate everything you need to insert records.
    If you do want to manually insert records, you would need to create a PL/SQL process that runs "After Submit" and triggered by a button.
    The process code would be something like:
    BEGIN
    INSERT INTO TBL_SAMPLE (XNAME, XNAME2, Q1NUMBER, Q2NUMBER, Q3NUMBER, Q4NUMBER, Q5NUMBER, TRANSACTION_DATE)
    VALUES (:TXT_NAME1, :TXT_NAME2, :RGRP_Q1, :RGRP_Q2, :RGRP_Q3, :RGRP_Q4, :RGRP_Q5, SYSDATE);
    END;I have not included TRANSACTION_NO in the fields to be updated as you should have a sequence and trigger to handle the creation of new primary keys.
    Andy

  • CFChart Item Titles with Spaces Wrap

    I am using CFChart.
    The titles for the items in the chart often have spaces in
    them.
    Here is the JPG that gets created if I leave the spaces in
    the titles.
    http://test.bcccc.net/test/Bar_Graph_w_Wrapping_Titles.jpg
    Here is the JPG that gets created if I replace the spaces
    with underscores.
    http://test.bcccc.net/test/Bar_Graph_w_Underscore_Titles.jpg
    I have tried replace the spaces with #Chr(160)# which are
    non-breaking ASCII spaces, but that does not do any good.
    I have spent over 2 hours searching for solutions on line,
    but cannot find one anywhere.
    Swithin

    Photoshop is fine for images only.  But the HTML it generates is not acceptable for use on real web sites.  Photoshop HTML is for quick comps to show a client before you set out to rebuild the page in Dreamweaver.
    Save images only in Photoshop. 
    Start over with one of the pre-built CSS Layouts that comes with DW.
         File > New > Blank > HTML > Layout.  I recommend fixed-width, centered, header & footer for your first project.
    Look at this 3-part tutorial
    Taking a Fireworks (or Photoshop) comp to a CSS Layout in DW
    Part 1 - Initial Design
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html
    Part 2 - Markup preparation
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt2.html
    Part 3 - Layout and CSS
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt3.html
    If you get stuck on anything, post back with specific questions.
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • CFCHART & Developer Edition Watermark

    [This might sound similar to postingings for CFDOCUMENT, but
    it's not]
    I have servers that were originally installed with the trial
    edition of CF8 and
    then changed to standard edition by entering our valid
    license numbers within the
    30 day period. That all worked fine, and the edition changed
    from Enterprise to
    Standard.
    At the time we hadn't been doing much with CFCHART, although
    we did have one page
    in production with a CFCHART on it. We've recently started
    doing development of
    more charting pages, using both the CFCHART tag directly as
    well as using
    calls via Java to the underlying engine so that we can get
    the more advanced
    charts.
    All of the charts are coming out with the "Adobe ColdFusion 8
    Developer Edition Not
    for Production Use" watermark on them. Note that this is not
    from the
    ColdFusion8\lib\watermark.png file because that image's
    content says "Adobe
    ColdFusion Developer/Trial Edition Not for Production Use".
    So this is being
    triggered from somewhere else. The first question is "where
    & why?" but the more
    important second question is "how do I fix this?"
    I did a clean install where I entered the SN on the
    installation screen (instead
    of letting it start out as a Trial Edition) on a PC that has
    never had CF on it,
    ran my CFCHART script, and it DID NOT have the watermark.
    Here's more info: On that PC that I did the fresh install of
    CF8, I was able to
    run my script with "standard" CFCHARTs in it just fine. As
    soon as I ran the
    FIRST script that did calls to the java objects to create
    undocumented Webcharts
    charts, the watermark began showing up not only on those
    charts, but also on all
    charts that are generated from the "standard" CFCHART tags.
    Apparently the
    Webcharts engine thinks that I have violated the license, and
    is somehow tracking
    that fact across restarts, reboots, etc. I reinstalled CF on
    that test PC, and the watermark went away, but
    reinstalling on the production servers is a lot more hassle.
    I ran a directory/file compare utility (ADCS) against the
    clean test PC and one of the unclean servers, for the entire
    ColdFusion8 directory tree, but nothing jumped out.
    I've searched through the Registry, cannot find any tracks
    there. Cannot find
    any files with new dates on them.
    Any ideas?
    This is getting to be a hassle, because I have pages that
    clients see on the
    server where I first noticed this problem, and don't want
    them thinking that I'm
    running bootleg software!
    thanks everyone,
    Reed

    System Information
    Server Details
    Server Product ColdFusion
    Version 8,0,0,176276
    Edition Standard
    Serial Number xxx
    Operating System Windows 2003
    OS Version 5.2

  • CFChart Displaying False Data

    I posted a question previously about grouping CFChart output
    that was answered by MikeRoo. I thought it was solved and marked it
    as such. However, this morning I discovered that the Chart
    contained invalid data -- data that is not in the database. I did
    not see a way to change the previous thread to "Unanswered" so I'm
    posting this new thread -- for which I apologize ahead of time if
    I'm not supposed to do it this way. But this is more of a problem
    than the grouping was because it is showing false results.
    I want to display a Bar graph with TQs along the X axis
    (bottom) and Percentages along the Y axis (side). But I need a
    percentage of each InsideTQ and OutsideTQ for each Originator.
    What is happening is that I'm getting InsideTQ and OutsideTQ
    values for Originators that do not have that TQ. For example:
    Originator 00021
    TQ 3
    InsideTQ 40 percent
    OutsideTQ 60 percent
    TQ 6
    InsideTQ 44 percent
    OutsideTQ 56 percent
    But what I'm seeing on the graph is that Originator 00021
    shows a TQ 5 with an InsideTQ and OutsideTQ value, but there isn't
    a TQ 5 for this Originator. This particular Originator should only
    have 5 values on the chart, yet there are 13 being displayed for
    it. I've double checked the tables, I've created temp tables from
    my queries to step through each query and query of query. My
    queries are correct and they display the data correctly on the
    report table. But the CFChart is showing false data. The good news
    is that all of the data that is really is in the database is shown
    correctly on the chart...just seems to make up other data.
    Attached are my queries, chart, and table. I have a jpg of
    the chart if anyone thinks that might help...
    I REALLY appreciate your help.

    MikerRoo,
    Yeah it's a LOT of code...that is why I was trying to give it
    to you in pieces, didn't want to scare you off ;-)
    Something I tried yesterday: I pulled the CFChart out and
    opened it in a new window with just the attached code and it still
    displays incorrect data. My best guess on where the data is coming
    from -- it is some how ignoring my more specific filters and
    returning data for rows where the Originator or TQ is NULL though I
    specify not to include those. I use the NULL Originator and TQ
    fields for my roll up counts but I don't want them in the chart.
    However, when I've found strange values in the chart, they all
    point back to a row in the table with a NULL Originator or TQ. Now
    on my table, those values are being filtered correctly. So, I'm
    still blaming the chart and not my queries...just wish I knew why!?
    Again, any time you have when you can help, it is
    appreciated. I'm going to lock down the filters so that the users
    can only select 1 Originator and/or 1 Object. This way the report
    in production will display correctly until we can solve the problem
    in the development report.
    Side Note: I downloaded a trial version of Chart Director. I
    just started looking at it yesterday, spent a few hours trying to
    figure out how I would get it to work with my CF site. I'm such a
    CF geek that I forget about those other languages...we have .NET,
    we have VB, and other assorted development tools so it shouldn't be
    too difficult to figure out how to fit it into the current
    reporting tool. I'll let you know how it goes...also the book you
    suggested "Visual Display of Quantative Information" does that
    cover Chart Director? Trying to get our Project Lead to purchase
    Chart Director and a few books so I don't bang my head against the
    wall on these charts...
    Thanks again and hope to hear that you had an epiphany...I'll
    let you know if I have any!

  • CFCHART gives different display in 6.1 and 7.0.2

    We have CFMX 7.0.02 installed on AIX plat form. This was
    recently upgraded from MX 6.1. After the upgrade the CF chart
    display doesn't work fine. The same code give fifferent display in
    2 versions. The Bar chat is shown as lines and the X axis entries
    are missing some times.
    The code is shown below. The same code gives barchart in 6.1
    and shows lines in 7.0.2. The colors are different in both the
    versions.
    <html>
    <body>
    <cfchart Format="flash"
    chartHeight="250"
    chartWidth="400"
    showXGridlines = "no"
    showYGridlines = "yes"
    gridlines="5"
    xOffset="0"
    yOffset="0"
    dataBackgroundColor= "##CECFFF" showborder="no"
    font="Arial"
    fontsize="12" fontbold="no" fontitalic="no"
    labelFormat = "currency"
    show3D="yes" rotated="no" sortxaxis="no"
    showlegend="no"
    showmarkers="no"
    backgroundColor = "##CECFFF">
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Jun" value="100">
    </cfchartseries>
    </cfchart>
    <br>
    <cfchart Format="flash"
    chartHeight="250"
    chartWidth="400"
    showXGridlines = "no"
    showYGridlines = "yes"
    gridlines="5"
    xOffset="0"
    yOffset="0"
    dataBackgroundColor= "##CECFFF" showborder="no"
    font="Arial"
    fontsize="12" fontbold="no" fontitalic="no"
    labelFormat = "currency"
    show3D="yes" rotated="no" sortxaxis="no"
    showlegend="no"
    showmarkers="no"
    backgroundColor = "##CECFFF">
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 May" value="90">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Jun" value="70">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Jul" value="85">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 aug" value="100">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Sep" value="90">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Oct" value="70">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Nov" value="85">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2005 Dec" value="100">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Jan" value="90">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Feb" value="70">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Mar" value="85">
    </cfchartseries>
    <cfchartseries type="bar" paintstyle="raise"
    markerstyle="rectangle">
    <cfchartdata item="2006 Apr" value="100">
    </cfchartseries>
    </cfchart>
    </body>
    </html>

    Hi Ken,
    Thanks for the response. Couple follow up questions:
    As far as the migration/configuration wizard goes, here is
    what I am looking to migrate:
    - Data Sources
    - custom tags
    - email server setup
    - missing template settings
    - Java and JVM -- Server Settings
    I think that's it. So, given that, what would the below
    adminConfig.xml need to look like? Again, I am upgrading from MX6.1
    to MX7.0.2. Let me take a stab at it:
    <setupconfig>
    <runsetupwizard>true</runsetupwizard>
    <runmigrationwizard>false</runmigrationwizard>
    <runmxmigrationwizard>true</runmxmigrationwizard>
    <migratecf5>false</migratecf5>
    <migratecf6>true</migratecf6>
    <setupoptions>
    <sampleapps>false</sampleapps>
    <odbc>true</odbc>
    <enablerds>false</enablerds>
    </setupoptions>
    </setupconfig>
    My second question might be irrelevant, but I am curious. The
    way it is setup now, I can't get into the CF Admin page (since the
    uninstall of CFMX7 removed it), but I know I am running 6.1 because
    I tried to hit a test page with a <CFDOCUMENT> tag, and CF
    said it didn't know what that tag was. But, when I go into IIS and
    look a the Application Configuration for .cfm extensions, it has a
    mapping to C:\CFusionMX7\runtime\lib\wsconfig\jrun_iis6.dll. Any
    ideas?
    Thanks so much for your help.
    -tom

  • Questions on Print Quote report

    Hi,
    I'm fairly new to Oracle Quoting and trying to get familiar with it. I have a few questions and would appreciate if anyone answers them
    1) We have a requirement to customize the Print Quote report. I searched these forums and found that this report can be defined either as a XML Publisher report or an Oracle Reports report depending on a profile option. Can you please let me know what the name of the profile option is?
    2) When I select the 'Print Quote' option from the Actions drop down in the quoting page and click Submit I get the report printed and see the following URL in my browser.
    http://<host>:<port>/dev60cgi/rwcgi60?PROJ03_APPS+report=/proj3/app/appltop/aso/11.5.0/reports/US/ASOPQTEL.rdf+DESTYPE=CACHE+P_TCK_ID=23731428+P_EXECUTABLE=N+P_SHOW_CHARGES=N+P_SHOW_CATG_TOT=N+P_SHOW_PRICE_ADJ=Y+P_SESSION_ID=c-RAuP8LOvdnv30grRzKqUQs:S+P_SHOW_HDR_ATTACH=N+P_SHOW_LINE_ATTACH=N+P_SHOW_HDR_SALESUPP=N+P_SHOW_LN_SALESUPP=N+TOLERANCE=0+DESFORMAT=RTF+DESNAME=Quote.rtf
    Does it mean that the profile in our case is set to call the rdf since it has reference to ASOPQTEL.rdf in the above url?
    3) When you click on submit button do we have something like this in the jsp code: On click call ASOPQTEL.rdf. Is the report called using a concurrent program? I want to know how the report is getting invoked?
    4) If we want to customize the jsp pages can you please let me know the steps involved in making the customizations and testing them.
    Thanks and Appreciate your patience
    -PC

    1) We have a requirement to customize the Print Quote report. I searched these forums and found that this report can be defined either as a XML Publisher report or an Oracle Reports report depending on a profile option. Can you please let me know what the name of the profile option is?
    I think I posted it in one of the threads2) When I select the 'Print Quote' option from the Actions drop down in the quoting page and click Submit I get the report printed and see the following URL in my browser.
    http://<host>:<port>/dev60cgi/rwcgi60?PROJ03_APPS+report=/proj3/app/appltop/aso/11.5.0/reports/US/ASOPQTEL.rdf+DESTYPE=CACHE+P_TCK_ID=23731428+P_EXECUTABLE=N+P_SHOW_CHARGES=N+P_SHOW_CATG_TOT=N+P_SHOW_PRICE_ADJ=Y+P_SESSION_ID=c-RAuP8LOvdnv30grRzKqUQs:S+P_SHOW_HDR_ATTACH=N+P_SHOW_LINE_ATTACH=N+P_SHOW_HDR_SALESUPP=N+P_SHOW_LN_SALESUPP=N+TOLERANCE=0+DESFORMAT=RTF+DESNAME=Quote.rtf
    Does it mean that the profile in our case is set to call the rdf since it has reference to ASOPQTEL.rdf in the above url?
    Yes, your understanding is correct.3) When you click on submit button do we have something like this in the jsp code: On click call ASOPQTEL.rdf. Is the report called using a concurrent program? I want to know how the report is getting invoked?
    No, there is no conc program getting called, you can directly call a report in a browser window, Oracle reports server will execute the report and send the HTTP response to the browser.4) If we want to customize the jsp pages can you please let me know the steps involved in making the customizations and testing them.
    This is detailed in many threads.Thanks
    Tapash

Maybe you are looking for

  • Problem with set-up of a macmini server with airport

    Dear readers Last week I took the bolt step to buy a macmini with OS 10.6 server to set-up a server at home for al kinds of reasons including the claim that it should be easy. Well I am still struggling but making progress in discovering how things w

  • My audigy 2 nx sob stor

    hey guys.. creative distributors are still selling the audigy 2 nx in india and it was the only external soundcard availible here so i've bought it, and had it shipped in.. and am now trying to install it. no one seems to have posted anything on this

  • To Apple Engineer. I hear a high pitch noise when surf flash-intesive sites

    Hi. All. I have a Aluminum PowerBook G4 1.25Ghz SD. I agree this is a great machine. It has a somewhat out-dated G4 Chip in it, I can do almost everything I need. I've been using this powerbook for 2 years. Since sometime ago, I've heard very annoyin

  • ORA-15063: ASM discovered an insufficient number of disks for diskgroup "DB

    Dear All, we are moved our storage from hitachi to EMC . after come to emc no issue. But few day before we are try to use old hitachi storage for our T&D,the same storage mounted in new server. After that we are try to start the asm but it disk group

  • Firefox doesn't work on home WIFI but other browsers do

    Just recently Firefox has been giving me all sorts of issues while at home. I did just get a new router and have tried all the trouble shooting that goes along with that but that didn't solve the Firefox issue. Anytime I get on a site like Youtube fo