Design Chart issue

Hi,
In Release 12, I am not able to navigate to second page in Design Chart. 11.5.10 has Next button in Design Chart when no of options in primary features are more. But in Release 12, the chart allows adding a primary feature which has many options but you will not be able to scroll right on the page as there is no horizontal bar to scroll left to right.
It looks like a regression in Release 12.
Can anyone please confirm the same.
Thanks

Hi Krishna
I dont know if it is still relevant for you, but we had a semillar issue. My guess is that is a rendering issue.
In our case the following work around seemed to solve it:
On the data source we added this to "On Result Set Changed":
CHART_SKU.showLoadingState();
CHART_SKU.hideLoadingState();
Regards,
Michael

Similar Messages

  • Report Designer - Chart and data

    Hi,
    I have a query section. In one of the cell, I have a chart. I have the data in other columns on the side of the chart. When I execute the report designer, I get the chart and the then the data below on the side. When I create a pdf, the data moves up to the side of the chart. I want the web view look like the pdf view where the data is on the side of the chart. Is it possible? Why is the web view and the pdf view different?
    Best regards,
    Jai

    Moved to BOE Admin forum

  • Report Designer Locking issue

    Hi,
       We have found locking issue while accessing same report(Created in Report Designer) by multi users at a time .
       Has anyone face this issue and How to fix it. It's major concern because same report can be accessed by multiusers at  same time
    Thanks
    Siva

    Siva,
    only one person at a time has permission to open the report in the Report designer - just like with Queries in the query designer.  This should not have any effect on you actually executing the report in the portal - multiple people can do it then.
    this is a security issue that other software vendors use as well - just like you cannot open any MS Office files on the network for editing that someone has opened already.
    Thanks

  • SSRS 2008 R2 Line Chart Issue

    Hi, 
    Problem:
    I have an issue of SSRS Line Chart extending backward and forward (same issue discussed in post - http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/3cebd5b2-bb15-4bd1-be16-0daadc613082/)
    when Empty point option Value is set Average 
    I tried sorting on Category Group as suggested by Sean Boon in the URL mentioned above. But, still the issue is not fixed. 
    I am using SSRS R2. 
    Thoughts ?

    Hi, 
    Problem:
    I have an issue of SSRS Line Chart extending backward and forward (same issue discussed in post - http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/3cebd5b2-bb15-4bd1-be16-0daadc613082/)
    when Empty point option Value is set Average 
    I tried sorting on Category Group as suggested by Sean Boon in the URL mentioned above. But, still the issue is not fixed. 
    I am using SSRS R2. 
    Thoughts ?
    I am running into the same issue again :( 

  • SSRS 2008 Line Chart Issue.

    We are facing an issue with SSRS 2008 charts. We have a report which shows dynamic number of series on a line chart. The data values may not exist for all series for
    the same x axis points. We expected SSRS to connect the missing points as average and have set the empty point option to average.
    The issue is that the
    1)     
    lines for interpolated points only appear when we set the color of empty point to say red and not when it is set to automatic. We need the interpolated line in the same auto
    colour as the original line as we will have markers for the data points from the DB and no markers for empty points.
    2)     
    The interpolated lines extend backwards in the series also – we expect it to only fill the gaps and not extend backward or forward.
    Are these issues known and is there a work around for these issues ? We got your name from one of the SSRS community discussions. Could you please connect us with
    the right person if you are not the right contact for this issue ?
    I also got following reply from one of the MS guy, it says
    Hi Akshay,
    The lines should not go backward.  I have seen this happen before and I’ll have to double-check on what that occurs. If you
    are using a Category Axis, make sure you set the sorting to use a Cdate() expression.  I think that might be it ,but I’ll have to double check.
    As far as using the auto-coloring on the series when you have empty points like this, I don’t think that’s possible.  It would require
    a DCR.  You may need to implement something along the lines described in this article  http://msdn.microsoft.com/en-us/library/aa964128(SQL.90).aspx.
    When I tried the suggestions I over come the auto colouring issue and also used CDATE () but lines still extend bacawords. Can anyone suggest what to do it this situation

    Hi AKshay_Jadhav,
    Firstly, I am not sure who is that MS guy you mentioned without the detail name. Based on my understanding to your issue, I think you could utilize the function
    IsNothing in reoprting services to have a check whether the value is null, if it is Null, you should give a average value to this point, if not leave it to be the original value. Of course, you could achieve this in T-SQL. To
    the color and marker, we could type in the expression in both feature to control their display effort.
    Hope this helps.
    Thanks,
    Challen Fu
    Challen Fu [MSFT]
    MSDN Community Support | Feedback to us
    Get or Request Code Sample from Microsoft
    Please remember to mark the replies as answers if they help and unmark them if they provide no help.

  • ABAP Objects Design/Organization Issues

    Hi,
    I'm trying to design and implement reusable components using ABAP Objects. I'm familliar with OO concepts and have developed a few applications using C++ and Java.
    I'm trying to organize my classes into separate source files (include program in ABAP).
    ie.
    <b>include program a</b>
    CLASS a DEFINITION.
    ENDCLASS.
    <b>include program b</b>
    INCLUDE a.
    CLASS b DEFINITION.
    data x TYPE REF TO a.
    ENDCLASS.
    Lets say I want to write a report that uses both objects a and b. That means I have to include both programs. but since program b includes program a. including both programs a and b in my report would produce redeclarations of class a.
    <b>executable program c</b>
    REPORT c.
    INCLUDE a.
    INCLUDE b.   " error: redeclaration of class a
    DATA: x TYPE REF TO a.
          y TYPE REF TO b.
    This bothers me. Although it would be possible to <b>just include program b</b>, it would be a bit awkward since, i dont care if class a was used in the implementation of class b. Implementation should be abstracted from the user. Besides, everything should be explicit.
    Is there a way to organize things as such? Would importing these classes globally would solve the problem.
    Thanks.

    Emir,
    The way we do OO Programming in ABAP and other languages differ.
    In your case, it might be a better option to create these classes as global classes, so that you will not have this issue. You can SE24 to do the same.
    Regards,
    Ravi

  • XML and its influence over program design (2 issues)

    I have 2 open questions about XML and Java. I apologise if they are not clear-cut or specific enough, but really I am fishing for sound advice.
    I am trying to develop a J2EE application but find myself stuttering at an early stage because I cannot decide on the best design for my application. Part of my problem is a lack of experience with the different J2EE technologies/API (especially XML APIs), and the realisation that there is 101 ways to do what I want to do.
    A major issue is this: my application basically is concerned with representing conversations between the server and a user, e.g. a simple sequence of yes/no questions asked by the server to the user, which the user replies to in turn. I believe that the XML format would be a very suitable way to represent these conversations. My first question is:
    * Should the decision to use XML as a storage format influence the design of the rest of the program? I feel that in choosing XML to represent the conversation data, I am stuck thinking about the rest of my program in a XML way (i.e. doing everything using a DOM etc.). Am I right in thinking that my program should be designed in such a way that an XML-based storage system could be easily interchanged with, say, a relational flat-tabled database?
    My second question is:
    * Imagine that each conversation contains one or more questions, and there are, say, 4 different types of question (e.g. yes/no, multiple choice, etc.). Each of these needs to be handled in a different way. Is there a good pattern or recommended way of handling this sort of situation in code, ideally avoiding a big 'if' or switch statement (e.g. if the node is of "ABC" type do this, else if it is "yes/no"...). It would be great if one could easily add new types of question to the XML and then similarly one can make easy additions to the code to cope with these new cases.
    Thank you very much indeed for any advice.
    Greg

    I am trying to develop a J2EE application but find
    myself stuttering at an early stage because I cannot
    decide on the best design for my application. Part of
    my problem is a lack of experience with the different
    J2EE technologies/API (especially XML APIs), and theThat's nothing to be ashamed of. And realising that you lack experience and trying to remedy that is a good sign.
    A major issue is this: my application basically is
    concerned with representing conversations between the
    server and a user, e.g. a simple sequence of yes/no
    questions asked by the server to the user, which the
    user replies to in turn. I believe that the XML
    format would be a very suitable way to represent
    these conversations. My first question is:
    XML might be overkill if it's just a question followed by an answer and neither contains complex hierarchical data structures.
    * Should the decision to use XML as a storage format
    influence the design of the rest of the program? ICertainly not.
    XML should represent data structures that are natural to your program, thus becoming a tool rather than forcing its structure upon you.
    feel that in choosing XML to represent the
    conversation data, I am stuck thinking about the rest
    of my program in a XML way (i.e. doing everything
    using a DOM etc.). Am I right in thinking that my
    program should be designed in such a way that an
    XML-based storage system could be easily interchanged
    with, say, a relational flat-tabled database?
    Flexibility is good to keep in mind, but at the moment I'd worry about just getting something to work.
    * Imagine that each conversation contains one or more
    questions, and there are, say, 4 different types of
    question (e.g. yes/no, multiple choice, etc.). Each
    of these needs to be handled in a different way. Is
    there a good pattern or recommended way of handling
    this sort of situation in code, ideally avoiding a
    big 'if' or switch statement (e.g. if the node is of
    "ABC" type do this, else if it is "yes/no"...). It
    would be great if one could easily add new types of
    question to the XML and then similarly one can make
    easy additions to the code to cope with these new
    cases.
    Think of a factory that creates the handlers on the fly based on the actual message received.
    If the factory makes use of some mapping construct to do so there's no need for any conditionals at all in your decision tree.
    I've myself used XML structures successfully to define such mappings (and so have others) on disc, but simple ones can be easily represented using just a properties file.

  • Chart issues in OBIEE 11.1.1.5.0

    1>     The column on which ordering is based must be used in the Chart, else the ordering does not occur inspite of it being present in the criteria.
    2>     The Graph properties do not contain any option of removing Report Navigation / Interaction unlike the 10 g application.
    Are their any work around for the above mentioned Graph issues.
    Edited by: user599095 on Dec 19, 2011 2:48 AM

    Try these
    1. Edit the NQSConfig.INI file to reset the FMW_UPDATE_ROLE_AND_USER_REF_GUIDS = YES to NO and restart the Oracle BI Servers.
    2. Remove, set to none, or comment out the line (see UpgradeAndExit in the following example) added to the instanceconfig.xml file (that instructs Oracle BI Presentation Server to refresh GUIDs on restart).
    <ps:Catalog xmlns:ps="oracle.bi.presentation.services/config/v1.1">
    <ps:UpgradeAndExit>false</ps:UpgradeAndExit>
    <ps:UpdateAccountGUIDs>none<ps:UpdateAccountGUIDs>
    Restart the Presentation Server for the instanceconfig.xml file that was updated.

  • CS 4 - In Design Transparency issues?

    When I adjust the transparency of a photo in IN DESIGN... once I create a PDF all the fonts on that page are affected. They aren't at "full strength" -- the blacks look less black than on a page when the transparency is not adjusted on any photos.
    Any ideas?
    Thanks!
    David

    Thanks. I'm kind of self taught hack. I usually manage for the basics but sometimes things like this give me fits.
    My blacks were set for "rich blacks" already.
    I'm not sure how to check this:
    "Make sure the blend space matches the color mode of the background."
    I know how to adjust the transparency blend space but don't know where to check for the color mode of the background exactly.
    I was just messing with drop shadows and it too was have an effect on my exporting to a High Quality Print PDF. All my text was either lightened and the quality was degrading.
    Is that fact that my images are .jpg an issue with adding effects?

  • Design View Issue Dreamweaver CS4 - Taking forever to load design view

    I am having an issue where my site takes literally almost a full day to load in design view. Once it is loaded everything works seemlessly but once I close down Dreamweaver and reopen it, I have to wait another day to get to design view of my site. All files open just fine in code view.
    I have deleted the Dreamweaver CS4 cache folder, completely formatted my drive and reinstalled creative suite. I have also validated my code on W3c and everything checks out fine.
    The majority of my site is based off of a template, but even when I remove all the template references in the html files from Notepad I am still having the same issue. My site renders fine and quickly however on Explorer, Firefox, Chrome, and Safari.
    When loading any other site off the web into Dreamweaver I do not run into the problem so there must be something wrong with how my site is set up. Either the Template file is no good or somewhere else I am falling short. Can someone, please, please, please ( I am begging) help me figure out what is going on here.
    My index file is located at - http://www.thebluedot.net/index.html and the template file is located at - http://www.thebluedot.net/Templates/index.dwt
    I have searched high and low and even made a post on this same topic about a month ago but never came up with a resolution to my issue. I had given up on finding a solution to this problem for some time, but I really need to figure out where I am going wrong here!
    Additional Details -
    I am running - Windows Vista Ultimate on a Core 2 Processor with 12 GB of Ram & Solid State Hard Drive. Everything on my system runs super smoothly except loading my site in Dreamweaver CS4 design view.
    I really appreciate any help you can provide.

    I have used CS2 Adobe GoLive to create and manage a website (pro-prosperity.com).  Now, I have CS4 Dreamweaver.  I got a new site set up on Dreamweaver using the site management facility.  I then have the contents of website available locally on Dreamweaver.  I can edit files.  But the main home page, index.html, is not displaying on design view mode for editing, although it displays everything on live view mode.  I have struggled for days and am not getting any difference in attributes of index.html and another .html that is displaying fine on design view and is editable. 
    I am really lost and am begging for any help.  Can you, for example, copy the home page from pro-prosperity.com and display on design view and edit it?  Please tell me what is in this file that is troublesome.  Thanks.
    The first thing you should do is to make sure that this feature is turned on (it's off by default):
      View > Code View Options > Highlight Invalid Html
    It's not perfect, but it will notify you of some problems. In Code View, there are many problems highlighted. Some of them don't make sense, but are triggered because of a problem with a parent tag.
    Be sure to make a backup copy of your file before doing the next step. Close your page. Go to Preferences > Code Rewriting, and turn on "Fix invalidly nested and unclosed tags", "Remove extra closing tags", and "Warn when fixing or removing tags". Click OK, then re-open your page. The messages in the dialog to tell you what was changed. This allowed me to see your page in Design View (I am using CS5).
    Note: I suggested that you reset your preferences to turn off those 3 settings as they can cause problems with some markup.
    In the long term, I suggest that you avoid nesting tables wherever possible.
    Hope this helps,
    Randy

  • BB 8130 designated ringtone issue.

    I have a blackberry Pearl 8130, I use a Macbook and I have US Cellular for a carrier.
    I figured out how to get ringtones on my blackberry. And I gave the contacts I wanted to have custom ringtones, each custom ringtones. Then I wanted a custom sound for my messages that came in so I created a new profile and edited that also. Now the messages come in and the sound I chose for them comes in but when the contacts call it doesn't use their specific chosen ringtone I assigned in their individual settings. I then went in to the created profile and added an exception hoping that would make them work, tried it and it doesn't work. How can I get this to work, where the ringtones work as assigned to each person and still get the various message tones to come through as well??? 
    Please Help!
    Shelley

    I don't have T Mobile.  I have US Cellular Thanks anyway. I did figure out the issue. I don't know how really, It was an accident. I created a new profile ( named it ) , then I changed all the settings in the new profile, but in order for the ringtones to ring upon each designated person, I needed to chose a different profile and add the name of my new profile to the list of exceptions. It seems to work right now.
    Shelley
    Message Edited by shelley_iverson on 09-23-2008 08:36 AM

  • Some urgent chart issues : Lost labels & erroneous decimal places

    Hello everybody,
    we have some new and really urgent problems with some charts.
    Lost labels
    Like you can see in the figure below, our charts sometimes loose some lables on the graphs.There are some different scenarios for the problem.
    1) Two neighbouring bars have similar values and similar height. So the labels would overlap. In that cases, the charts loose one of the two labels. (see the yellow markers on the bars in the figure below)
    2) A chart´s graph tends to the maximum scale of its surrounding container div. The chart components then often "decide", that they do not have enough space for a label and so do not display these labels (line in figure below).
    Is there any possibility to fix these problems? Manipulating the charts via css doesn´t work, because the missing elements are not created at all. So there isn´t any element in the DOM that could be adressed.
    Erroneous decimal places
    In addition to the problems above, we have another one that causes ugly headaches. The values in some charts have 14 decimal places. Settings in the query (we use BW queries as DataSrc) or in the initial view are completely effectless. First we supposed that the problem correlates with some chart types, but in the meanwhile we get the problem with almost all types.
    Is anybody out there with similar problems or any ideas to fix the problem?
    Thanks so far & kind regars,
    Sebastian

    Hi Tammy,
    thank you for your very quick response. I´m working with IE 10.0.9200 and Design Studio 1.2 SP1. The Application runs normally on a BOE-Server. but the problems occur even when i run the application locally.
    But first of all i will check the thread you recommended.
    Thanks for your help!

  • Design Charts in Crystal Report

    Hi There
    I am wondering if i can design a chart in Crystal report with the data I define, for example, I have a report for each OS type I use running total to get their data, the reason I am using running total is because their calculation are different, so now i have a data like this
    Win        10
    HP          20
    Solaris   30
    now I want to use this data(the above data are get by running total) to draw a chart, is it possible?I am thinking to put those data in an array, but not sure if this can be done in CR?
    thanks

    You can do it. You can use a 'Shared Variable' in a formula and store the Value(s) of the 'Running Total'. you can create 3 shared variables in one formula or create 3 different formulas.Then use this shared variable in the sub-report and design the chart there in the sub-report. you might have to place this sub-report in the report footer or any section which comes after the 'running total' is calculated.

  • Gantt chart issue

    Hi,
    We are using SAP PPM 5.0 (cProject), unable to display the Gantt chart. Kindly suggest me what setting need to done to display Gantt chart. In URL for created project if I click for Graphical tab to display gantt chat, it just through out JAVA symbol error.
    Regards,
    Seema Pilankar

    Hi,
    Please refer these notes 1014150 & 1035436. I believe this will solve your issue. As mentioned above make sure that you have latest Java JRE update.
    Pramod

  • Charts Issue in 10g

    Hi expers,
    When I tick "Chart Pivot Results" check box, I can use chart in the pivot view, however,I am facing two issue.
    Firstly, when I use pie chart for showing data, I want to truncate label name .
    For example, there are two columns named Date and Item in rows area , if I want to see data through chart, the label name will be long,like 12/30/2011,item11539, so clients only want to see item11539 ,not 12/30/2011 information.
    Secondly, when you cilck chart every area, you will navigate other detail report for filter value through passing parameter.

    HI,
    You have a pivoted view of chart and you want to have both pivote table and chart view in results. to achive follow the below steps
    1. crete pivote table as per req
    2. create another pivote view same as above or make duplicate from above and hide date or move it to excude section and check chart pivot results and in chart position dropdown select chart only.
    3. now you can see pivote table and desired chart view in compound view.
    4. If you want to drill or navigate from chart then configure the same in additional chart options in edit chart view.
    If I answered your questions please mark it as answered.
    Thanks
    Jay.

Maybe you are looking for

  • Webi Report scheduling issue

    Dear Experts, I have webi reports which are running fine when i refresh the query from query panel. When i am scheduling the report it is failing. My webi reports are connected to the Bex Queries using OLAP Connections which is working fine for other

  • I did the iPhone update, and iTunes recognizes iPhone but iPhone doesn't recognize iTunes.

    the phone says "connect to iTunes" even when it is connected. iTunes seems to recognize the phone (even though the phone looks inactive).  when looking at the macbook screen, the phone on the screen in itunes displays all my apps and music.  i don't

  • How ot use servlet as the element of portlet?

    I am newbie for weblogic portal. I have tried to created a testing portlet with content.jsp, works fine. Then I tried to create a servlet, compiled it, got the class file. I put that class file name in the content URL. To my supprise, the front end s

  • BI_BOOK jobs

    What are these jobs BI_BOOK.....Also when a load starts why does it say "Request loaded from APO without monitor log " for some time... Does this job collect job details.. ur help appreciated

  • I have a new MB Pro and am trying to transfer files

    ...from my old MacBook. I let it run Migration Assistant for 8 hrs., but I don't see any of my music, photos, documents in the Pro. I downloaded my iTunes library on a thumb drive, can't transfer the contents. The old MB doesn't seem to support HomeS