Label a graph

I created a truss which is what a simple bridge looks like for non-engineering majors. Well on this truss, at its vertices, I want to add text such as the letters A,B,C etc. What is the way that I could add text to my graph in LabView?
Attachments:
TrussX.bmp ‏146 KB

Create cursors without the style and point set to blank...now set the name of the cursor, show the label...and place the cursor at the coordinates of the point you want to label. You may need to adjust the coordinates to somewhat to align the name better to the point though.
Another option is to actually move around a set of string indicators (preferably with the indicator frame set to transparent)...but cursors are more flexible and neater.
I have attached a simple example where the highest and next highest value on a graph is labeled.
MTO
Attachments:
LabelHighest.vi ‏53 KB

Similar Messages

  • Does not display axis label in graph when exported to excel

    I have a wierd issue.I have a report with graph with coloum chart and axis labels description on x axis.WHen i export the report to PDF everything looks OK.But when i export it to excel few axis labels disapper.Out of 12 labels only 2 apper when exported to excel.Has anyone encountered this issue.
    If so is there a way to fix this.
    PS: I am using BO XI 3.1 Webi.
    Thank you,
    Sanjeev

    hi,
    I have tried this out with a sample.
    In WEBI preview mode and PDF, all axis labels will appear fine.
    But when exported to excel, some labels will disappear.
    Workaround: We have to increase the chart size in Excel till all axis labels appear clearly.
    Regards,
    Vamsee

  • How to avoid repeatition of axis labels in Graphs in WebI 4.0??

    Hello All,
    I am working with graphs in WebI 4.0. In category axis, the labels are being repeated thrice ,twice and so on based on the filter which I have placed according to my requirement.. I need them to be displayed only once. I have used axis label delete factor from Format chart. But then it solved only partial problem. Appreciate your help.
    Regards,
    Anila.

    plz
    try this
    create a one more vertical table
    and check that location-text and location-key are some .
    we think it would be like this
    location-text     location-key
    can                          01
    cbg                          02
    det                           03
    txc                           04
    txc                           05
    bec of different key and some description the axis is getting repeating.

  • Programatically label xy graph

    is it possible to programatically label an xy graph, updating the label using a property node everytime the graph updates?
    CLA, CLED, CTD,CPI, LabVIEW Champion
    Platinum Alliance Partner
    Senior Engineer
    Using LV 2013, 2012
    Don't forget Kudos for Good Answers, and Mark a solution if your problem is solved.

    prbably better to use the caption instead of the lable for labling a graph (since the lable is user for many other things keeping it constant is a good idea), but this is a property node caption->text
    Paul Falkenstein
    Coleman Technologies Inc.
    CLA, CPI, AIA-Vision
    Labview 4.0- 2013, RT, Vision, FPGA

  • Labels on Graph

    Hi,
    I have a graph report and they are labelled, the problem is i have them as decimals like 4.00,5.00.11.00 what i want them to be as just whole number 4,5,11.... like that. Also i have a pie report and is there any way where i can get rid of the '%' percentages in the pie and just show them as numbers?
    Thanks

    Thansks Michael, but do you know why i'm getting the decimals on the graph when i have the whole numbers in my table?

  • 11.1.1.5 - Measure labels are appearing in legend (line graph)

    I've created a line graph in 11.1.1.5. My legend is showing a combination of the column value and the measure name (e.g. Web Sales, Direct Sales, Retail Sales). I want my legend to simply say Web, Direct, and Retail, without the appended 'Sales' measure label.
    The Measure Labels tile is currently residing in the Vary Color By (Horizontal Axis) zone, along with the legend column, so I guess it makes sense that the legend column and the measure labels would both show up in the legend (although I don't think that was the case in 11.1.1.3). However, there doesn't appear to be any place into which I can relocate the Measure Labels tile so that the word Sales DOESN'T appear on the line graph. If I move the Measures Labels tile into Graph Prompts, Sections, or Group By (Horizontal Axis), the word Sales appears in those locations. If I attempt to move that tile into the Lines (Vertical Axis) box, or into the Excluded box, it won't allow being dropped there.
    Switching between line, bar, and area graphs reveals the same problem in all graph types.
    Is there any way to supress the display of measure labels on graphs in 11.1.1.5?

    Hi Paul,
    This is the feature in 11g obiee displaying the Measue heading and dimension value... like u said right Web Sales...and so on.
    Here in u case web is the value of dimension and Sales is heading of a measure.
    One way is if u are not using any dimension apart from 1 dim and fact u can put measure labels in the group by axis and dimension column in the show in legend section then it will give u only web.
    But if u have 2 dimension then we have to put this measure labels with either one of the dimensions in this case heading of the measure wil display.
    Thanks
    Subhash

  • Label on Bar Graph

    Dear Champs ,
    I am using one Function Module that is GRAPH_MATRIX_3D.
    In this i am getting the data correct and object is working fine.
    I want to label the graph by putting the value on the tower like ( 300 kg, 400 kg ).
    Please help me out .
    I will be highly thankful to you.
    Thanks and Regards
    Vivek Srivastava

    Hi,
    May be this sample code can help you:-
    REPORT Z_3DGRAPH.
    *structure declaration for performance measurement
    TYPES: BEGIN OF ty_performance,
    company(15) TYPE c,
    q1 TYPE i,
    q2 TYPE i,
    q3 type i,
    q4 type i,
    END OF ty_performance.
    *structure declaration for options table
    types : BEGIN OF ty_opttable,
    options(30) TYPE c,
    END OF ty_opttable.
    *Internal table and work area declarations
    DATA: it_performance TYPE STANDARD TABLE OF ty_performance,
    wa_performance TYPE ty_performance.
    DATA : it_opttable type standard table of ty_opttable,
    wa_opttable type ty_opttable.
    *initialization event
    INITIALIZATION.
    *start of selection event
    START-OF-SELECTION.
    *clearing the work areas
    CLEAR WA_PERFORMANCE.
    CLEAR wa_opttable.
    *appending values into the performance internal table
    wa_performance-company = 'Company A'.
    wa_performance-q1 = 78.
    wa_performance-q2 = 68.
    wa_performance-q3 = 79.
    wa_performance-q4 = 80.
    append wa_performance to it_performance.
    wa_performance-company = 'Company B'.
    wa_performance-q1 = 48.
    wa_performance-q2 = 68.
    wa_performance-q3 = 69.
    wa_performance-q4 = 70.
    append wa_performance to it_performance.
    wa_performance-company = 'Company C'.
    wa_performance-q1 = 78.
    wa_performance-q2 = 48.
    wa_performance-q3 = 79.
    wa_performance-q4 = 85.
    append wa_performance to it_performance.
    *appending values into the options internal table
    wa_opttable-options = 'P3TYPE = TO'.
    APPEND wa_opttable TO it_opttable.
    wa_opttable-options = 'P2TYPE = VB'.
    APPEND wa_opttable TO it_opttable.
    wa_opttable-options = 'TISIZE = 1'.
    APPEND wa_opttable TO it_opttable.
    *calling the graph function module
    CALL FUNCTION 'GRAPH_MATRIX_3D'
    EXPORTING
    col1 = 'Quarter 1'
    col2 = 'Quarter 2'
    col3 = 'Quarter 3'
    col4 = 'Quarter 4'
    dim1 = 'In Percentage%'
    set_focus = 'X'
    titl = 'Company Performances'
    TABLES
    data = it_performance
    opts = it_opttable
    EXCEPTIONS
    others = 1.
    Manas M.

  • Graph axis label in report generator

    HI,
    can someone help me with my problem ?
    I need to add axis labels into graph that i made by Labview Report generator. Is there any possibility to do that ?
    Thank you a lot.
    Patrik :-)

    This is not an Idea on how to improve LabVIEW.  It is a general LabVIEW question asking for help.
    You need to post it in the LabVIEW forum.

  • Remove underlines in legend labels

    I have a data model query
    SELECT ALL T_NTR_MULTIBAR.CAT, T_NTR_MULTIBAR.NUM_CASES_LEFTBAR AS "No. of Survivors",
    T_NTR_MULTIBAR.NUM_CASES_MIDDLEBAR AS "No. of Deaths", T_NTR_MULTIBAR.NUM_CASES_RIGHTBAR AS "No. of Cases"
    FROM T_NTR_MULTIBAR
    WHERE INSTANCE_NUM = :P_INSTANCENUM
    order by ORDERS
    This query is use in Oracle Report Builder 9i Bar Chart. The legend labels display as No._of_Survivors No._of_Deaths No._of_Cases. How do I remove _, so that the legend labels display as No. of Survivors No. of Deaths No. of Cases.
    Thanks
    Brendon

    Hi,
    You can change the Legend Label through Graph Wizard. There will a "Legend Tab' in the Graph Wizard, using that tab you should be able to modify the label. I think this may help you. If you need more information, have a look at the following link:
    http://www.oracle.com/technology/products/reports/htdocs/faq/Graph_FAQ_with_style.html
    Thanks,
    Vidya Viswanathan

  • Change Labels in Legend

    Hi!
    How to change labels in graph legend with presentation XML file? I have created the JSP-based report on such query:
    select ex_sub_name,
    sum(cnt),
    sum(gos)
    from ....
    and have inserted bar graph into this report.
    For every ex_sub_name I have two bar with values from
    sum(cnt) and sum(gos).
    My problem is that labels
    in a graph legend are drawn as sum_cnt and sum_gos.
    But I can not use aliases in SQL-query for some reasons...

    The graph displays the labels based on the data that it is passed. As part of your query you should specify a column with more meaningful labels. This sounds like a metadata issue if you are using OLAP data.

  • Customizing Graph View in OBIEE 11G

    Hi!
    I am using OBIEE 11.1.1.6. In line graph data labels in graph view are coming on the line so some values are not readable, we have to show values always
    How can we move the data labels above the line or below the line. I understand its differnt then in 10g where we use corda engie for graph & with help of PCXML file in POPBIN
    we could customize the graph view. what is equivalent of POPBIN or PCXML file in 11g
    Thanks in advance
    Regards
    Sameer

    Dealing with same issue in 11.1.1.5.0. Help appreciated.

  • Counting Tags - Proper Method

    QUESTION: Am I using proper method in my development of
    automatically tallied footnotes?
    BACKGROUND
    While exploring on the W3 CSS 2.1 website I stumbled on the
    contents property of the :before and :after pseudo tags. This led
    me to the counter( ) function, the counter-reset property, and the
    counter-increment property that led in turn to my creation of
    automated footnotes for a single webpage (see Sample Page below).
    Although very pleased with what I developed, it is probably far
    from original, and I am hoping that someone with more extensive
    background in the use of counters could shed some light on how my
    future might look using the method I have employed for the creation
    of footnotes.
    Both the HTML and CSS code for my sample page validate using
    the FireFox validation tool. All of the CSS code has been placed in
    the document's <head> tag.
    THE FUTURE
    What I envision as my future in this regard is the use of my
    counter to tally footnotes across serially linked webpages. Once
    this is achieved, I am hoping to tally and label figures, graphs,
    tables, pages, section titles and other vital document information
    across the same set of serially linked webpages with a different
    set of similarly created counting tags.
    SAMPLE PAGE
    http://homepage.mac.com/moogoonghwa/practice/CSS/countingTags2.html
    In addition to commenting on the way I have created footnotes
    in the sample document, any online reading suggestions in regard to
    my envisioned future would also be greatly appreciated.
    Roddy

    Hello,
    Counter-reset, Counter-increment, :before and :after aren't
    supported by IE
    currently.
    However, they are listed as one of the CSS Compliance
    upgrades in IE8 Beta
    2.
    In browsers that support it, the method is fine.
    Take care,
    Tim
    "kiusau" <[email protected]> wrote in
    message
    news:gpkd10$36b$[email protected]..
    >
    QUESTION: Am I using proper method in my development of
    > automatically
    > tallied footnotes?
    >
    >
    BACKGROUND
    > While exploring on the W3 CSS 2.1 website I stumbled on
    the contents
    > property
    > of the :before and :after pseudo tags. This led me to
    the counter( )
    > function,
    > the counter-reset property, and the counter-increment
    property that led in
    > turn
    > to my creation of automated footnotes for a single
    webpage (see Sample
    > Page
    > below). Although very pleased with what I developed, it
    is probably far
    > from
    > original, and I am hoping that someone with more
    extensive background in
    > the
    > use of counters could shed some light on how my future
    might look using
    > the
    > method I have employed for the creation of footnotes.
    >
    > Both the HTML and CSS code for my sample page validate
    using the FireFox
    > validation tool. All of the CSS code has been placed in
    the document's
    > <head>
    > tag.
    >
    >
    THE FUTURE
    > What I envision as my future in this regard is the use
    of my counter to
    > tally
    > footnotes across serially linked webpages. Once this is
    achieved, I am
    > hoping
    > to tally and label figures, graphs, tables, pages,
    section titles and
    > other
    > vital document information across the same set of
    serially linked webpages
    > with
    > a different set of similarly created counting tags.
    >
    >
    SAMPLE PAGE
    >
    http://homepage.mac.com/moogoonghwa/practice/CSS/countingTags2.html
    >
    > In addition to commenting on the way I have created
    footnotes in the
    > sample
    > document, any online reading suggestions in regard to my
    envisioned future
    > would also be greatly appreciated.
    >
    > Roddy
    >

  • How to display Month values in SSRS report

    Hi All,
        I have a requirement to display month values in SSRS Chart. x-axis should display all month names from January till current month. How can I set this properties and show it in a line graph
    Thanks & Regards,
    Regards RCP

    Hi,
        The above link is not meeting my requirement. I need January till July to be displayed in x-axis
    labels of graph. How this can be achieved ??
    Regards RCP
    You can create a calendar table on the fly and use it for your dataset to be used in the graph. Use logic as below
    http://visakhm.blogspot.in/2010/02/generating-calendar-table.html
    For getting January till current month use query as
    DECLARE @Start datetime,@End datetime
    SELECT @Start = DATEADD(yy,DATEDIFF(yy,0,GETDATE()),0),
    @End = GETDATE()
    SELECT *
    FROM dbo.CalendarTable(@Start,@End,0,1) f
    As a long time persistent solution best option would be to create a calendar table in the database.
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Can anyone provide Error code list and causes for OBIEE10g/11g ?

    Hi
    Can anyone provide Error code list and causes for OBIEE10g/11g ?
    Regards
    Srini
    Edited by: Srini on Feb 18, 2012 10:41 AM

    Hi,
    List of Bug Fixes Included In OBIEE 11.1.1.5.0
    Admin Tool
    •7538753 SAP BW IMPORT DOES NOT RETRIEVE UNIQUE NAME FOR MEASURE COLUMNS
    •10012297 ADMIN TOOL CRASH ON VERY LARGE EXPRESSIONS – OVERFLOW AT APPROX 3200 CHARACTERS
    •10032385 TABLE MISSING IN SQL “FROM” CLAUSE – FWD PORT 8308443 TO 11G
    •10045212 EQUALITY EXPRESSION IN LTS “WHERE” CAUSES INTERNAL SQORRQLIST ERROR ON QUERY
    •10264475 ADMINISTRATION’S “SHUTDOWN SERVER” MENU SHOULD BE REMOVED
    •10265121 ADMIN TOOL EXPRESSION BUILDER CRASHES ON DOUBLE-BYTE LOGICAL COLUMN NAME
    •10394725 ON-LINE MODE CHECK-IN OF DYNAMIC INIT BLOCK CAUSES [43058] REFRESH LOCK FAILURE
    Answers
    •6521146 ERROR: “NO FILTER” WHEN USING “COMBINE WITH SIMILAR REQUEST” – UNION
    •7534635 INACTIVATING DRILLDOWN ON COLUMN VALUE ALSO INACTIVATES COLUMN HEADER LINK
    •9026854 CLARIFICATION REGARDING DATA FORMAT WHEN COMBINING REQUESTS
    •9107277 KEEP THE NUMBER PRECISION IN DATABASE WHEN “DOWNLOADING TO EXCEL”
    •9524080 PIVOT TOTAL DIFFERENT TO TABLE TOTAL WHEN REPORTAGGREGATEENABLED TRUE
    •9697529 JAPANESE CHARACTER SET NOT PASSED CORRECTLY TO DRILL REPORT IN FIREFOX BROWSER
    •9871470 SORTING ON A NULL VALUED COLUMNS GIVES ASSERTION ERRORS
    •9886904 CORRECT DOC FOR ADDING CUSTOM DATE FORMAT STRING
    •9918283 CORRECT DASHBOARD FORMATTING PROBLEMS WITH SCROLLING
    •9928318 ROW HEADER MISSING AT PIVOT TABLE VIEW FOR MIGRATED REPORTS IN 11G
    •9968574 SOME UPGRADED 10G CHARTS SHOW UP JAVA EXCEPTION
    •10023165 MAPS DO NOT WORK IN MAP VIEWS WHEN JOIN COLUMN CONTAINS A “&” CHARACTER
    •10065166 GAUGE RANGE IS NOT UPDATED WHEN IT CHANGES THE FIELD VALUE
    •10078041 ACTION LINK DOES NOT WORK WHEN COMPOUND LAYOUT ONLY HAS A MAP VIEW
    •10091354 “SCALE MARKERS” OPTION IS MISSING IN VERTICAL AXIS 2
    •10147762 CANNOT SET GAUGE FOOTER (TITLE), KEEPS SHOWING “UNDEFINEDUNDEFINEDUNDEFINED”
    •10182955 BUBBLE CHART IS NOT BEHAVING AS EXPECTED
    •10213761 CONDITIONAL DASHBOARD SECTIONS (GUIDED NAVIGATION) ALWAYS RUNS REPORTS
    •10229397 CANNOT SAVE REQUEST USING STANDARD DATE FORMATS.
    •10282140 CELL IMAGE AT BLANK CELL OF PIVOT TABLE IS NOT DISPLAYED WHEN USING COND FORMAT
    •10296730 UNABLE TO USE PRESENTATION VARIABLE IN SCALE MARKERS
    •10312496 CHARTS. MEASURE LABEL IN GRAPH PROMPTS DOES NOT CHANGE CONTENT OF THE CHART
    •10312795 ACTION LINK ON COLUMN HEADING NAVIGATION DOES NOT CONSIDER PROMPT VALUES
    •10329343 CLICKING A LINE GRAPH BETWEEN TWO DATA POINTS DRILLS TO LAST VALUE IN HORIZONTAL
    •10337649 PIVOT TABLE SHOWS BUTTONS FOR SORTING ON CALCULATED ITEMS.
    •10402102 INCORRECT RESULT WHEN USING [NEW CALCULATED ITEM] PROP IN PIVOT TABLE
    •10414887 DRILL DOWNS NOT WORKING IN CHART PIVOTED TABLE SELECTED FROM VIEW SELECTOR
    •10418875 CHART SIZE IS CHANGING AFTER WEBCAT UPGRADE FROM 10G
    •10634175 GRAPH ENGINE IS NOT RESPONDING
    •10639913 COMPLETE TEXT IS NOT SAVED IN DB IF CURSOR IS MOVED AWAY DURING INSERT
    •11711658 FILTER NEEDS TO SUPPORT UNTYPE LITERAL FOR RANK OPERATOR AS 10G DOES
    •11805468 CUSTOMIZED GAUGE VIEW IS NOT CONSISTENT WHEN EXPORTED AS PDF,HTML AND XLS
    •11817696 INCORRECT FILTER IS BUILT IF FILTER IS CONTRUCTED BEFORE SELECTING REQ. COLUMNS
    •11845286 PIVOT TABLE WITH PERCENTAGES, GRAPHED PERCENTAGE VALUES DISPLAYED ARE INCORRECT
    •11894921 GRAPH LABEL OPTIONS NOT AVAILABLE IN 11G
    •11895279 INCORRECT FILTER VALUE WHEN USING ACTION LINK WITH GRAPH
    •12412666 ALL PAGES LOSES CONDITIONAL FORMATTING
    •12561361 PSE FOR BASE BUG 10295403 ON TOP OF 11.1.1.5.0 FOR GENERIC OS
    CHARTING
    •8990756 MISLEADING INFORMATION IN DOC REGARDING PIVOT TABLE SETTINGS
    DASHBOARDS
    •7459700 ABILITY TO SPECIFY FIXED COLUMN WIDTH TO A DASHBOARD PROMPT
    •10177865 OBIEE 11G : DEFAULT VALUES CANNOT BE DE-SELECTED FROM MULTI SELECT PROMPT
    •10279722 DASHBOARD SLIDER PROMPT SHOWS THUMB VALUES WITH TWO DECIMAL PLACES FOR INTEGERS
    •10279829 DASHBOARD SLIDER PROMPT SHOWS WRONG VALUES FOR “ALL COLUMN VALUES” OR “SPECIFIC
    •10310511 “REQUIRE USER INPUT” MESSAGE APPEARS THE FIRST TIME ONLY FOR THE REQUIRED PROMPT
    •10389799 DASHBOARD NAVIGATION MAY CAUSE GETELEMENTBYTAGNAME ERROR IN IE
    •10411545 PROMPT WITH BETWEEN OPERATOR AND SQL DEFAULT VALUES ARE NOT UPGRADED PROPERLY
    •11056057 ERROR WHILE UPGRADING THE DASHBOARD WITH CERTAIN FILTER FUNCTIONS
    •11076452 ABILITY TO CONSTRAIN PROMPTS AGAINST A SLIDER PROMPT
    •11717024 ERROR 500 OCCURS WHEN SETTING ACCESSIBILITY MODE TO ON
    •12620143 PSE FOR BASE BUG 12561330 ON TOP OF 11.1.1.5.0 FOR LINUX X86 [46] (PSE #602152)
    INSTALL
    •9459177 PREREQUISITES FOR DEPLOYMENT ON SEPARATE MACHINES
    •9540009 UNIXCHK.SH ENCOUNTERS HOST NOT FOUND ERROR WHEN DNS IS NOT AVAILABLE.
    •10071302 ENTERPRISE INSTALL: CONFIGURE PORTS : FORMAT OF INI FILE
    •10126542 OBIEE 11G INSTALATION FAILS AT AS INSTANCE CREATION DUE TO PERM SIZE ERROR
    •10287335 CANNOT START BISERVER1 . SWITCH TO JSSE FRAMEWORK REQUIRED
    •10302421 OBIEE 11G WINDOWS PROMPTS FOR USERNAME / PASSWORD AFTER ENCRYPTING CREDENTIALS
    •11849674 SAG: DISCREPANCY IN DOCUMENTED ORACLE DATABASE REQUIRED FOR MAPVIEWER
    MIGRATION
    •7432799 ORACLE EUL CONVERTER CRASHED WHILE GENERATING A REPOSITORY
    REL_NOTES
    •12604761 TWO STEPS OF THE UPGRADE TO 11.1.1.5.0 ARE NOT CLEARLY DOCUMENTED
    SCHEDULER
    •10036466 “RE-RUN INSTANCE(S) NOW” MENU IS NOT AVAILABLE FOR COMPLETED JOB INSTANCES
    SECURITY
    •8996295 PROVIDE DETAIL INFORMATION TO SETUP WNA(KERBEROS) FOR OBIEE AUTHENTIFICATION
    •9216995 PROVIDE LATEST DETAIL INFORMATION ABOUT HOW TO SETUP LDAP SSL FOR OBIEE
    •10194154 TECHNOTES- PROVIDE DETAIL INFORMATION TO SETUP WNA(KERBEROS) FOR OBIEE AUTHENT
    •10198837 BIEEHOME LOGIN PAGE IS NOT DISABLED EVEN AFTER ENABLING THE SSO
    •10218031 USING EXTERNAL DB TABLE TO SET ROLES SESSION VARIABLE DOESN’T ACCEPT LONG NAMES
    •10373788 IF OBJECTGUID PUBLISHED AND SAMACCOUNTNAME CHANGED USER CANNOT CONNECT ANYMORE
    •11731080 QA:SECURITY GUIDE NEEDS UPDATE FOR DEFINING A USER SESSION VARIABLE
    SERVER
    •6510747 NETWORK FAILURE DURING PHYSICAL QUERY HANGS END USER WITHOUT ERROR MESSAGE
    •6836444 OBIEE SERVER SYSTEM DATE IS WRONG AND DOES NOT MATCH MACHINE SYSTEM DATE
    •8371912 BI SERVER CRASHES ON NAVIGATION SPACE MAP RACE – SR 3-887711721
    •9433198 DOCUMENT SYSLOG ENTRIES IN SYSTEM ADMINISTRATOR’S GUIDE
    •9696424 DOC INSTANCECONFIG PARMS ALLOWEDLANGUAGES & ALLOWEDLOCALES IN SYSADMIN GUIDE
    •9954411 PSR:MOD_SUPPORTED NOT ENABLED FOR TERADATA AND CAUSES CAMPAIGN SLOW PERFORMANCE
    •10258683 REQUEST WITH COMPLEX FILTER IS CONSUMING ALMOST ALL CPU & NO SESSION IS CREATED
    •10258755 EXCEL FAILS TO CONNECT TO 11G BI SERVER USING ODBC DSN
    •10335924 REPORT-BASED TOTALS FAIL ON MEASURES CONTAINING AGGREGATION EXPRS SUCH AS FILTER
    •10374571 NEED FLEXIBILITY TO OVERRIDE HOSTNAMES WHEN CUSTOMER DNS IS INCORRECT OR BROKEN
    •10650122 PIVOT VIEW WITH UNION OF NON – COMPATABLE TYPE ERROR IN OBIEE 11G AFTER UPGRADE
    •11804596 NQQUERY LOG LEVEL 2 IS TOO VERBOSE – BACKPORT 10308263 TO 11.1.1.5
    •11809295 NQUDMLGEN NOT GENERATING UDML FILE IN UTF FORMAT
    UPGRADE
    •9886765 ERRORS ENCOUNTERED WHEN UPGRADING WEB CATALOG USING UA.BAT
    •10121344 ERROR IN LOG USING UA TO UPGRADE BI SCHEDULER SCHEMA ON SQL SERVER DATABASE
    •11069928 UPGRADE SHOULD HANDLE PROMPT WITH INCONSISTENT VALUES AS 10G DOES
    WEB_ADMIN
    •8564456 SHARED FOLDER ACCESS PERMISSION ISSUE
    •9381764 CATALOG MANAGER COPY FUNCTION NOT WORKING AS EXPECTED
    •9739865 EXITING MANAGE SESSION RESULTS IN HTTP ERROR
    •10016252 LACKING INFORMATION ON FORCEABSOLUTECOMMANDURL FOR ABSOLUTECOMMANDURLPREFIX
    •10144989 WEB CATALOG DOES NOT UPGRADE TO 11.1.1.3.0
    •10218524 VALIDATION ERROR AFTER THE UPGRADE OF WEBCATALOG TO OBIEE 11G
    •11723425 INCORRECT DEFAULT VALUE OF DEFAULTROWSDISPLAYED IN THE INSTANCECONFIG.XML
    •11827202 OPMN NOT STARTING AFTER SETTING UP THE REPLICATION AGENT
    WEB_GNRL
    •10191078 FILTER VALUES ARE RESET IN GO URL WHEN COLUMNS ARE SORTED OR RE-ARRANGED
    •10360461 NEED ABILITY TO CONTROL NEW, DASHBOARD AND OTHER HEADER LINKS
    •11780508 10G COLUMN FILTER PROMPT WITH PROMPTCAPTION ATTR NOT UPGRADING
    •12416695 TOOLTIP EMPTY IN MAPVIEWER
    WEB_INTGRT
    •10294759 FMAP-REFERENCED IMAGES IN ANALYSIS HEADERS DON’T APPEAR IN DOWNLOADS TO EXCEL
    WEB_MKTG
    •8692820 DIRECT DATABASE CAMPAIGN LOAD FORMAT COMBINED LISTS FAILS
    •9908019 SAW SERVER CRASH WHEN LOADING A PARTICULAR CAMPAIGN
    •9935859 UNGROUP OF SEGMENT BLOCKS CORRUPTS SEGMENT DEFINTION AND BAD COUNTS
    •10331355 MOVING CRITERIA WITHIN A SEGMENT’S GROUP CORRUPTS THE INCLUSION OPTIONS
    Thanks,
    RM

  • Can not edit data labels in old graph chart objects using Word 2010

    In Word 2010, Insert object "Microsoft Graph Chart", go to Chart Options and check an item in Data labels, such as "Series Name", "Category Name" or "Value". Click OK, then double-click on a data label to edit its
    settings, or right-click on a data label and select "Format Data Labels..."
    This makes Word to crash. The only way I can get out of it is by using the Task Manager to kill Word.
    This happens in Windows 7 and Windows 8. This does NOT not happen in Word 2007 nor Word 2013, so it seems specific to Word 2010. All our clients have the same problem, this does not seem related to a specific workstation configuration.
    The Microsoft Graph Chart are the old charts used within .doc files. I have an application still generating those types of files and need to edit data label settings manually before processing the files with my application.
    Also note that anytime you edit a .doc file in Word 2010 and you see "Compatibility Mode" in the title bar, the Insert / Chart option from the ribbon inserts an old type chart (same as if you use Insert / Object / Microsoft Graph Chart), not the
    new Word 2010 charts. You then have the same problem editing the data labels.
    The underlying Activex seems to be the Chart.Exe file, the one I have installed is 14.0.7012.1000. You can see the version by double-clicking the chart and then look in the Help / About menu.
    Any help will be greatly appreciated.

    As this is a configuration issue and not a programming issue I' moving your question to a more appropriate forum where you're more likely to find assistance.
    Cindy Meister, VSTO/Word MVP,
    my blog

Maybe you are looking for

  • Reading DVDs in Windows Vista

    Hi, I have installed Windows Vista on my Macbook, and I can't read DVDs while I am on WIndows. However, I can read CDs, so I'd like to know how to read DVDs on Windows. Thanks for you help!

  • Tracking execution of bean used in jsp

    hi, i'm using a bean to get records from a database. but i'm not sure if the bean is actually getting called and executed from the jsp file. i'ld like to get the step by step details about the execution of bean when it is called. is this possible? ho

  • How to use olap api

    i have generated cube with oracle 9.2.0.1.0 with star schema and now i want use directly access olap api from java programs ,what is the steps pls suggest me? i am little bit confused about that is there any examples with java progarams

  • Daylight Savings Time 2007 and Jrockit JVM 1.4.2_04

    If I have applications running on WLS 8.1 SP2 with Jrockit JVM 1.4.2_04 on AS3, would the NEW Energy act of 2007 which resets the DST in march insteadt of April affect my JVM? If yes is there a patch?

  • Shuffle within playlist?

    Is it possible to shuffle songs just within a playlist? I have lots of other songs on Ipod, but wanted to just shuffle through one of my playlists. Any help appreciated! Thanks