Stacked 2D Column legend

I have a chart of stacked 2D Column, it includes 4 colors, but the legend only displays the color of the first bar.
This is: If the first bar has 1 color, the legend shows 1 color even though the chart has 4 colors in other bars.
I am expecting 4 colors in the legend.
Thanks,
Yivon

Hello Yivon,
I created an example here: http://anychart.apex-evangelists.com/pls/apex/f?p=755:43:0::NO:::
Left is Anychart 3, right is Anychart 5... as you can see no problems here.
Probably you have multiple series? Try with one serie and a query like:
SELECT NULL LINK,
ENAME LABEL,
SAL, comm
FROM EMP
ORDER BY ENAME
You can just add the values next to each other at the end.
Regards,
Dimitri
http://dgielis.blogspot.com/
http://www.apex-evangelists.com/

Similar Messages

  • Is Stacked Bar/Column chart Supports Multiseries..?

    Hi All
    Is Stacked Bar/Column chart Supports Multiseries..?
    I was trying to build a Stacked Bar chart .And add a line
    series to it But when i run this I'm getting an error
    like this
    "ReferenceError: Error #1056: Cannot create property offset
    on mx.charts.series.LineSeries."
    Here is My Code
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="
    http://www.adobe.com/2006/mxml"
    layout="absolute">
    <mx:Script>
    <![CDATA[
    import mx.collections.ArrayCollection;
    [Bindable]
    public var netPrByQtrData:ArrayCollection=new
    ArrayCollection
    {quarter:"Q4 05", bottom:88.89, middle:11.11, top:0.00,
    netPromoter:-88.89},
    {quarter:"Q1 06", bottom:80.00, middle:10.00, top:10.00,
    netPromoter:-70.00},
    {quarter:"Q2 06", bottom:16.67, middle:50.00, top:33.33,
    netPromoter:16.67},
    {quarter:"Q3 06", bottom:28.57, middle:28.57, top:42.86,
    netPromoter:14.29},
    {quarter:"Q4 06", bottom:80.00, middle:20.00, top:0.00,
    netPromoter:-80.00},
    {quarter:"Q1 07", bottom:80.00, middle:0.00, top:20.00,
    netPromoter:-60.00},
    {quarter:"Q2 07", bottom:60.00, middle:20.00, top:20.00,
    netPromoter:-40.00},
    {quarter:"Q3 07", bottom:80.00, middle:0.00, top:20.00,
    netPromoter:-60.00}
    ]]>
    </mx:Script>
    <mx:Panel title="Net Promoter By Quarters" width="500"
    height="350" x="31" y="34">
    <mx:ColumnChart id="mychart"
    dataProvider="{netPrByQtrData}"
    showDataTips="true"
    height="250"
    width="450" type="stacked">
    <mx:horizontalAxis>
    <mx:CategoryAxis categoryField="quarter"/>
    </mx:horizontalAxis>
    <mx:series>
    <mx:ColumnSeries
    yField="bottom"
    xField="quarter"
    displayName="Bottom" >
    </mx:ColumnSeries>
    <mx:ColumnSeries
    yField="middle"
    xField="quarter"
    displayName="Middle" >
    </mx:ColumnSeries>
    <mx:ColumnSeries
    yField="top"
    xField="quarter"
    displayName="Top" >
    </mx:ColumnSeries>
    <mx:LineSeries
    yField="netPromoter"
    xField="quarter"
    displayName="Net Promoter" >
    </mx:LineSeries>
    </mx:series>
    </mx:ColumnChart>
    <mx:Legend dataProvider="{mychart}"
    direction="horizontal"/>
    </mx:Panel>
    </mx:Application>
    If I omit type="stacked" from
    <mx:ColumnChart id="mychart"
    dataProvider="{netPrByQtrData}"
    showDataTips="true"
    height="250"
    width="450" type="stacked">
    The code will work perfectly..But unfortunately its not a
    Stacked Chart...
    Is there any solution for this....Please reply your valuable
    suggestions ASAP.....
    Thanks in Advance..
    Subin

    Hello,
    In Flex Builder 4 and Above.
    For composite charts with Multiple column series and line series,
    Remove type = “stacked” property from Column Chart.
    and Add columnset like.
    <mx:series>
        <mx:ColumnSet type="stacked">
           <mx:ColumnSeries yField="aSales" displayName="A Sales" />
           <mx:ColumnSeries yField="bSales" displayName="B Sales" />
        </mx:ColumnSet>
        <mx:LineSeries yField="total" displayName="Total Sales"/>
    </mx:series>
    Cheers,
    SaM.

  • Stacked 2D Column chart - strange behaviour after upgrade to 3.1.1.

    Problem is, when I choose chart type Stacked 2D Column, I get values on columns (I want just hints). 3.1 version works fine, and after upgrade to 3.1.1, values starts to apper on columns (show_values checkbox is disabled).
    Interesting is, that Stacked 3D column works fine, and values dont apper.
    Any idea, please?
    Kreso...

    Christopher,
    There is a workaround for this issue, but since we received the new flash file from AnyChart to fix in 3.1.2, please upgrade to 3.1.2 when it becomes available. To workaround in 3.1.1:
    1. Download and unzip the 3.1 installation medium.
    2. Find the /images/flashchart directory where the 3.1.1 images reside.
    3. Replace the 3.1.1 version of /images/flashchart/Stacked2DColumn.swf with
    the 3.1 version of the file from step 1.
    4. If using the PL/SQL Gateway (EPG), run apxldimg.sql to reload the 3.1.1 /images files into the database.
    - Christina

  • Chart (stacked bars) - corresponding legend

    hi everyone,
    i've got the following situation: I'm creating an vertical stacked bar chart (type:BAR_VERT_STACK) with the following code:
    <DataValues>
    <xsl:for-each-group select=".//ROW[COUNTRY!='']" group-by="COUNTRY">
    <xsl:sort select="COUNTRY" order="DESCENDING"/>
    <xsl:variable name="my_country" select="COUNTRY"/>
    <RowData>
    <xsl:for-each-group select="../ROW[MONTH!='']" group-by="MONTH">
    <xsl:variable name="my_month" select="MONTH"/>
    <Cell><xsl:value-of select="../ROW[COUNTRY=$my_country] [MONTH=$my_month]/AMOUNT"/></Cell> </xsl:for-each-group>
    </RowData>
    </xsl:for-each-group>
    </DataValues>
    and the legend:
    <RowLabels>
    <xsl:for-each-group select=".//ROW" group-by="COUNTRY">
    <xsl:sort select="COUNTRY"/>
    <Label><xsl:value-of select="current-group()/COUNTRY"/></Label>
    </xsl:for-each-group>
    </RowLabels>
    everything works fine, but my problem is, that the created stacks are not in the same order as my legend .... so, if my first stack for example shows US, then the last item of the legend should show US as well.
    does anyone know how to create this behaviour?
    thanks

    Mike,
    thanks - I am aware of the stacked barcharts - the question is, if this type is available in a clustered manner as well ?
    I so far cud only see either "stacked barcharts" or "clustered barcharts" - but not "clustered , stacked barcharts" which wud be series of stacked barcharts ...
    TIA
    Bernhard

  • Bars not stacking with column set

    Hello... i 've been coding with flex for almost a year now
    and i have run into a very interesting problem.
    i have a bunch of querys returning results for column series'
    that make up a column set.
    What confuses me is that some of them stack and some dont...
    and more so... one bar COVERS the others... clearly not stacking
    like it should. What would cause a series not to stack... but
    cover?

    Hello Dmitry,
    Of course Mr.Thomas is write that after getting sorted Webdynpro ALV component temporarily takes control of the internal data table and invalidates the corresponding context node of your application during this time.
    And this is the main reason we did not get the row selected after sorting done.
    But, we have the way to achieve the solution for this issue.
    Please follow the logic below:
    After Binding your ITAB to the ALV context node: Write the code below
    *************Refresh the SALV_WD_TABLE with*******************************************
    *DATA lo_INTERFACECONTROLLER TYPE REF TO IWCI_SALV_WD_TABLE .
    DATA: ls_in TYPE if_salv_wd_table=>s_type_param_refresh_in.
      ls_in-dummy = '01'.  "all
    lo_INTERFACECONTROLLER =   wd_this->wd_cpifc_xyz( ). "xyz is the component created for ALV
       lo_interfacecontroller->refresh(
        in =         ls_in                      " if_salv_wd_table=>s_type_param_refresh_in
    Note: this code will execute the WDDOMODIFY method to SALV_WD_TABLE before we select the row. This is the refresh method of ALV interface controller.
    Now use the method:
    set_lead_selection_index(  )  : to select the row.
    Here you can just pass the '1' to select the first row of your ALV alway.
    Regards,
    Chandan

  • How to get rid of the footer's "blue color" whg starteen the you are making a stacked (double) column webpage?

    So, I just looked at the tutorial for dreamweaver and I was attempting to create a sidebar with some text. I believe the third video called "Now for a touch of style." However, just as in the tutorial the footer covers the whole section of text on the webpage blue. So, naturally I follow the instructions, but for some reason a feature in the training shown is missing. I follow the instructions and click the plus sign icon under the properties of the footer, which I found by using the selectors search. After the plus sign, I type in clear, and select it, just as the training shows. But, instead of some icons for floating which appear to the right of the "clear" property I just added, it shows a blank text box asking me to add a value. I tried typing "left," and "left align." These attempts didn't work. I would really appreciate any insight into getting a page working with the sidebar, clearing the blue background. I don't know what's going on.

    You'll need to study up some on basic CSS terms. 
    CSS Tutorial
    Align is invalid code.  What you probably want is:
         text-align:left;
         text-align:center;
         text-align:right;
    Clear is only applicable to floated elements.   It doesn't remove colors.
    footer {
         color: #FFF; /**this is white text**/
         background-color: #000; /**this is black background**/
    /**or**/
         background:none;
    Nancy O.

  • 2D stacked column does not show values

    Hi Friends,
    I am new to Apex. I have a 2D column chart with two columns for every data point. The display value check box is checked and I can see the values on the chart. But now when i to make it a stacked 2 D column, the Show Values checkbox field gets disabled and the values does not appear on the stacked 2D column chart. I tried the same with 3S stacked column chart and even there the show values gets disabled.
    Is there any way i can display the values on the chart for a stacked column? I can see the values when i hover on it in case of Stacked column chart but I need to display the values on the chart.
    Kindly let me know how i can do this in Apex?

    Hi Pradeep,
    In earlier releases of Application Express, the supported version of AnyChart Flash charts did not fully support the display of values for Stacked charts. Therefore, the "Show Values" checkbox would be disabled on the Chart Attributes page. Since our 4.0 release, with the integration of AnyChart 5 charts, the option to display values on stacked charts is exposed via the Chart Attributes page. To take advantage of this option, along with many other charting improvements introduced with our 4.0 release, I would recommend that you upgrade to the latest version of Application Express.
    Alternatively, you could switch your existing chart to use custom XML, and change the following line of code in the chart XML from:
    <names show="no"/> to <names show="yes"/>For further information on customising your chart XML, please refer to the AnyChart 3 documentation: http://3.anychart.com/products/docs/anychart/index.htm.
    Regards,
    Hilary

  • Problem in Legend Map Request

    Hi All,
    I am generating a map request to get a legend in PDF format as follows.
    <?xml version="1.0" standalone="yes"?><map_request
    datasource="MYDATASOURCE" format="PDF_STREAM" width="1188" height="840"
    antialiase="true" srid="8292"><legend bgstyle="fill:#FFFFE8;stroke:#708090;"
    position="SOUTH_EAST" profile="SMALL">
    <column>
    <entry text="LEGEND WITH PROBLEM" is_title="true" />
    <entry style="" text="up to 444.306.878" />
    <entry style="" text="204.299.813 a 444.306.878" />
    <entry style="" text="138.180.596 a 204.299.813" />
    <entry style="" text="118.706.493 a 138.180.596" />
    <entry style="" text="100.910.715 a 118.706.493" />
    <entry style="" text="74.385.591 a 100.910.715" />
    <entry style="" text="38.539.881 a 74.385.591" />
    <entry style="" text="down to 38.539.881" />
    </column>
    </legend>
    </map_request>
    The problem is that the large numbers exceeds the legend size. This just happens with the PDF format.
    I dont want to use the LARGE profile because gets too big.
    Is there any workaround to this problem?
    Thanks.
    Cleber

    Hi Cleber,
    which MapViewer version are you using? This may be related with the PDF graphics library version. This library has been modified to better handle the legend texts. I tested your request and it appears to be OK with the current library. You can send me (by email) a picture of your legend, and I will confirm if this has been fixed.
    Joao

  • Mapviewer legend and note overlap

    I am using Mapviewer 11ea and wish to place a legend above a note in the SOUTH EAST corner of my map. The note is defined in the config file and the legend is provided in the map request. The legend itself seems to create a box larger than required and overlaps the note text below. See the image at http://www.geocities.com/ozspatial/legend-note-overlap.jpg showing the overlap and the large amount of white space at the bottom of the legend.
    The legend component of the request is from the default mapviewer request and looks like:
    <legend bgstyle="fill:#ffffff;stroke:#ff0000" profile="MEDIUM" position="SOUTH_EAST">
              <column>
                <entry text="Map Legend" is_title="true" />
                <entry style="M.STAR" text="center point" />
                <entry style="M.CITY HALL 3" text="cities" />
                <entry style="M.CITY HALL 4" text="big cities" />
                <entry is_separator="true" />
                <entry style="C.ROSY BROWN STROKE" text="state boundary" />
                <entry style="L.PH" text="interstate highway" />
                <entry text="County population:" />
                <entry style="V.COUNTY_POP_DENSITY" tab="1" />
              </column>
      </legend>Does anyone know how to reduce the white space in the legend or some other way to avoid the overlap? (whilst still placing both note and legend in the SOUTH EAST corner)
    thanks,
    Ross.

    Hi Ross,
    I don't think you will be able to reduce the white space at the bottom, but there are some parameters on the legend that you can use.
    1) In overlap situations you can set the transparency of the legend:
    <legend bgstyle="fill:#ffffff;fill-opacity:128;stroke:#ff0000" profile="MEDIUM" position="SOUTH_EAST">
    2) For the profile value there is an internal size defined. In your figure I can note that the advanced style items are also overlapping, which means that the internal size MEDIUM seems not appropriate for this legend. You can assign a height for a legend entry:
    <entry style="V.CA INCOME 2" tab="1" height="150"/>
    3) With version 11 there are two new parameters (location_x and location_y) for the legend that can be used to put the legend in any position. In this case the position attribute is ignored if defined.
    <legend bgstyle="fill:#ffffff;fill-opacity:128;stroke:#ff0000" profile="MEDIUM" location_x="20" location_y="50">
    Joao

  • Mapviewer: circles in legend

    Hi,
    for some reason Mapviewer renders circle-markers as ellipse. The style is dynamic:
    mv.addMarkerStyle("SL.OK", MarkerStyleModel.MARKER_CIRCLE, "black", "green", null, null, null, "5");
    Here is a screenshot:
    http://www.imagehosting.com/show.php/214285_omsmaplegend.png.html
    regards,
    Oyvind Idland

    Hi,
    here is the relevant (I think) lines. Note that there are minor changes from when I made the screenshot, the size is "SMALL" instead of "MEDIUM" + some text changes.
    <box>
    <coordinates>579770.2414294558,6632093.360589514 580111.8134053203,6632264.993850242</coordinates>
    </box>
    <legend bgstyle="fill:#e0e0e0;fill-opacity:128;stroke:black" profile="SMALL" location_x="10" location_y="10" font="Dialog">
    <column>
    <entry text="Tegnforklaring" is_title="true" />
    <entry style="SL.OK" text="Ok" />
    <entry style="SL.ERROR" text="Feil" />
    <entry style="SL.FIXED" text="Reparert nylig" />
    </column>
    </legend>
    <scale_bar position="SOUTH_EAST" mode="METRIC_MODE" color1="#64c864" color2="#c86464" length_hint="0" label_color="#000000" />
    <themes>
    </themes>
    <styles>
    <style name="SL.ERROR">
    <svg>
    <g class="marker" style="stroke:black;fill:red;width=10;height=10">
    <polygon points="201,200,0,200,101,0" />
    </g>
    </svg>
    </style>
    <style name="SL.OK">
    <svg>
    <g class="marker" style="stroke:black;fill:green;">
    <circle r="5" />
    </g>
    </svg>
    </style>
    <style name="SL.FIXED">
    <svg>
    <g class="marker" style="stroke:black;fill:blue;width=10;height=10">
    <polygon points="0,0,0,100,100,100,100,0,0,0" />
    </g>
    </svg>
    </style>
    </styles>
    Regards,
    Oyvind Idland

  • Legend map request with german umlaut

    Hello,
    i have a problem sending a legend map request that contains a german umlaut.
    I'm trying to use the pl/sql function for sending and parsing a xml request from the mapviewer documentation (chapter 3.1.16, example 3-19).
    my request looks like this
    <map_request datasource="mvdemo" format="PNG_URL">
      <legend bgstyle="fill:#ffffff;stroke:#ffffff" profile="MEDIUM">
        <column>
          <entry style="C.YELLOW" text="Übernahme"/>    
        </column>
      </legend>
    </map_request>The resulting image does not contain the umlaut Ü but a little square instead.
    I tried replacing the Ü with Ü ;
    <map_request datasource="mvdemo" format="PNG_URL">
      <legend bgstyle="fill:#ffffff;stroke:#ffffff" profile="MEDIUM">
        <column>
          <entry style="C.YELLOW" text="Übernahme"/>    
        </column>
      </legend>
    </map_request>This works when i manually send the request on the mapviewer map request page, but it doesn't work when i use the pl/sql function.
    The documentation says that the request has to be url encoded, so i tried using utl_url.escape on the whole request and on only the umlaut. Both doesn't work.
    Thanks for help in advance,
    Dirk

    Hi Cleber,
    which MapViewer version are you using? This may be related with the PDF graphics library version. This library has been modified to better handle the legend texts. I tested your request and it appears to be OK with the current library. You can send me (by email) a picture of your legend, and I will confirm if this has been fixed.
    Joao

  • Embedded Legend in JSP file

    I would like to embed my legend within my map request. I can display the legend on my page within a Table Row, but I would prefer it located inthe Southwest corner of my map image. Can this be done? I have seen it in XML done this way.
    Here is my legend code as well as my map display code.
    Thanks!
    <tr><td><mv:makeLegend id="myLegend">
    <legend bgstyle="fill:#ffffff;stroke:#ff0000" profile="SMALL" position="SOUTHWEST">
    <column>
    <entry text="Map Legend:" is_title="true" />
    <entry style="M.GREEN" text="No Outages Reported" />
    <entry style="M.RED" text="Outage Reported" />
    <entry style="M.AMBER" text="Degraded Status Reported" />
    </column>
    </legend>
    </mv:makeLegend>
    <IMG SRC="<%=myLegend%>"></td></tr>
    <tr align="center">
    <td valign="top" align="center">
    <input type="image"
    border="1"
    src="<mv:getMapURL />"
    name="userClick"
    alt="Click on the map for selected action">
    </td></tr>

    Hi,
    you can't use the makeLegend tag to embed it on map, but you can add an API method on your jsp code to add the legend. This is an example:
    <%@ taglib uri="http://xmlns.oracle.com/j2ee/jsp/tld/spatial/mvtaglib.tld" prefix="mapviewer"%>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%@ page import="oracle.lbs.mapclient.MapViewer" %>
    <html>
      <head>
        <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
        <title>untitled</title>
      </head>
      <body title="MapViewer WebMap">
        <DIV align="center">
          <mapviewer:init url="http://stadb35.us.oracle.com:8888/mapviewer/omserver" datasource="mvdemo" id="mvHandle"/>
          <mapviewer:setParam basemap="density_map" width="600" height="450" antialiasing="true" title="My Web Map" centerX="-122.4" centerY="37.8" size="10"/>
        <%
          MapViewer mv = (MapViewer) session.getAttribute("mvHandle");
          mv.setMapLegend("<legend bgstyle=\"fill:#ffffff;stroke:#ff0000\" " +
                          "profile=\"MEDIUM\" position=\"SOUTHWEST\">\n" +
                          "<column>\n" +
                          "<entry text=\"Map Legend:\" is_title=\"true\" />\n " +
                          "<entry style=\"V.COUNTY_POP_DENSITY\" tab=\"1\"/>\n " +
                          "</column>\n " +
                          "</legend>");
        %>
          <mapviewer:run/>
        </DIV>
        <img src="<mapviewer:getMapURL />"/>
      </body>
    </html>

  • Legend rendering

    A few days ago I posted the message about too long text of
    legend item.
    Perhaps I found the way to solve the problem of proper
    rendering legend if width of legend items is wider then parent
    container.
    I want to clip legend item text, and show tooltip over it.
    If I define legendItemClass property, I can assign a toolTip
    property for each legend item, becuase it inherits UIComponent
    class.
    From Help of Flex2.0:
    "If you want custom behavior in your legend items, you can
    assign a subclass of LegendItem to" legendItemClass property.
    http://livedocs.macromedia.com/flex/2/langref/mx/charts/Legend.html#legendItemClass
    Did anybody define subclass of LegendItem class?

    Joao,
    Hereby the requested definitions:
    <legend bgstyle="fill:#B2C4C4;fill-opacity:150;stroke:#29346B" profile="medium" position="NORTH_WEST">
    <column>
    <entry style="C.GEMEENTEN RIJNMOND" text="Gemeenten Rijnmond" tab="0" height="15" />
    <entry style="C.Z10_6RA_IR_MER_ORIGINEEL" text="Rotterdam Airport 10-6 contour" tab="0" height="15" />
    <entry style="C.Z10_7RA_IR_MER_ORIGINEEL" text="Rotterdam Airport 10-7 contour" tab="0" height="15" />
    <entry text="Signaalkaart Lucht: NO2 voorspelling 2010" />
    <entry style="V.SIG_LUCHT" tab="2" height="30" />
    <entry text="Bodemkwaliteit" />
    <entry style="V.BODEMKWALITEIT" tab="2" height="45" />
    <entry style="C.LEIDSTRAATTOETS" text="Leidingstraten (toetsingsafstand)" tab="0" height="15" />
    <entry style="L.LEIDINGSTRATEN" text="Leidingstraten" tab="0" height="15" />
    <entry style="L.HSL" text="HSL-tracé" tab="0" height="15" />
    <entry style="L.BETUWELIJN" text="Betuwelijn" tab="0" height="15" />
    </column>
    </legend>
    <themes>
    <theme name="ANDES2004G_3 RASTER" />
    <theme name="GEMEENTEN RIJNMOND" />
    <theme name="Z10_6RA_IR_MER_ORIGINEEL" />
    <theme name="Z10_7RA_IR_MER_ORIGINEEL" />
    <theme name="SIG_LUCHT" />
    <theme name="BODEMKWALITEIT" />
    <theme name="LEIDSTRAATTOETS" />
    <theme name="LEIDINGSTRATEN" />
    <theme name="HSL" />
    <theme name="BETUWELIJN" />
    </themes>
    BETUWELIJN STYLE:
    <?xml version="1.0" standalone="yes"?>
    <svg width="1in" height="1in">
    <desc></desc>
    <g class="line" style="fill:#999900;stroke-width:5;stroke-linecap:BUTT">
    <line class="parallel" style="fill:#000000;stroke-width:0.5" />
    <line class="base" style="fill:#000000;stroke-width:5.0" dash="4.0,12.0" />
    </g>
    </svg>

  • How to Change Width of "Columns" in Falsh Chart

    Hi,
    I am working on "STACKED 2D COLUMN" flash chart. I want to control the width of the Columns,
    because when there is only single column in the data. it fill's the whole chart region itself with single column.
    Thanks in Advance.
    Regards
    Sanjay

    Hello Megadown,
    This is how you can change the width:
    TableColumn column = jTable1.getColumnModel().getColumn(0);
    column.setPreferredWidth(100);
    Regards
    Johan

  • Multiple column selection in OBIEE 11g

    I have multiple checkboxes each checkbox represent one of measure of my fact table
    Now user wants to select the multiple check boxes to generate a dashboard report on the basis of these selected check boxes.
    Report only show the selected measures how I can do that in OBIEE 11.1.1.5
    Actually I want to generate graph on the basis of selected measures.
    I have created all columns in my report but I show the data only for selected columns when I draw the graph
    All columns’ legend are shown I want to exclude all columns that are not selected so that their legends are also not shown in graph.
    How I can do that.

    user13559093 wrote:
    Hi david,
    I read your post, the one thing i couldn't understand is about dummy column and hiding.
    you told i can a new column and hide that column, but still i could't figured it out.
    so, if possible can you explain me in more detail.
    your help is appreciated.
    Thanks,
    Rahul@Amith, Venkat's blog is not what the user is looking for. It doesn't apply.
    Rahul, did you try what I asked? What specific part of what step did you not know what to do. My steps were detailed so I'm not sure what to "explain" unless you tell me exactly what you didn't get. If you didn't do anything and just want me to explain it again, then I say, do it first. The step-by-step instructions can be followed without "knowing what it's going to do," but when you do it, you'll see what I mean.
    Remember, this is a free forum. You are not paying me to help you so you need to show that you are doing your homework by testing what I say to do. So go back and read the post again and actually do the steps. If you don't know how to do a specifc step, then ask about that.
    This method will solve your requirement, put effort into applying it.

Maybe you are looking for

  • Data Federator - View Data in DF

    Hi, Can we view data in Data Federator if data source is SAP BW

  • New 8 GB memory shows 2 blank slots

    Hi, I have a 27" imac i5 quad core that i bought in January & it came with 4 gb memory. I purchased 2x 4 gb modules from Crucial for a hopeful total of 12gb. when adding memory I left the 2x gb memory that came with machine in the top slots & added t

  • Consingment stock report with values and periods..

    hello guys, i have an issue here.. consignmet stock are "managed" within SD. Is there a standard report which cointains info about consigment stock, its amounts (values) and periods ? Main point here - consingment stock is processed within SD, so for

  • BT Sports frustration

    "To say i am frustrated would be a huge understatement, i cannot believe the lack of service/ response avaliable from a huge company like BT." Here!, here! ..................... I'm not taking the service up when it reverts to full price! All I'm get

  • Price column in SOS tab

    Hello experts, while creating Shopping cart, in detail of item - Source of supply tab contains Contract and PIR details. These details dose not contains Price column. I want to show price column in Source of supply tab. Is it possible? Thanks in adva