Automatic Colour settings problem for WAD Chart Column type

Hi,
In WAD (BI 7.0) Chart Creation i am having issues with colour settings for Chart item Column type with 3D. I have six key fig in query i am trying to show all KF in Chart. But it is showing only one colour for all keyfigs. atlast  I have manually assigned different colours for different series, but no use... the issue remains same.. Please help me on this issue
Thanks in Advance
Regards
Harsh

Hi Harsh,
Please try the following options.
1. Try swapping the axes. Certain charts follow the YX convention.
2. Right Click > Edit > Click on 'Refine' > Click on the chart type on the right frame (Bars/Pie etc) > [OK] Vary Category by Color: Enable this checkbox.
3. If you have finished with these settings, you may switch back to Wizard mode to follow up the settings (Step 3 of 6 - Value Properties)
4. Under Categories in Wizard, just make sure you are giving options to suit all the Categories in an uniform fashion. To begin with don't bother to give a fixed Category Count. (As your chart size may increase dynamically based on GRID data)
5. Goto Refine > Click on Global Settings > Choose 'Color Palette' > Tradeshow/Enjoy/StreamLine/Custom : These are the optional themes which may be well adjusted to suit your requirements.
Thanks,
Arun Bala

Similar Messages

  • Problem in Combo chart columns and line

    I select chart type is  combo in my vc model  and select data series is columns and line.
    I define 5 series in the chart.
    once i deployed the model the output shows the columns are overwrite in stacked position.
    eg:
    series 1: 10%
    series 2: 20%
    series 3: 45%
    series 4: 25%
    series 5 is line type
    but in the chart the only one column will display,its top value 45% and itself shows 10% and 20% in different color.Don't show the 25% value on that column.
    How to display the chart columns in clustered type in combo chart.
    thanks in advance
    Aravind.S

    Hi
    When you select 'Combo Chart' you will not get options for 'Stacked or Clustered'. By default it will be 'Stacked' chart only. Combo charts are generally used for less number of data series. Normally these charts are best suitable for 2 Data series only.
    Still in your case is there any reason to use 'Combo Chart'? Consider following points -
    1. If you want to use this type of chart then selction of 'Columns + Line' will be difficult because it will treat only 'Last Data Series' as line & all others will be columns & what you said problem will appear.
    2. Instead of that select 'Column + Lines', so that only first 'Data series' will be column & rest all will be 'Lines'. So that you will get better visibility in that graph.
    I think this will help you, If you have nay problem let me know.
    Regards
    Sandeep

  • Me23n Print preview display problem for specific o/p type

    Hello gurus,
    A small problem..
    I have modified the Smartform for a specific o/p type in PO and the moved to PRD
    when seeing the Print preview in me23n the Smartform is not being displayed in PRD....
    all other setting in ->messages, further data in me22n are same as for other o/p types..
    The poblem is only for this o/p type POs all other o/p types the print-preview is displaying the form..
    suggestions required...
    thnks in advance

    sorry dev...
    hi srikar
    i think  there is a missing of cluster table ..
    check the t-code se09
    go to the customizing release  request .
    there is a ur updated nace release request number.
    expand that request number .
    see there is an another request number.
    again expand it.
    check whether there is a view cluster maintenance data or not?
    if it is present.
    expand it there u see the cluster table.
    else.
    u mistaked in nace transport.
    regards
    surender
    Edited by: surender on Feb 5, 2009 12:18 PM

  • Automatic PR generation Problem for a material..???

    hiii Experts
    Can  anybody give some your suggestion and idea trouble shoot this problem by your valuable knowledge and by ur exeperience..
    Here my problem. For one material ( ROH ), every month automatically around 20 to 25 PR's are generating .
    How to locate the problem and rectify the same . what might be cause for this issue.
    THis are all the details we have maintained in material master
    For one material assume XXXX,
    Material type - ROH,
    In master , MRP - PD
    MRP controller- ABC.
    Thanks
    SAP-MM

    hi
    Correct wht u have said..
    But wht i m asking , system why should it generate Auto PR for 1 kg, 0.5 kg, for 5 kgs ..
    Becas there is no production order also for this quanities .
    If we maintain in MRP view as PD.. it should generate as per requirement only.
    So kindly explaibn me clearly wht might be the problem , and how to locate it..
    Wht is procedures for MRP run based on MRP type in material master..
    Thanks
    SAP-MM

  • Factory rest imac monitor colour settings ready for spyder 4 install

    i need to install sypder 4 pro and it asks me to make sure the monitor colour is set to factory default. Anyone know how i do this?

    Open System Preferences (under the Apple menu) and select Displays. Select the Color tab. You'll see a number of display profiles, including hopefully your iMac's default profile. If it is not already selected, select it.
    Best of luck.

  • Settings Problem for Streaming Video/Audio

    I tried to watch the new OS 10.5 Panther. I receive the audio, but there is no video to watch. Can someone perhaps suggest a solution to being able to listen and watch the new system info.

    Can you watch the movie trailers on the QuickTime site? If so, have you tried setting the Transport Setup: Custom>HTTP>Port ID 80 in the Advanced QuickTime System Preferences?
    Message was edited by: scapesuiter

  • Bind problem for varchar2 of object type??

    Hello all,
    I am trying out binding Oracle Object types to java object types using the SQLData interface.
    I created a simple object type called employee with the syntax
    create type employee as object (empName varchar2(50),empNo number(9));
    I then created a class called EmplyoeeObj which implements the interface. The code for the readSQL and
    writeSQL methods are below:
    public void readSQL(SQLInput stream, String typeName) throws SQLException {
    empName = stream.readString();
    empNo = stream.readInt();
    public void writeSQL(SQLOutput stream) throws SQLException {
    stream.writeString(empName);
    stream.writeInt(empNo);
    empName is a String and empNo is an int. The code that does the calling is:
    String query = "{call test_employee(?)}";
    Map map = connection.getTypeMap();
    map.put("CISWEB.EMPLOYEE",
    Class.forName("test.jdbc.EmployeeObj"));
    /*Set back the type map with the new mappings*/
    connection.setTypeMap(map);
    /*Create a statement to make the call */
    ocs = (OracleCallableStatement)connection.prepareCall(query);
    ocs.registerOutParameter(1,
    OracleTypes.STRUCT,
    "CISWEB.EMPLOYEE");
    boolean isWorked = ocs.execute();
    System.out.println("Execute finished........");
    Object outParam = ocs.getObject(1);
    System.out.println("Object was obtained........" + outParam);
    System.out.println("name:" + ((EmployeeObj)outParam).getName());
    As can be seen I have created a stored procedure which has one out parameter. All
    this preocedure does is assign an Employee object to the out parameter with a name of
    'Alex' and an employee number of 9.
    The code runs and all but I get this strange result. In the print I am getting the employee number
    coming out correctly but the employee name comes out as 3 question marks. I can't understand why
    "Alex" does not out. I have tried different things such as adding a new varchar2 to the object type and new a new integer and what I observer is that I keep getting 3 question marks coming back instead of whatever I assign for the employee name. Could someone please help and let me know what could be wrong?
    I have no clue as what is causing this weird behaviour.
    Thanks.

    Hi,
    i have not really a idea. But at the next step i would
    try the same procedure with in/out parameter and use a
    initialized string. Maybe there is a problem to
    determine the length of string.
    Bye ThomasThanks for you reply Thomas,
    This is the code for stored procedure that I use. As can be seen I just assign an employee to the
    out parameter.
    CREATE OR REPLACE PROCEDURE test_employee(emp out EMPLOYEE) IS
    BEGIN
         emp := EMPLOYEE('Alex',49);
    END;
    Now in the java code when the statement >>
    System.out.println("name:" + ((EmployeeObj)outParam).getName());
    executes I get the name coming out as the String: "???". That is three question marks. It is very weird. I then attempted to create the object using JPublisher and I get the same result. I attempted not only to use hte SQLData interface but Oracle's ORAData interfaces as well. I went to to create a table with column as the EMPLOYEE type and use in insert to put the same object and and then sellect * from the table to the the and I still get the 3 question marks for the name and the number comes out correctly.
    I am not sure what could be causing the text to come out as three question marks. I am using Oracle 9.2.0.4.0 and the ojdbc_g.jar drivers version :9.2.0.3.0. Any help would be greatly appreciated.
    Thanks

  • What customization settings required for automatic availably check,

    Dear Guru's
    While doing Sales order my availability check should be carried out, but it is not happening automatically, what settings required for the automatic availably check. Pleasantly we are doing it manually.
    Regards,
    Kalyan

    Hi Kalyan,
    ATP check requires following configuration setting.
    1) The availability check is indecator needs to be switched on at requirement class lavel.
    2) The availability check is indecator needs to be switched on at schedule line lavel.
    3) Set availability check 02/ 01(individual / daily requirement) in Sales Genral plant view of Material master.
    4) Set the checking group in the MRP3 view of Material master.
    5) Above all a plant must be assigned to the line item in the sales order.
    Please do let me know if you have any concern.
    Thanks,
    Rupak.

  • Problem for Goods Receipt for Subcontracting Purchase Order

    Dear all,
    Presently, we are using SAP version 4.6C and we need to introduce GR for
    Subcontracting Purchase Order. We have developed a ABAP program to handle
    subcon Goods Receipt by uploading flat-files from our subcontractor. The
    scenario is as follows :
    Goods Receipt for Subcontracting Purchase Order
    1. In the ABAP program, function BAPI_GOODSMVT_CREATE will be used for goods
    movement.
    2. Data provided to the function are as follows :
    - Posting date
    - Document date
    - Material number
    - Plant
    - Storage location
    - Batch
    - Movement type (101)
    - Quantity
    - Purchase order number
    - Purchase order item
    - Movement indicator (B - Goods receipt for purchase order)
    3. The function will do data verification and automatically determine GI
    item for subcon stock:
    - Movement type (543)
    - Special stock (O - parts prov. vendor)
    - Material
    - Quantity
    - Plant
    Our problem is that :
    Only the GR item in the interface is to be transferred and the GI item is
    determined by the system. So, the quantity for subcon stock cannot be
    changed using this BAPI. Then the system will continue processing the goods
    receipt and create material document.
    Manually, by using transaction code MIGO, the user can display the subcon
    stock data and then change the quantity.
    By using transaction code MB01, after the user fills in all the GR fields,
    the system comes to line item 002 (subcon stock data) and then quantity can
    be changed.
    As per user requirement, quantity for GI item must be same with the quantity
    that has been transferred to subcon vendor in Delivery for Subcon
    (transaction code VL02N).
    We cannot achieve this requirement by using the BAPI mentioned above. Would
    appreciate any valuable help from anyone who is able to help us on this
    matter. Are there any other BAPI's that can help us to achieve the same
    result ?
    Thank you in advance and best regards.

    As far as i understood the problem I suggest u to create the
    BDC according to user actions that are performed in he manual
    operation.
    I can't say that the BAPI performs the exac solution what you want.
    I have done some BDC work using MB01 and suggest you to be careful
    and try to keep the complete in the logic as some chages in rows in BDC will
    change the complete scenario.And throw correct quantity val in correct
    material
    row.
    This methodology will help u even in mass uploads.
    Or in case of automation u can perform the call transaction BDC in
    background mode.
    so As per my understanding bdc program is the solution. pls try and let me
    know.

  • Creative Suite Colour Settings

    I was asked from the illustrator section to drop this discussion here.
    I have  completely bought and installed Indesign CS5.5, Photoshop CS5 Extended  and Illustrator CS5. The Adobe Bridge was of course installed with each  of these packages. Now I try to setup one colour setting in Illustrator  save it as required, than I start the Bridge, got to edit -> Creative  Suite Colour Settings (just for synchronization) and I get a nice Error  message, telling me that Colour Management can not be enabled.
    My  question now, do I really have to buy all theses software packages  again in an adobe creative suite edition, or is it also possible to  synchronize these settings if one buys this software applications  separately?

    Not sure I follow you here. Nothing stiops you from assigning the same profiles in every app. Yes, the gloabl synchronization is only available in suites, but in the end it's just a comfort feature, nothing essential that prevents you from setting up unified CM at all and considering, that you probably only do it once and then never again, a very minor thing...
    Mylenium

  • TS1811 Hi!! I am a user of i Pod 5g 32GB....I got the same problem for which the solution is given above....but the thing is that.......in my laptop I have a windows operating system....that is windows 7....so can you explain how to do settings in Windows

    Hi!! I am a user of i Pod 5g 32GB....I got the same problem for which the solution is given above  "
    iTunes for Mac reports error -50 when trying to authorize iTunes Store purchases
    "....but the thing is that.......in my laptop I have a windows operating system....that is windows 7....so can you explain how to do settings in Windows 4 same

    Archived - iTunes for Mac reports error -50 when trying to authorize iTunes Store purchases
    Products Affected
    iTunes 7 for Mac, iTunes 8 for Mac, iTunes 9 for Mac
    This article has been archived and is no longer updated by Apple. 
    Symptoms
    After installing the Mac OS X 10.4.9 Update, iTunes may be unable to properly authorize your computer to play your iTunes Store purchases.
    Resolution
    The following steps will delete your network preferences. Most broadband connections do not require any special settings to connect, but if your connection does or if you are not sure, please contact your ISP or network administrator for further assistance.
    Important: You must be logged in as an Administrator.
    Click the Finder icon in the Dock.
    Choose Go to Folder from the Go menu.
    Type /Library/Preferences/SystemConfiguration
    Click Go.
    In the Finder window, locate the file named NetworkInterfaces.plist.
    Drag this file to the Trash.
    Restart the computer.
    Once your computer has restarted. You will not be able to connect to the Internet. Now you will need to refresh your network settings to be able to connect again.
    Choose System Preferences from the Apple menu.
    Choose Network from the View menu.
    To refresh your network settings, from the Location pop-up menu, choose New Location.
    Type a name for your location and click OK.
    Click the Apply Now at the bottom right to accept the changes.
    If your network connection requires any special settings, you will need to put them back in at this point. Once you have made these changes you should be able to connect to the Internet again and authorize your computer to play your iTunes Store purchases.

  • Problem with download link for a BLOB Column in a "Classic report"

    I am having a problem where I cannot make a download link for a blob column function in a "classic" (non-interactive) report. I went through the tutorial on this topic and it was great help it working out the minor bugs, but I get a 404 error (apex_util.get_BLOB not found). For testing purposes I went ahead and created a an identical report on the same page that is an "Interactive report" and it works like a charm. Same query, same BLOB formatting Mask, pulling data from the same table. So, it really doesn't seem like an issue with the grants, since both reports should be executing as the same user.
    I know it sounds like the obvious answer is to just go with the interactive report and my problem is solved, but the rest of this site uses classic reports, and I don't need the sort features of an interactive report, and the slightly different style of the the report really stands out even if I turn off all the bells and whistles. I don't want to change the css to make them look identical, I just want a regular report to work.

    I eventually found another post: APEX_UTIL.GET_BLOB was not found on this server
    In this post there is the suggestion of putting "dbms_lob.getlength("var")" after the date field in your select. So I changed my query to have it at the end, and now my format mask (DOWNLOAD:table_name:ATTACHED_FILE:FILE_ID::FILE_MIME_TYPE:FILE_NAME:::attachment:Download) works like a charm, in a classic report.

  • HW acceleration (direct2d) causes problems for my site , is there a script to disable it automatically?

    direct2d acceleration on FF4 causes really bad font rendering problems for my site.
    Text goes on to of each other and behind pictures making it impossible to read for some parts. Disabling HW acceleration fixes the problem. Is there a script that I could use to disable it automatically for my site?

    In fact updating my graphics was the cause of the problem. With the old drivers there were no problems. It depends on the system. So far I've tested on 6 Windows PC's. on 2 of them it worked fine. My site should be 100% W3C compliant. It works fine on 3.6, Chrome, IE and Opera

  • Have Operating System 10.6.8, Mail Program 4.6.  How can I prevent the next email in the que from automatically opening after I act on the previous email ? It creates big organizational problems for me. My computer changes this mode from self opening to m

    Have Operating System 10.6.8, Mail Program 4.6.
    How can I prevent the next email in the que from automatically opening after I act on the previous email ? It creates big organizational problems for me. My computer changes this mode from self opening to manually opening every few month with no ? action from me.
    Help

    Have Operating System 10.6.8, Mail Program 4.6.
    How can I prevent the next email in the que from automatically opening after I act on the previous email ? It creates big organizational problems for me. My computer changes this mode from self opening to manually opening every few month with no ? action from me.
    Help

  • I have configured my android to connect to .me / cloud email. It works. But is does not do automatic email delivery. It seems to do fetch, not push. The settings are for imap. Can anybody tell me how to get push?

    I have configured my android to connect to .me / cloud email. It works. But is does not do automatic email delivery. It seems to do fetch, not push. The settings are for imap. Can anybody tell me how to get push?

    As Roger said, iCloud does not support external POP accounts.
    However, you can configure your Max to directly receive your Yahoo! email by following these instructions:
    http://hints.macworld.com/article.php?story=20110208153256491
    Note that this works (for me) without a Yahoo Plus! account - and make sure that you scroll down to the comment at the end of the article which has all of the correct settings in one place.
    Cheers,
    Rodney

Maybe you are looking for

  • I can´t donwgrade my icloud storage plan

    Hello, I bought a new storage plan for my phone, but it never worked, I could never back up my phone to my iCloud! And yes I followed all the instructions on your site, like plugging to a source and connecting with the Wi-Fi network. Besides all of t

  • Oracle 7.3 import to Oracle 8i Enterprise Edition

    Due to data file block corruption we had to install Oracle 8i in NT. After successful installation we tried importing 7.3.4 data to 8i, after importing table data it seeems the import process got hung, the CPU usage shows 100% and the application see

  • Can JTable cell acts as JList?

    I was planning to create an Event Calendar view in Monthly. Currently my jTable cell extends JTextArea. My problem is that, for example, today I got 2 events display in one cell, when a user double-click the "today" cell, an edit form will pop out, i

  • Sales order costing error found in quotation 2 order line items created in

    Sales order costing error found in quotation 2 order line items created in quotation 5000562 1st line item with third party 2nd line item with PTO Purchase price was entered in the configuration screen 1st item : 2,000 EUR 2nd item: 1,200 EUR Purchas

  • Where is the lock icon in printers pop up menu

    anyone know why the lock icon doesn't show up in printers & Scanners window?