Is it possible to create a trend line in HTML DB 2.0?

Hello again!
I am trying to replicate bar charts that were created in EXCEL that took advantage of the Trend Line feature. I can create the bar chart just fine, but I am not able to create the trend line. Is there a way to do this? Thanks in advance for your help.

You could sort-of simulate a trend line by adding a second series of bars that plots the trend data.
For example, the first series could plot your data, and the second series could plot the running average.
Analytic functions are handy for this.

Similar Messages

  • Alv  grid : is it possible to create 2 header lines  ?

    alv  grid : is it possible to create 2 header lines  ?
    for example  :
    open year            close year
    from 2006            until   2008
    data
    data
    data
    data
    i know that i can do so in alv list  , but is it possible in alv
    grid ( with screen )   ?

    No, this is not supported by the ALV Grid control.
    Regards,
    Rich Heilman

  • How to create a trend line in cfchart?

    I  can create a scatter chart in cfchart - but I do not know how to create  a linear regression trend line in the same chart as a second data  series.
    Kodemonki provided an answer in a forum discussion a few years  ago (http://forums.adobe.com/message/192848#192848).
    But I am not able to make it work (I have a dangerously small  knowledge of coldfusion and statisitcal formulas).
    Can someone tell me  where i put in my to data query variables - such as for a query that  gives results for two data fields, "Item1" and "Item2".
    Thanks!
    Here is Kodemonki's solution:
    <!--- The min setting is a preference based on how you want the data to be displayed. --->
    <!---<cfset min = arrayMin(grabData["value"]) - 5>--->
         <cfset min = 0>
         <cfset max = ceiling(arrayMax(grabData["value"])) + 1>
         <cfset n = grabData.recordCount>
         <cfset sum_x = 0>
         <cfset sum_x2 = 0>
         <cfset sum_xy = 0>
         <cfloop from="1" to="#grabData.RecordCount#" index="i">
              <cfset sum_x = sum_x + i>
              <cfset sum_xy = (i*grabData.value[i]) + sum_xy>
              <cfset sum_x2 = sum_x2 + (i*i)>
         </cfloop>
         <cfset sum_y = arraySum(grabData["value"])>
         <cfset slope = round(((n*sum_xy) - (sum_x*sum_y))/((n*sum_x2) - (sum_x*sum_x)))>
         <cfset intercept = round((sum_y - (slope*sum_x))/n)>
         <cfset best_fit = QueryNew("id, value")>
         <cfloop from="1" to="#grabdata.RecordCount#" index="i">
              <cfset queryAddRow(best_fit)>
              <cfset value = round((slope*i) + intercept)>
              <cfset QuerySetCell(best_fit, "id", grabData.xlabel[i])>
              <cfset QuerySetCell(best_fit, "value", value)>
         </cfloop>
         <cfchart  scalefrom="#min#" scaleto="#max#" title="#GrabDatapointInfo.label#"  format="jpg" chartHeight="450" chartwidth="500"  xaxistitle="Month/Year">
              <cfchartseries type="line" query="best_fit" valuecolumn="value" itemcolumn="id"/>
              <cfchartseries type="line" query="grabData" valuecolumn="value" itemcolumn="xlabel"/>
         </cfchart>

    Have you read the docs for CFCHART, CHCHARTSERIES, etc?  Did you mess around with the example code sufficiently so you understand how the tags work?
    http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-79 30.html
    Adam

  • 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.)

  • Trend line in scatter chart

    Hi,
    Is it possible to add a trend line to an existing scatter chart?
    Thanks.
    Andy

    The Regression/Trend Line is calculated using the Least Squares Regression method. You can get all the information on what goes into the calculations for Least Squares Regression on wikipedia.
    Then create an actionscript class (its not particularly complicated) that does the Least Squares Regression calculations on a series of x and y observations (that you used to create your plot chart).
    Once you have calculated the Least Squares Regression data for your plot series, you add a line series to your plot chart. Each observation in the lineSeries data should use the x value (independant variable) from the plot data and the calculated y value from your Least Squares Regression class.

  • Trend Line/Regression Capabilities

    Does BIP have the ability to create trend/regression lines?
    I have a scatter plot graph, and I want to create a trend line for the existing scatter plot data set (similar to how excel does it).
    I don't see any options in the wizard, so I assume this requires coding.
    thanks

    chart:
    <Graph stylePath="/oracle/dss/graph/styles/executive.xml" graphType="SCATTER"><LegendArea visible="true" />*<SeriesItems defaultFitlineType="FT_LINEAR"/>*<X1Title text="Sales" visible="true" /><Y1Title text="% Market Share" visible="true" /><LocalGridData colCount="2" rowCount="{count(.//ROW)}"><RowLabels><xsl:for-each select=".//ROW" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><Label><xsl:value-of select="_Broker_Facts_._DEALER" /></Label></xsl:for-each></RowLabels><DataValues><xsl:for-each select=".//ROW" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><RowData><Cell><xsl:value-of select="_Broker_Dealer_Facts_.WHOLESALE_FUND" /></Cell><Cell><xsl:value-of select="_Broker_Dealer_Facts_._Share___" /></Cell></RowData></xsl:for-each></DataValues></LocalGridData></Graph>
    Returns a blank graph area in the .pdf

  • Possibility to create subscription for IR Graph.

    Hi All,
    Subscription is a very nice feature that Apex came up with version 4.
    But what is missing is that we can only create subscription for IR Reports.
    Is there anyone knows a possibility to create a subscription for a IR graph?
    And also is there a possibility to create subscription that produces an HTML same as IR report layout? (Coloring, Grouping etc.)
    Thanks,
    Osman.

    Aline,
    One option is changing the properties of the key figure from 'Always Show' to "Hide can be Shown'. This will let the user select the required key figures to display after executing the report. In this case you can hide all the key figures and give the option of selecting the required keyfigures for display after executing the report.
    Second option is to use a text variable and derive a mechanism of displaying the key figures for what the user selects. This is a bit tedious process. I would recommend you to go for the above said option. and still if you want the other mechanism to work I will give it you, but need sometime to detail that.
    Hope this helps you.........

  • How to create trend line in cfchart?

    I can create a scatter chart in cfchart - but I do not know how to create a linear regression trend line in the same chart as a second data series. Kodemonki provided an answer in a forum discussion a few years ago (http://forums.adobe.com/message/192848#192848) - but I am not able to make it work (I have a dangerously small knowledge of coldfusion and statisitcal formulas). Can someone tell me where i put in my to data query variables - such as for a query that gives results for two data fields, "Item1" and "Item2".
    Here is Kodemonki's solution:
    <!--- The min setting is a preference based on how you want the data to be displayed. --->
    <!---<cfset min = arrayMin(grabData["value"]) - 5>--->
         <cfset min = 0>
         <cfset max = ceiling(arrayMax(grabData["value"])) + 1>
         <cfset n = grabData.recordCount>
         <cfset sum_x = 0>
         <cfset sum_x2 = 0>
         <cfset sum_xy = 0>
         <cfloop from="1" to="#grabData.RecordCount#" index="i">
              <cfset sum_x = sum_x + i>
              <cfset sum_xy = (i*grabData.value[i]) + sum_xy>
              <cfset sum_x2 = sum_x2 + (i*i)>
         </cfloop>
         <cfset sum_y = arraySum(grabData["value"])>
         <cfset slope = round(((n*sum_xy) - (sum_x*sum_y))/((n*sum_x2) - (sum_x*sum_x)))>
         <cfset intercept = round((sum_y - (slope*sum_x))/n)>
         <cfset best_fit = QueryNew("id, value")>
         <cfloop from="1" to="#grabdata.RecordCount#" index="i">
              <cfset queryAddRow(best_fit)>
              <cfset value = round((slope*i) + intercept)>
              <cfset QuerySetCell(best_fit, "id", grabData.xlabel[i])>
              <cfset QuerySetCell(best_fit, "value", value)>
         </cfloop>
         <cfchart scalefrom="#min#" scaleto="#max#" title="#GrabDatapointInfo.label#" format="jpg" chartHeight="450" chartwidth="500" xaxistitle="Month/Year">
              <cfchartseries type="line" query="best_fit" valuecolumn="value" itemcolumn="id"/>
              <cfchartseries type="line" query="grabData" valuecolumn="value" itemcolumn="xlabel"/>
         </cfchart>

    Have you read the docs for CFCHART, CHCHARTSERIES, etc?  Did you mess around with the example code sufficiently so you understand how the tags work?
    http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-79 30.html
    Adam

  • Is it possible to create a form with multiple form fields on a single line?

    Is it possible to create a form with multiple form fields on a single line?  I can't find anything in the documentation or a template that does this.
    I am trying to create a "documents received" checklist with a check box on the left margin, a date-received field to the right of the check box and and a description of the document (Formatted Text) on the far right.
    In the past I have entered the Fixed Text with a word processor, published it to a PDF file, then added the check box and date fields with the Acrobat Forms editor.  I would prefer to use FormsCentral if it is possible.

    We now support multiple fields on one line. This post provides a brief overview.
    Give it a try and send us your feedback.
    Sorry it took so long.
    Randy

  • Is it possible to create and process PO with the line without value?

    Hi,
    I am wondering whether is it possible to create and process the PO with the lines without the value?
    I was thinking that this process would allow me to better track and understand the pallets which arrive to the site so I have set up the pallet as a material but systems doesn't allow me to order the line (pallet) without value?
    Or maybe there is other way which will allow me to track the pallets within the system?
    Many thanks,
    Sylwia

    Dave,
    Thanks for the reply. Of all the suggestions I've received this seemed to
    be most promising. I gave it a try and the problem is that when I attempt
    to save as optimized a message box pops up and says I have to save my
    document first. Low and behold when I save it, compression occurs. Even
    when I select the options you suggest I'm left with a compressed document.
    I'm using Acrobat Pro X
    Jeff
    From:   Dave Merchant <[email protected]>
    To:     Jeff Ross <[email protected]>
    Date:   01/06/2011 09:35 AM
    Subject:        Is it possible to create and save a .PDF
    without any compression to the resulting .PDF?
    You don't want the UncompressPDF plugin - that's designed to split out the
    COS objects but doesn't remove the Flate encoding (plus if you've never
    compiled a plugin before, it's not really the time to learn).
    Instead, simply save your PDF file using the PDF (Optimized) file type,
    click the Settings button and under "Clean Up" - "Object compression
    options", choose "Remove compression". Turn everything else off if you
    want to retain the PDF content exactly as it was before.
    Your document-level scripts will then be in the file as plain text.

  • Possibility of creating combination chart Barchart/Line graph within OBIEE

    Hi
    Is it possible to create a combination chart within OBIEE as can be done in Excel by changing the chart type on one of the individual series - ie graph multiple series of data as a combination of Barchart & Line series?
    Any info appreciated
    Thanks & Regards
    K

    The charting can be as dynamic as you like if you willing to pre-configure the required options.
    Simply create as many charts as you want from one request, and use a view selector to allow the user to switch between them.
    You can use level based measures and any else you want as seperate columns (all in same request) then chart them accordingly.
    Hope this helps

  • Is it possible to create an extension containing a panel for Dreamweaver CC 2014?

    Dear Adobe Community,
    Currently we work in Dreamweaver CS6 with some custom extensions. Since we're now looking into upgrading to CC 2014, obviously, we need to make sure we can either re-use, port or create new extensions to maintain the functionality we have now.
    In short: I haven't been able to create an extension for CC 2014 featuring a panel in any shape or form.
    Creating a HTML5 based (CES 5) extension results in an error only visible in the log (attached).
    Fiddling around in a flash based extension, upping the host application version gives no such error. But, like a HTML 5 based one, doesn't show up in Dreamweaver. (And I'm using the Sublime plugin, since Extension Builder 3 lacks DW support.)
    Mind you, the "extensions" tab in the "Window" menu is lacking entirely.
    Can anyone tell me if it is at all possible to create an extension for DW CC 2014?
    Full log:
    2014-09-01 16:11:24 : INFO  PlugPlug version : 5.0.0.74
    2014-09-01 16:11:24 : INFO  LogLevel : 6
    2014-09-01 16:11:24 : INFO  Copy RGB Background Color Information for AppBar
    2014-09-01 16:11:24 : INFO  Fallback: Copy RGB Background Color Information for AppBar for sRGB usage
    2014-09-01 16:11:24 : INFO  Copy RGB Background Color Information for Panel
    2014-09-01 16:11:24 : INFO  Fallback: Copy RGB Background Color Information for Panel for sRGB usage
    2014-09-01 16:11:24 : INFO  Windows 32-bit PlugPlug logs
    2014-09-01 16:11:24 : INFO  ----------------------------
    2014-09-01 16:11:24 : INFO  PlugPlugSetup() API called:
    2014-09-01 16:11:24 : INFO  hostData->appName : DRWV
    2014-09-01 16:11:24 : INFO  hostData->appVersion : 14.0
    2014-09-01 16:11:24 : INFO  hostData->locale : en_US
    2014-09-01 16:11:24 : INFO  hostData->userInterfaceLocale : en_US
    2014-09-01 16:11:24 : INFO  hostData->supportedTypes : 31
    2014-09-01 16:11:24 : INFO  hostData->apeVersion : unknown
    2014-09-01 16:11:24 : INFO  hostData->overrideManifestLocation : (null)
    2014-09-01 16:11:24 : INFO  isApplicationOffline : false
    2014-09-01 16:11:24 : INFO  hostData->hostCEPHtmlEngineDirectory : (null)
    2014-09-01 16:11:24 : INFO  hostData->hostExtensionDirectory :C:\Users\BC-OLO\AppData\Roaming\Adobe\Dreamweaver CC 2014\en_US\Configuration\CEP\Extensions\
    2014-09-01 16:11:24 : INFO  hostData->hostStageManagerDirectory : C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\
    2014-09-01 16:11:24 : INFO  hostData->imsLibPath: C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\P7\IMSLib.dll
    2014-09-01 16:11:24 : INFO  skinInfo->baseFontSize : 10
    2014-09-01 16:11:24 : INFO  skinInfo->baseFontFamily : MS Shell Dlg 2
    2014-09-01 16:11:24 : INFO  skinInfo->appBarBackgroundColor->antialiasLevel : PlugPlugAntialiasLevel_None
    2014-09-01 16:11:24 : INFO  skinInfo->appBarBackgroundColor->type : PlugPlugColorType_RGB
    2014-09-01 16:11:24 : INFO  ExtensionRegistry started
    2014-09-01 16:11:24 : INFO  Found ExtensionManifest in cache: C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\csxs\manifest.xml
    2014-09-01 16:11:24 : INFO  Found ExtensionManifest in cache: C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.OLO.Nemo\csxs\manifest.xml
    2014-09-01 16:11:24 : INFO  Searching for valid extensions in 'C:\Users\BC-OLO\AppData\Roaming\Adobe\Dreamweaver CC 2014\en_US\Configuration\CEP\Extensions\'
    2014-09-01 16:11:24 : INFO  Searching for valid extensions in 'C:\Program Files (x86)\Common Files\Adobe\CEP\extensions'
    2014-09-01 16:11:24 : DEBUG Searching for valid extensions in 'C:\Program Files (x86)\Common Files\Adobe\CEP\extensions'
    2014-09-01 16:11:24 : INFO  Searching for valid extensions in 'C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions'
    2014-09-01 16:11:24 : DEBUG Searching for valid extensions in 'C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions'
    2014-09-01 16:11:24 : DEBUG ExtensionManifest in cache is still the same (C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\csxs\manifest.xml).
    2014-09-01 16:11:24 : DEBUG ExtensionManifest in cache is still the same (C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.OLO.Nemo\csxs\manifest.xml).
    2014-09-01 16:11:24 : INFO  ExtensionManifest 'C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\csxs\manifest.xml' contains '1' valid extensions for this host
    2014-09-01 16:11:24 : INFO  Found extension with id 'com.example.ext'
    2014-09-01 16:11:24 : DEBUG -> BasePath                    : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext
    2014-09-01 16:11:24 : DEBUG -> ExtensionBundleId           : com.example.ext
    2014-09-01 16:11:24 : DEBUG -> ExtensionBundleVersion      : 1.0.0
    2014-09-01 16:11:24 : DEBUG -> ID                          : com.example.ext
    2014-09-01 16:11:24 : DEBUG -> Version                     : 1.0.0
    2014-09-01 16:11:24 : DEBUG -> MainPath                    : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\index.html
    2014-09-01 16:11:24 : DEBUG -> ScriptPath                  : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\jsx\hostscript.jsx
    2014-09-01 16:11:24 : DEBUG -> ScriptEngineId              : com.example.ext_Engine_Id
    2014-09-01 16:11:24 : DEBUG -> AutoVisible                 : true
    2014-09-01 16:11:24 : DEBUG -> StartOn -> Event            : 0
    2014-09-01 16:11:24 : DEBUG -> Type                        : Panel
    2014-09-01 16:11:24 : DEBUG -> Menu                        : Extension-Name
    2014-09-01 16:11:24 : DEBUG -> MenuPlacement               : (null)
    2014-09-01 16:11:24 : DEBUG -> Size
    2014-09-01 16:11:24 : DEBUG    -> Height                   : 300
    2014-09-01 16:11:24 : DEBUG    -> Width                    : 300
    2014-09-01 16:11:24 : DEBUG -> MaxSize
    2014-09-01 16:11:24 : DEBUG -> MinSize
    2014-09-01 16:11:24 : DEBUG -> IconPath
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> Normal       : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconNormal.png
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> Disbaled     : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconDisabled.png
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> RollOver     : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconRollover.png
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> DarkNormal   : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconDarkNormal.png
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> DarkRollOver : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconDarkRollover.png
    2014-09-01 16:11:24 : DEBUG -> DefaultExtensionData        : (null)
    2014-09-01 16:11:24 : DEBUG -> SpecialExtensionData        : (null)
    2014-09-01 16:11:24 : DEBUG -> RequiredRuntimeList            : 1
    2014-09-01 16:11:24 : DEBUG    -> RequiredRuntime -> Name     : CSXS
    2014-09-01 16:11:24 : DEBUG    -> RequiredRuntime -> Version  : 5.0.0
    2014-09-01 16:11:24 : INFO  ExtensionManifest 'C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.OLO.Nemo\csxs\manifest.xml' contains '1' valid extensions for this host
    2014-09-01 16:11:24 : INFO  Found extension with id 'com.OLO.Nemo.extension'
    2014-09-01 16:11:24 : DEBUG -> BasePath                    : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.OLO.Nemo
    2014-09-01 16:11:24 : DEBUG -> ExtensionBundleId           : com.OLO.Nemo
    2014-09-01 16:11:24 : DEBUG -> ExtensionBundleVersion      : 0.5.0
    2014-09-01 16:11:24 : DEBUG -> ID                          : com.OLO.Nemo.extension
    2014-09-01 16:11:24 : DEBUG -> Version                     : 0.5.0
    2014-09-01 16:11:24 : DEBUG -> MainPath                    : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.OLO.Nemo\Nemo.swf
    2014-09-01 16:11:24 : DEBUG -> ScriptPath                  : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.OLO.Nemo\Nemo.jsx
    2014-09-01 16:11:24 : DEBUG -> ScriptEngineId              : com.OLO.Nemo.extension_Engine_Id
    2014-09-01 16:11:24 : DEBUG -> AutoVisible                 : true
    2014-09-01 16:11:24 : DEBUG -> StartOn -> Event            : 0
    2014-09-01 16:11:24 : DEBUG -> Type                        : Panel
    2014-09-01 16:11:24 : DEBUG -> Menu                        : Nemo
    2014-09-01 16:11:24 : DEBUG -> MenuPlacement               : (null)
    2014-09-01 16:11:24 : DEBUG -> Size
    2014-09-01 16:11:24 : DEBUG    -> Height                   : 400
    2014-09-01 16:11:24 : DEBUG    -> Width                    : 232
    2014-09-01 16:11:24 : DEBUG -> MaxSize
    2014-09-01 16:11:24 : DEBUG -> MinSize
    2014-09-01 16:11:24 : DEBUG -> IconPath
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> Normal       : (null)
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> Disbaled     : (null)
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> RollOver     : (null)
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> DarkNormal   : (null)
    2014-09-01 16:11:24 : DEBUG    -> IconPath -> DarkRollOver : (null)
    2014-09-01 16:11:24 : DEBUG -> DefaultExtensionData        : (null)
    2014-09-01 16:11:24 : DEBUG -> SpecialExtensionData        : (null)
    2014-09-01 16:11:24 : DEBUG -> RequiredRuntimeList            : 1
    2014-09-01 16:11:24 : DEBUG    -> RequiredRuntime -> Name     : CSXS
    2014-09-01 16:11:24 : DEBUG    -> RequiredRuntime -> Version  : 5.0.0
    2014-09-01 16:11:24 : INFO 
    ********** Number of extensions found : 2 **********
    2014-09-01 16:11:24 : INFO  Register Extension called for Extension : com.OLO.Nemo.extension, ExtensionType : Trusted
    2014-09-01 16:11:24 : INFO  ----------------------------------------------------------------
    2014-09-01 16:11:24 : DEBUG Extension inPlayerType : 1
    2014-09-01 16:11:24 : DEBUG Extension mainUTF8Path : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.OLO.Nemo\Nemo.swf
    2014-09-01 16:11:24 : DEBUG Extension iconPathNormal :
    2014-09-01 16:11:24 : DEBUG Extension iconPathRollOver:
    2014-09-01 16:11:24 : DEBUG Extension iconPathDisable:
    2014-09-01 16:11:24 : DEBUG Extension windowType: Panel
    2014-09-01 16:11:24 : DEBUG Extension showWindowOnCreate: true
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry topleftx: 0
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry toplefty: 0
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry width: 232
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry height: 400
    2014-09-01 16:11:24 : INFO  PlugPlugRegisterExtension() callback returned: PlugPlugErrorCode_success //<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<    FLASH BASED plugin
    2014-09-01 16:11:24 : INFO  Register Extension called for Extension : com.example.ext, ExtensionType : Trusted
    2014-09-01 16:11:24 : INFO  ----------------------------------------------------------------
    2014-09-01 16:11:24 : DEBUG Extension inPlayerType : 2
    2014-09-01 16:11:24 : DEBUG Extension mainUTF8Path : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\index.html
    2014-09-01 16:11:24 : DEBUG Extension iconPathNormal : C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconNormal.png
    2014-09-01 16:11:24 : DEBUG Extension iconPathRollOver: C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconRollover.png
    2014-09-01 16:11:24 : DEBUG Extension iconPathDisable: C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\extensions\com.example.ext\icons\iconDisabled.png
    2014-09-01 16:11:24 : DEBUG Extension windowType: Panel
    2014-09-01 16:11:24 : DEBUG Extension showWindowOnCreate: true
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry topleftx: 0
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry toplefty: 0
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry width: 300
    2014-09-01 16:11:24 : DEBUG Extension defaultGeometry height: 300
    2014-09-01 16:11:24 : INFO  PlugPlugRegisterExtension() callback returned: PlugPlugErrorCode_registerExtCallbackNotFound
    2014-09-01 16:11:24 : WARN  Service: com.example.ext not registered properly. //<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<   HTML5 BASED plugin
    2014-09-01 16:11:24 : INFO  PlugPlugSetMenu() callback called for main menu. Extension : , inMenuPosition:
    (null), Menu: [{menuId: '1',nameUtf8: 'Nemo',extensionId: 'com.OLO.Nemo.extension'}]
    2014-09-01 16:11:24 : INFO  PlugPlugSetMenu() callback returned: PlugPlugErrorCode_success
    2014-09-01 16:11:24 : INFO  ExtensionLoadService activated
    2014-09-01 16:11:24 : DEBUG PlugPlugAMTRequest() callback called. Request: <?xml version="1.0" encoding="UTF-8"?><PlugPlugEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./AmtlibPlugPlug.xsd"><request id="1" functionName="getProductLicenseInfo"><arguments/></request></PlugPlugEnvelope>
    2014-09-01 16:11:24 : DEBUG PlugPlugAMTRequest() return value: PlugPlugErrorCode_success
    2014-09-01 16:11:24 : DEBUG PlugPlugAMTRequest() XML returned chunk: <?xml version="1.0" encoding="utf-8" ?>
    <PlugPlugEnvelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="./AmtlibPlugPlug.xsd">
        <response id="1" functionName="getProductLicenseInfo">
            <AdobeIDCreated>1</AdobeIDCreated>
            <LicenseType>Retail</LicenseType>
            <LicenseExpires>0</LicenseExpires>
            <LicenseRefreshes>0</LicenseRefreshes>
            <LicenseEncryptedSerial>909709176804077038364305</LicenseEncryptedSerial>
            <LicensedProductName>EPIC_APP_598</LicensedProductName>
            <SecondsSinceActivation>0</SecondsSinceActivation>
            <SecondsSinceSerialization>8147122</SecondsSinceSerialization>
            <SecondsBeforeExpiration>0</SecondsBeforeExpiration>
            <SecondsBeforeRefresh>0</SecondsBeforeRefresh>
            <AMTLibResponse>6</AMTLibResponse>
            <LicenseStatus>3</LicenseStatus>
            <SerializationGraceInseconds>3888000</SerializationGraceInseconds>
            <ProductCycle>8</ProductCycle>
            <PendingClaims>
                <PendingClaim>
                    <AdobeID>87ADE9246F6370DB6008205B2EAE5B95</AdobeID>
                    <TimeStamp>1401433567</TimeStamp>
                </PendingClaim>
            </PendingClaims>
            <IsSuite>SUITE</IsSuite>
            <APIVersion>2.0</APIVersion>
            <PersonGUIDWithAuthSource>10B3010147A877E8992015B9@AdobeID</PersonGUIDWithAuthSource>
        </response>
    </PlugPlugEnvelope>
    2014-09-01 16:11:31 : INFO  PlugPlugUnloadExtension called for extension : com.OLO.Nemo.extension
    2014-09-01 16:11:31 : DEBUG AllocatePlayer() callback called. playerOptions: 0B4CFB01
    2014-09-01 16:11:31 : DEBUG AllocatePlayer() callback returned: PlugPlugErrorCode_success
    2014-09-01 16:11:31 : DEBUG Connected PlugPlug DOM to APE player
    2014-09-01 16:11:31 : DEBUG Looking for available StageManagers
    2014-09-01 16:11:31 : DEBUG Looking for available StageManagerBundles in StageManagerManifest at C:\Program Files (x86)\Common Files\Adobe\CEP\StageManager\StageManagerManifest.xml
    2014-09-01 16:11:31 : DEBUG No StageManagerManifest found at C:\Program Files (x86)\Common Files\Adobe\CEP\StageManager\StageManagerManifest.xml
    2014-09-01 16:11:31 : DEBUG Looking for available StageManagerBundles in StageManagerManifest at C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\StageManager\StageManagerManifest.xml
    2014-09-01 16:11:31 : DEBUG No StageManagerManifest found at C:\Users\BC-OLO\AppData\Roaming\Adobe\CEP\StageManager\StageManagerManifest.xml
    2014-09-01 16:11:31 : DEBUG Looking for available StageManagerBundles in StageManagerManifest at C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\StageManagerManifest.xml
    2014-09-01 16:11:31 : DEBUG Found 1 possible StageManagers in StageManagerManifest
    2014-09-01 16:11:31 : DEBUG Added StageManagerBundle StageManagerBundle with Version (5.0.0.20140224_v5_0_0_62), ReleasePath (C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\Release\StageManager-5.0.swf), DebugPath (C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\Debug\StageManager-5.0.swf)
    2014-09-01 16:11:31 : DEBUG Determining the most recent StageManagerBundle
    2014-09-01 16:11:31 : DEBUG Now checking StageManagerBundle with Version (5.0.0.20140224_v5_0_0_62), ReleasePath (C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\Release\StageManager-5.0.swf), DebugPath (C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\Debug\StageManager-5.0.swf) against (null)
    2014-09-01 16:11:31 : DEBUG Will use StageManagerBundle with Version (5.0.0.20140224_v5_0_0_62), ReleasePath (C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\Release\StageManager-5.0.swf), DebugPath (C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\Debug\StageManager-5.0.swf) as the most current StageManagerBundle
    2014-09-01 16:11:31 : DEBUG StageManager SWF will be loaded from 'C:\Program Files (x86)\Adobe\Adobe Dreamweaver CC 2014\Configuration\CEP\StageManager\Debug'
    2014-09-01 16:11:32 : DEBUG Add StageManager event listener
    2014-09-01 16:11:32 : INFO  StageManagerController: Created StageManager <STAGE_MANAGER_0> for Extension <com.OLO.Nemo.extension>
    2014-09-01 16:11:32 : INFO  Return value of PlugPlugUnloadExtension call : PlugPlugErrorCode_unknown
    2014-09-01 16:11:32 : INFO  PlugPlugTerminate called
    2014-09-01 16:11:32 : INFO  StageManager: Disposing StageManager <STAGE_MANAGER_0>
    2014-09-01 16:11:32 : DEBUG Remove StageManager event listener
    2014-09-01 16:11:32 : DEBUG Disconnected PlugPlug DOM from APE player
    2014-09-01 16:11:32 : DEBUG DisposePlayer() callback called. apePlayerRef: 06C4CE78
    2014-09-01 16:11:32 : DEBUG DisposePlayer() callback returned: PlugPlugErrorCode_success
    2014-09-01 16:11:32 : INFO  Return value for PlugPlugTerminate: PlugPlugErrorCode_success

    Assuming we have a CSXS Flash based extension which works with DW CC 2014, steps to be followed for the extension to show up in DW CC 2014:
    1.  The extension should be placed at /Users/labuser/Library/Application Support/Adobe/Dreamweaver CC 2014/en_US/Configuration/CEP/Extensions . [WIN: C:\Users\labuser\AppData\Roaming\Adobe\Dreamweaver CC 2014.1\en_US\Configuration\CEP\Extensions] . The installation of the zxp should have placed the extension in the above path.
    2.   Add a custom menu item like <menuitem mmstring:name="menus/DWMenu_Window_BusinessCatalyst" key="Cmd+Shift+B" enabled="true" command="dw.toggleCSXSExtension("com.adobe.bccsdialog");" checked="dw.getFloaterVisibility('BCModulePanel');" id="DWMenu_Window_BC_Modules" /> where the argument in the call dw.toggleCSXSExtension is the Extension Id as seen in the manifest.xml at the line <Extension Id="com.adobe.bccsdialog">.
    Note: All these will work provided the extension is successfully registered with DW.
    To know if an extension is registered with DW, do the following:
    1. On MAC, there is a CSXS preference plist file Users/labuser/Library/Preferences/com.adobe.CSXS.5.plist which has an entry named LogLevel. Set the value to 5 for detailed log. [On windows –Registry - Computer\HKEY_CURRENT_USER\Software\Adobe\CSXS.5]
    2. Quit and Launch DW
    3. Open Console application and under ~/Library/Logs/CSXS/, there will be a log file created with name csxs5-DRWV.log [WIN: log file is in C:\Users\labuser\AppData\Local\Temp]
    4. In the log, search for "Register Extension called for Extension : com.adobe.bccsdialog, ExtensionType : Trusted" and under that, you should see "PlugPlugRegisterExtension() callback returned: PlugPlugErrorCode_success" which mean this extension is successfully registered with DW.
    5. When you try loading the extension from the menu you have added, you should see an entry like "INFO  PlugPlugLoadExtension called for extension : com.adobe.bccsdialog" followed in the next few lines by " INFO  Return value of PlugPlugLoadExtension call : PlugPlugErrorCode_success" and you should see the extension loaded in DW.
    If any of these steps fail with any value other than "PlugPlugErrorCode_success", the extension will not load in DW.
    The solution provided here is a temporary one and we are bringing back the functionality we have removed in DW CC 2014 in the next release.

  • Is it possible to create a custom display type in DIAdem, for example a speedomete​r type instrument​?

    As an example I have velocity data which shows a vehicle accelerating from rest to 60 km/h and then travelling at a constant speed. As opposed to displaying this data using a 2D axis system is it possible to create a new speedometer display type to display this information? Maybe this display type already exists but I have not come across it yet? I've been using DIAdem for a few days now. The current version I am using is 11.2. It has been suggested in the past that it was possible to display data using numeric displays etc but I can't seem to find the features in v11.2. Thanks for your help in advance.

    Hey Matthew,
    I'm sorry for the [extremely] delayed reply - I have been out of the office (and out of the country) for two weeks with extremely limited email access.  I've attached the files that I used to create the example you saw in the YouTube video embedded above.  Please note that I threw this together pretty quickly for the video, and that it is not "commercial quality."  Use this as a proof-of-concept upon which to elaborate to get started.
    The parts are:
    CAN Synchronization.tdv
    This is the DIAdem VIEW Layout that contains the video, map, 2D axis, and embedded user dialog with ActiveX gauge control.  Think of this as the "user interface" you see in the video.
    Gauge.sud
    This is the scriptable user dialog (SUD) box that is embedded in the VIEW Layout described above.  It contains the ActiveX control which I have affectionately named "MyGauge."
    DisplayCursorCommand.vbs
    This is the short script that is designed to react to the event that fires when the cursor is playing in DIAdem VIEW.  I have commented all 5-ish lines with their functionality.
    In order to register the script so that it fires in reaction to the event when the cursor is playing, I chose to register it as a DIAdem UserCommand (Settings » Options » Extensions » User Commands) and then run the line of code:
    View.Events.onCursorChange = "DisplayCursor"
    You could do this elsewhere within some other script.
    Let me know if you have any questions!
    Derrick S.
    Product Manager
    NI DIAdem
    National Instruments
    Attachments:
    Gauge.zip ‏7 KB

  • Is it possible to create a Purchase order wrt a Scheduling agreement?

    Is it possible to create a Purchase order wrt a Scheduling agreement?

    Hi,
    It is not possible to create PO wrt a Scheduling Agreement. Po is basically a formal instruction given to the supplier by the purchasing dept. It is non-binding. Delivery of the goods is not mandatory for a PO. However, in the case of SA, we create SA
    and maintain SA Schedule lines (ME38) with reference to SA. The agreement created with vendor is binding and fixed.
    Hope it clarifies.
    Regards,
    Bijoy Kumar S.P.

  • Is it possible to create a dual y-axis chart in Xcelsius?

    Is it possible to create a dual axis type chart, mixed bar and line?

    Xcelsius does not currently have the ability to create a dual axis chart. However, other users have been able to create a workaround by layering two charts on top of each other and hiding the undesired elements of the second chart. A third chart can be added in much the same way to display the second axis' label(s). Searching the internet for articles from users should locate step by step instructions.

Maybe you are looking for

  • Aperature vs iPhoto. Which to use in light of "Photos"?

    I'm a little "stuck" and not sure which direction to take. I had iPhoto a couple of years ago.  I was completely happy.  However, the number of photos I had was becoming to much for the version of iPhoto that came with my computer (mid 2010 MB Pro). 

  • I'd like to edit my site from iWeb on two computers, is this possible?

    I'd like to edit my site from iWeb on two computers, is this possible? I started creating my site on a PB 15", but when I'm home I like the speed of my iMac and I'd like to continue the editing process on my iMac but I can't find the files that iWeb

  • Error while posting in PRFI (Travel Management)

    Hi Experts, I am facing a problem while posting travel expenses to FI, when i execute PRFI i am getting a message "For the ISO code INR there is no unique SAP currency code for ALE". It is not an error message and trip will be posted with postable am

  • HP w2408h monitor isn't working with Windows 8.1???

    I've been using my HP w2408h monitor as a second screen for my computer.  When I bought the new computer, I just connected the HDMI cable to the main monitor and it worked perfectly (with Windows 8.0 Pro). Yesterday, I upgraded to Windows 8.1 Pro and

  • IC WebClient Transactionstarter- Browser Problem

    Hello, I'm starting a extern URL about the transaction starter from the IC WebClient. The problem is, that the new extern browser window didn't have an navigationbar, adressbar and no buttons(back & foreward)! How can I get these back? Is it customiz