Dual Y-Axis

Hi,
I need to create a dual y-axis chart.
Y-Axis of the left should shows current and historical sales price of a item
Y-Axis of the right should shows current and historical sales unit of a item
"Line Bar Combo" Graph is showing one Y-Axis as bar, but I want both Y-Axis to be line.
How do I achive this ?
Any help is much appreciated.
Best wishes.

Hi,
As of now, OBIEE doesnt have the option dual Y-Axis in line chart. We also have lot of similar charts and have raised an SR. I believe it might come in future release.
Thanks!
Regards,
Venkat

Similar Messages

  • WebI Combination Chart / Dual Y-Axis

    Hi there,
    is there still no Dual Y-Axis chart component in WebIntelligence (XI 3.0)?
    What options and workaround are there to create dual Y-Axis charts in WebI?
    I thought of implementing Xcelsius-Flashs with Dual Y-Axis, but it's not very satisfying to me, that WebI can't show this chart-type by default.
    Best Regards
    Ulrich

    Under the set of Bar Chart Templates, you will find a chart type call "Vertical/Horizontal Bar and Line" chart.  You can drag measures to the left(Y) and right(Z) axis as you like.  I see this in XIR2 and am pretty sure XI3.0 should have this as well.  Let me know if you see it.
    ~Jimmy

  • Unable to set data2 Label in dual Y-Axis

    Hi
    I've a dual Y-axis chart.
    I want to display a data2 label to explain the meaning of the second axis. when i go to the chart option and title tab there is a textbox "data2 title" . If I type something there, my text is not displayed.
    What I'm doing wrong? Is there a special option for displaying a label next to the second y-axis?
    thak you for your help

    Hi Chris,
    The begin of the expection stack gives you the reason:
    06/11/03 09:13:59 java.sql.SQLException: The method 'setSavepoint' cant be called when a global transaction is active
    The reason is, that either the whole global transaction must be commited or rollbacked.
    I don't know your actual configuration, but between the methods begin() and commit()/rollback() of the UserTransaction instance, OC4J/OracleAS uses a global transaction (= XA transaction) in your configuration. The state of a global transactions is completely under the control of the application server and several restrictions must be considered. One of them is, that you can't use the method setSavePoint/. E.g. you can't also call the method setAutoCommit(true) in this state, or change the transaction isolation level via setTransactionIsolation(newLevel).
    This is NOT a limitation of the OC4J/OracleAS but is true for ALL application servers.
    P.S. I can successfully set savepoints and rollback to savepoints in weblogic 9.0This means, that WebLogic 9.0 doesn't use a global transaction in this case.
    Because I don't know your configurations (Oracle and WebLogic) I can't say, why the behave different in this situation.
    Best,
    Manfred

  • ADF mobile: how to create graph with dual Y axis?

    Hi,
    Jdev 11.1.2.3.0 + mobile extension.
    I try to figure out how to create a dvtm:comboGraph with dual Y axis but without success.
    All series are rendered on the Y1 axis. Y2 axis even does not appear in the graph.
    here my code:
        <dvtm:comboChart var="row" value="#{bindings.lmrgGraph1.collectionModel}"
                         id="cc1" timeAxisType="enabled">
          <amx:facet name="dataStamp">
            <chartDataItem group="#{row.timeStamp}" value="#{row.acetat}"
                           series="#{lmrgGraphBundle.ACETAT}">
              <!--dvtm:referenceObject color="ff0000" displayInLegend="on"
                                    lineValue="#{bindings.graphTresholdAcetat.inputValue}"
                                    lineWidth="2"/-->
            </chartDataItem>
            <chartDataItem group="#{row.timeStamp}" value="#{row.plannedMachines}"
                           series="#{lmrgGraphBundle.BMPLAN}"/>
            <chartDataItem group="#{row.timeStamp}" value="#{row.actualMachines}"
                           series="#{lmrgGraphBundle.BMACTUAL}"/>
          </amx:facet>
          <dvtm:legend position="end" id="l1">
            <dvtm:legendSection id="ls1" title="Legend"/>
          </dvtm:legend>
          <dvtm:yAxis axisMaxValue="#{bindings.maxYAxisValueAcetat.inputValue}"
                      title="#{lmrgGraphBundle.MENGE}">
            <dvtm:majorTick/>
          </dvtm:yAxis>
                <!--dvtm:y2Axis majorIncrement="1.0"
                       title="#{lmrgGraphBundle.BETRIEBSMITTEL}"
                       axisMaxValue="#{bindings.maxYAxisValueMachines.inputValue}"-->
          <dvtm:y2Axis majorIncrement="1.0"
                       title="#{lmrgGraphBundle.BETRIEBSMITTEL}"
                       axisMaxValue="10">
            <dvtm:majorTick/>
          </dvtm:y2Axis>
          <amx:facet name="seriesStamp">
            <dvtm:seriesStyle assignedToY2="false" color="0052ff" lineWidth="2"
                              rendered="#{(row.series eq lmrgGraphBundle.ACETAT)}"
                              series="#{row.series}"/>
            <dvtm:seriesStyle assignedToY2="true" color="e7e700" lineWidth="10"
                              rendered="#{(row.series eq lmrgGraphBundle.BMPLAN)}"
                              type="bar" series="#{row.series}"/>
            <dvtm:seriesStyle assignedToY2="true" color="94f700" lineWidth="10"
                              rendered="#{(row.series eq lmrgGraphBundle.BMACTUAL)}"
                              type="bar" series="#{row.series}"/>
          </amx:facet>
        </dvtm:comboChart>kr
    Peter

    Hi Jan,
    meanwhile I have managed to display the second Y axix corret.
    Here my code:
                <dvtm:comboChart var="row"
                                 value="#{bindings.lmrgGraph.collectionModel}"
                                 id="cc1" animationOnDisplay="alphaFade"
                                 hideAndShowBehavior="withRescale"
                                 rolloverBehavior="dim" inlineStyle="height:50%;">
                    <amx:facet name="dataStamp">
                        <dvtm:chartDataItem group="#{row.timeStamp}"
                                            value="#{row.acetat}"
                                            series="#{bindings.lmrgGraph.hints.acetat.label}"/>
                        <dvtm:chartDataItem group="#{row.timeStamp}"
                                            value="#{row.plannedMachines}"
                                            series="#{bindings.lmrgGraph.hints.plannedMachines.label}"/>
                        <dvtm:chartDataItem group="#{row.timeStamp}"
                                            value="#{row.actualMachines}"
                                            series="#{bindings.lmrgGraph.hints.actualMachines.label}"/>
                    </amx:facet>
                    <amx:facet name="seriesStamp">
                        <dvtm:seriesStyle series="#{bindings.lmrgGraph.hints.acetat.label}"
                                          color="0052ff" type="line"/>
                        <dvtm:seriesStyle assignedToY2="true" color="e7e700"
                                          type="line"
                                          series="#{bindings.lmrgGraph.hints.plannedMachines.label}"/>
                        <dvtm:seriesStyle assignedToY2="true" color="94f700"
                                          type="line"
                                          series="#{bindings.lmrgGraph.hints.actualMachines.label}"/>
                    </amx:facet>
                    <dvtm:xAxis/>
                </dvtm:comboChart>
    /code]
    There are still some issues if x-axis is timestamp enables but I have already created an SR for this.
    regards
    Peter                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

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

  • How to plot Dual Y-axis in BI Publisher chart

    Is it possible to plot dual axis in BI publisher chart?
    If I want to plot
    x-axis => Month
    y-axis(left) => Sales(in USD)
    y-axis(right) => Quantity
    how can I do in BIPublisher. Scale of Sales will not be suitable to plot Quantity.
    Please suggest.
    Thanks & Regards.

    for example : see seriesItems. and assignedTo
    <Graph seriesEffect="SE_AUTO_GRADIENT" graphType= "BAR_VERT_CLUST2Y">
    <Y1Axis axisMinAutoScaled="false" axisMinValue="0" axisMaxAutoScaled="true" majorTickStepAutomatic="true"/>
    <Y2Axis axisMinAutoScaled="false" axisMinValue="0" axisMaxAutoScaled="true" majorTickStepAutomatic="true"/>
    <LegendArea visible="true" position="LAP_BOTTOM"/>
    <PlotArea fillColor="#0000FF"/>
    <SeriesItems>
    <Series id="0" color="#B0C4DE" borderColor="#000000" markerType="MT_BAR" assignedToY2="false"/>
    <Series id="1" color="#0000C0" borderColor="#000000" markerType="MT_BAR" assignedToY2="false"/>
    <Series id="2" color="#B0C4DE" markerType="MT_MARKER" markerShape="MS_NONE" assignedToY2="true" lineWidth="0"/>
    <Series id="3" color="#0000C0" markerType="MT_MARKER" markerShape="MS_NONE" assignedToY2="true" lineWidth="0" />
    </SeriesItems>
    <LocalGridData colCount="{count(xdoxslt:group(.//G_1, 'MONTHANDYEAR'))}" rowCount="4">
    <RowLabels>
         <Label>Baseline (bar)</Label>
         <Label>Actuals (bar)</Label>
         <Label>Baseline cumulative (line)</Label>
         <Label>Actual cumulative (line)</Label>     
    </RowLabels>
    <ColLabels>
    <xsl:for-each-group select=".//G_1" group-by="MONTHANDYEAR">
    <Label>
    <xsl:value-of select="current-group()/MONTHANDYEAR"/>
    </Label>
    </xsl:for-each-group>
    </ColLabels>
    <DataValues>
    <RowData>
    <xsl:for-each-group select=".//G_1" group-by="MONTHANDYEAR">
    <Cell>
    <xsl:value-of select="sum(current-group()/BUDGET_VALUE_DELTA[.!=''])"/>
    </Cell>
    </xsl:for-each-group>
    </RowData>
    <RowData>
    <xsl:for-each-group select=".//G_1" group-by="MONTHANDYEAR">
    <Cell>
    <xsl:value-of select="sum(current-group()/REVENUE_AMOUNT[.!=''])"/>
    </Cell>
    </xsl:for-each-group>
    </RowData>
    <RowData>
    <xsl:for-each-group select=".//G_1" group-by="MONTHANDYEAR">
    <Cell>
    <xsl:value-of select="sum(current-group()/CUMULATED_SBP2[.!=''])"/>
    </Cell>
    </xsl:for-each-group>
    </RowData>
    <RowData>
    <xsl:for-each-group select=".//G_1" group-by="MONTHANDYEAR">
    <Cell>
    <xsl:value-of select="sum(current-group()/ACTUAL_CUMULATED[.!=''])"/>
    </Cell>
    </xsl:for-each-group>
    </RowData>
    </DataValues>
    </LocalGridData>
    </Graph>

  • Dual Y axis tab on the Chart Options dialog box

    Post Author: training2go
    CA Forum: Charts and Graphs
    Hello,
    I see this tab (on the version of Crystal in Visual Studio 2005), but I can't access it, so I'm wondering what type of chart it applies to. I've created each type of chart that's available, but this tab is always grayed out, so I'm guessing that I'm missing something. Any advise would be greatly appreciated. Thank you.

    You're right, it has been that way for a long time. I've never bothered reporting it as a bug since it's simple enough to deal with, but reporting it would be a reasonable thing to do.

  • Dual Line Chart : Dynamic Secondary Axis

    Hello All,
    I am currently working on Dual Line Axis to Compare  ANY Two KF's based on user Selection in the provided Dropdown boxes. Also, the data has to be switched between Month and Quarter based on the Radio button Group.
    Here is the Screen shot of the required output format. The KF1 and KF2 are filtered by code Chart.setSelectedValue(KF1 , KF2);
    I am getting an error saying 'Can't Display data, At least one Measure has to be in Rows". I took 3 Measures in Rows and Calmonth in Column in the Default View.
    Can anyone please throw some light how to achieve this ? The reason for the DUAL Axis is, One measure is $ Value and Second Measure is % Values.
    Appreciate your help.
    Thanks,
    Priya.

    Hi Priya -
    That is a nice chart you have.
    Only thing I could find that could be related is this note:
    http://service.sap.com/sap/support/notes/1942481
    It may or may not help.
    Could you also specify which version of Design Studio you are using?

  • ENH: Enable Dual-axis Bar Charts

    Enhancement Request for SVG Charts (Bar, Line):
    1) Allow specification of dual y-axis values, such that series a, b, and c can show relative to values on y-axis1 (on left side of chart) and series x, y, and z can show relative to values on y-axis2 (on right side of chart).
    2) Format spacing of x-axis values across the width of the chart, not based on the max rows specified for the series. For example, showing weeks on the x-axis with max rows = 53, if actual rows in the chart is 13, the valules would spread out to fill the width of the axis, not leaving empty space for the remaining, unfilled, weeks.

    Hi Lora,
    Once you set a series to be displayed on the secondary axis, you will be able to configure the secondary axis on the Behavior and Appearance tabs.
    Basically, if no series are plotted on the secondary axis, it will appear as if this capability is not available.
    Please let me know if I have explained myself correctly.
    Thanks,
    Gerrit

  • Re: How to have more than one vertical axis in graphs...

    As a matter of fact, there is a library of dual-Y-axis controls, developed
    by National Instruments, but for some reason it did not make it into the
    official release. I've been using it under v.5.01 quite successfully. The
    only problem with it is that if you try to edit it using control editor, LV
    crashes (under v.5.1 and WinNT 4).
    -- Sergey Liberman
    -- Don't use Reply button! Thank you.

    I'm running into the same problem... can somewhere give me a pointer
    to where I might find a library like this? I have done the "put
    the y-axis on the right side of the second graph" and it works pretty
    well, but I'd like to see how other people might do it.
    Hopefully the LabView folk will also implement a scrollbar for X-Y plots
    (like they have for the charts) sometime... sometimes strip charts aren't
    sampled evenly.
    Andrew Berkley
    Physics Department
    University of Maryland
    RE:
    >> As a matter of fact, there is a library of dual-Y-axis controls, developed
    >> by National Instruments, but for some reason it did not make it into the
    >> official release...

  • Dual Y stacked bar graph - how to force both y scales to be the same size

    Hi,
    I use dual y stacked bar graph to show values side by side. Since one value is smaller, Y scales have different max values. How can I fore them to be the same?

    Hello,
    OK. This means you need automatic scale for the y axis.
    BTW: Why do you need dual y axis if they should have the same scale?
    The common use case for dual y axis is to show two series with different units and/or scale.
    regards
    Peter

  • How do I programmatically set the scale range for the two y-scales of the two plots

    hi,
    I am using labview 8.2
    To programmatically assign a range to the y-scale of a plot I use a Property Node for the plot display and adjust Y.Scale.Range.Minimum.
    How can I assign the ranges of a plot with multiple y-scales?
    miethe

    One of the problems with using two Y scales is that the display can get very messy is you also want grids on the plot. To address this, I created the attached VI. After allowing the right axis to autoscale, it fine tunes the marker locations so the grid lines for the left and right side overlay each other.
    To use it all you have to do is write your data to the graph and then call this VI with a reference to the graph.
    Mike...
    Certified Professional Instructor
    Certified LabVIEW Architect
    LabVIEW Champion
    "... after all, He's not a tame lion..."
    Be thinking ahead and mark your dance card for NI Week 2015 now: TS 6139 - Object Oriented First Steps
    Attachments:
    Match Dual Y-Axis.vi ‏25 KB

  • Combined Stacked and side-by-side bar chart?

    I need to create a chart where I for each group (x axis) have two bars where each bar has two stacked values.
    Is this possible to do? I found one method which seems to work and that is using the dual Y axis to group the values into two groups. Question is if it will cause any problems (I have found out that you need to make sure that each of the two y-axis is using the same scale).

    I don't think so.  I wanted to have a stacked percentage chart on a single bar (like a flat version of a pie chart), but gave up on that too.
    Fuskie
    Who settled with a pie chart...

  • Getting dual axis on a graph in SSRS to align at 0

    I have a graph that has 2 values that are plotted on dual axes.  Both values can be positive or negative.  Is there a way in SSRS to align the 0 point of both axes?  Preferably, I would like to retain dynamic values for the axes.
    I'm using 2008r2
    Thanks for any help.

    I figured out the issue with incrementing whole numbers, and this is the solution I used.
    You will need to manually set the interval value to determine the increments you want the line showing up. In my case I wanted the primary axis to show a value every 5 and the secondary axis to show a value every 5000.
    Manually setting the interval will cause the primary and secondary axes to be off again. To fix this, we will need to have the same amount of intervals on both axes. For instance, if we have 6 intervals on the primary axis we will need to have 6 intervals
    on the secondary axis to keep them lined up.
    I wrote custom code that will be used as expressions in the Maximum setting for both axes. The purpose of the functions will be to determine which axis will have more intervals, then calculate the maximum value needed to have the same amount of intervals.
    Primary Axis Maximum Expression
    =Code.FindMaxValueForPrimary(max(Fields!PrimaryField.Value), max(Fields!SecondaryField.Value))
    Secondary Axis Maximum Expression
    =Code.FindMaxValueForSecondary(max(Fields!PrimaryField.Value), max(Fields!SecondaryField.Value))
    Custom Code
    Public Function FindMaxValueForPrimary(ByVal PrimaryValue as Integer, ByVal SecondaryValue As Integer) As Integer
    IF Ceiling(SecondaryValue/5000) >= Ceiling(PrimaryValue/5) Then
    Return Ceiling(SecondaryValue/5000) * 5
    Else
    Return Ceiling(PrimaryValue/5) * 5
    End If
    End Function
    Public Function FindMaxValueForSecondary(ByVal PrimaryValue as Integer, ByVal SecondaryValue As Integer) As Integer
    IF Ceiling(SecondaryValue/5000) >= Ceiling(PrimaryValue/5) Then
    Return Ceiling(SecondaryValue/5000)*5000
    Else
    Return Ceiling(PrimaryValue/5) * 5000
    End If
    End Function

  • JFreeChart Dual Axis Problem

    Hi:
    I've developed a Dual Axis Chart (bar and line char) using the JFreeChart library.
    However, when the chart is displayed in the screen the line chart appears always behind the bar chart. How can I solve this? I would like that the bar chart appears behind the line chart.
    Here you can find a little bit of code:
               final DefaultCategoryDataset dataset = new DefaultCategoryDataset();
               final DefaultCategoryDataset dataset2 = new DefaultCategoryDataset();
    // Here I add values to the datasets
                JFreeChart chart;
                if(tres.isSelected()) chart = ChartFactory.createBarChart3D("EVOLUCI� DE LA PRODUCCI� DE RESIDUS MUNICIPALS ("+c+") "+dd1+" --> "+dd2+". QUANTITATS EXPRESADES EN KG. / HAB. * DIA", "MES", "KG. / HAB. * DIA", dataset, PlotOrientation.VERTICAL, true, true, false);
                else chart = ChartFactory.createBarChart("EVOLUCI� DE LA PRODUCCI� DE RESIDUS MUNICIPALS ("+c+") "+dd1+" --> "+dd2+". QUANTITATS EXPRESADES EN KG. / HAB. * DIA", "MES", "KG. / HAB. * DIA", dataset, PlotOrientation.VERTICAL, true, true, false);
                chart.setBackgroundPaint(new Color(204, 204, 255));
                final CategoryPlot plot = chart.getCategoryPlot();
                plot.setBackgroundPaint(Color.white);
                plot.setDomainAxisLocation(AxisLocation.BOTTOM_OR_LEFT);
                plot.setRangeAxisLocation(AxisLocation.TOP_OR_LEFT);
                final CategoryItemRenderer renderer1 = plot.getRenderer();
                renderer1.setSeriesPaint(0, Color.RED);
                final ValueAxis axis2 = new NumberAxis3D("POBLACI�");
                plot.setRangeAxis(1, axis2);
                plot.setDataset(1, dataset2);
                plot.mapDatasetToRangeAxis(1, 1);
                final CategoryItemRenderer renderer2 = new LineAndShapeRenderer();
                renderer2.setSeriesPaint(0, Color.blue);
                plot.setRenderer(1, renderer2);
                plot.setDatasetRenderingOrder(DatasetRenderingOrder.REVERSE);
                plot.setNoDataMessage("NO HI HA DADES");
                ChartFrame frame = new ChartFrame("COMPOSICI� DELS RESIDUS MUNICIPALS", chart);
                frame.setIconImage(new ImageIcon(getClass().getResource("/rsu/Imatges/reciclatge.gif")).getImage());
                frame.pack();
                Dimension dPan = Toolkit.getDefaultToolkit().getScreenSize();
                Dimension dFin = frame.getSize();
                Double x = new Double((dPan.getWidth()-dFin.getWidth())/2);
                Double y = new Double((dPan.height - dFin.height)/2);
                frame.setLocation(x.intValue(), y.intValue());
                frame.setVisible(true);Lots of thanks for your help.

    Hi, I'm new using Java and JFreeChart and I'm facing a problem. I need to draw a XY chart with 2 series and assign each one a choosen color, but I can only have them in the same color! I don't know what I'm doing wrong. Can anybody help me whit this?
    Thanks in advance,
    Freddy
    P.D: This is the code for what I'm trying to do (excuse my english)
    final TickUnits units = new TickUnits();
                   units.add(new NumberTickUnit(337.5, new CompassFormat()));
                   units.add(new NumberTickUnit(315.0, new CompassFormat()));
                   units.add(new NumberTickUnit(292.5, new CompassFormat()));
                   units.add(new NumberTickUnit(270.0, new CompassFormat()));
                   units.add(new NumberTickUnit(247.5, new CompassFormat()));
                   units.add(new NumberTickUnit(225.0, new CompassFormat()));
                   units.add(new NumberTickUnit(202.5, new CompassFormat()));
                   units.add(new NumberTickUnit(180.0, new CompassFormat()));
                   units.add(new NumberTickUnit(157.5, new CompassFormat()));
                   units.add(new NumberTickUnit(135.0, new CompassFormat()));
                   units.add(new NumberTickUnit(112.5, new CompassFormat()));
                   units.add(new NumberTickUnit(90.0, new CompassFormat()));
                   units.add(new NumberTickUnit(67.5, new CompassFormat()));
                   units.add(new NumberTickUnit(45.0, new CompassFormat()));
                   units.add(new NumberTickUnit(22.5, new CompassFormat()));
                   XYDataset dataset7 = createhourDataset(24,50,"Velocidad");
                   JFreeChart chart8 = ChartFactory.createTimeSeriesChart("Diaria", "Hora", "mps", dataset7, true, true, false);
                   XYPlot plot2wd1 = chart8.getXYPlot();
                   final XYItemRenderer r1 = plot2wd1.getRenderer();
                   r1.setSeriesPaint(0, Color.RED);
                   ValueAxis axis2wd1 = new NumberAxis("");
                   axis2wd1.setRange(0.0, 360.0);
                   plot2wd1.setRangeAxis(1, axis2wd1);
                   axis2wd1.setStandardTickUnits(units);
                   axis2wd1.setAxisLinePaint(Color.blue);
                   axis2wd1.setTickLabelPaint(Color.blue);
                   axis2wd1.setTickMarkPaint(Color.blue);
                   plot2wd1.setDataset(1, createhourDataset(24,50,"Direcci�n"));
                   final XYItemRenderer r2 = plot2wd1.getRenderer();
                   r2.setSeriesPaint(0, Color.blue);
                   plot2wd1.setRenderer(1, r2);
                   ChartPanel panel_D1 = new ChartPanel(chart8);

Maybe you are looking for

  • Itunes keeps closing itself

    It sais it has encountered an error and needs to be closed everytime I have it running and are attemtping to sync and edit music files

  • Multiple HTML instances

    Hello all, Can anyone tell me how can i make the server available on multiple ports? The objective is the following: I have 2 identical applications and i want them to be mapped on the same application server, but obviously to different ports. Can an

  • Cant print envelopes from mail merge

    I am trying to print address on envelopes from a mail merge and my HP photosmart plus B210 keeps defaulting to the photo try even though I have selected main try and that is where the envelopes are. Please help, thanks!

  • Performance Issue caused by XmlResults..next().asString();

    Hi all, We there is a simple method to get related documents from Berkeley DB through XQuery, and using XmlResults..next().asString() to get the result. (Note: the result is quite large.) If call this method in loop, it will become slower and slover,

  • How do I set up jms destination  of OSB Alert?

    According to the document description,a JMS destination URI in the format: jms://host:port/factoryJndiName/destJndiName. My jms is on a cluster, So, I Set this URI: jms://10.1.1.100:8001,10.1.1.101:8001,10.1.100:8002,10.1.1.101:8002/factoryJndiName/d