Scorecard Strategy Tree Not Showing Demical Scores

Our score range is between 1 and 5, when i am opening objective in edit mode, score is 3.84 an it is OK but score in strategy tree is 3, we realesed that strategy tree can not show decimal scores, how can i solve this problem.

Yes, that was the reason.
The scorecard link the KPI using absolute path (you see it if you open the XML of the scorecard using Catalog Manager or on the filesystem), so even if you moved the scorecard to a shared folder it was still trying to read the KPIs from your "my folder". Only you (or anybody else using your same account) were able to see them, all the other users have the "structure", but nothing more. It's still a point that sometimes when moving objects people forget (also because for them it works fine ....).

Similar Messages

  • Hierarchical tree not showing

    Hi, My hierarchical tree is not showing on the form, I have the following situation;
    I have a table with the parent and child coloumns, I have created a Record_Group using a query that I have tested in PL/SQL it works
    select 1, level, form_name
    from iso_forms
    connect by prior form_name=action
    start with action is null
    The rsult is
    1 LEVEL FORM_NAME
    1 1 Edit
    1 2 Holder
    1 2 Isotopes
    1 2 Laboratories
    1 2 Personal
    1 2 Incident
    1 2 Equipment
    1 2 Over Exposure
    1 2 Archive
    1 1 Print
    1 1 Queries
    11 rows selected.
    I have set in the properties of the tree to use the Record_Group that has this query, but when I run the form I only see a blank square where the tree should be showing.
    Can anyone tell me what I am doing wrong?
    Thank you
    Michael

    a control block is one not based on a table/view/procedure . check the block's query data source name. its must be blank.
    I suggest you create a procedure where you create the record_group using
    CREATE_GROUP_FROM_QUERY,populate_group and ftree.set_tree_property
    Here is my code that I i used to populate my tree .it works:
    PROCEDURE populate_the_tree IS
    grp recordgroup;
    error_number number;
    grpname varchar2(20) :='rg_group';
    tree_id item :=find_item('ctrl.tree');
    grp_qry2 varchar2(500) :='select -1,level,ename,null,empno from emp start with mgr is null connect by prior empno=mgr';
    begin
         grp := find_group(grpname);
         if not id_null(grp)
              then delete_group(grp);
         end if;
    --     grp := create_group_from_query(grpname,grp_qry1||grp_qry2);
         grp := create_group_from_query(grpname,grp_qry2);
         error_number:=populate_group(grpname);
         if error_number <> 0
              then message('Error while populating tree');
              raise form_trigger_failure;
         end if;
         ftree.set_tree_property(tree_id,ftree.record_group,grp);
    END;
    Message was edited by:
    lewismak2000

  • Hierarchical tree not showing up while running the form

    Hi Gurus,
    I have a problem while running forms in 10g AS.
    The hierarchical tree control is showing up when I run the form in my local development (win xp) system. But, when I run the same form through my 10g Application server(linux), the hierarchical tree control is not showing up.
    Can anyone suggest some solutions ?
    Thanks in advance.
    Sundar K

    Hi Andreas,
    Thanks for the reply.
    The form shows a blank square-box, instead hiearchical tree. I can see other controls like text-box, LOV, command button on the same form.
    The java console shows,
    Downloading http://test.abits.com:7778/forms/java/frmall_jinit.jar to JAR cache
    Downloading http://test.abits.com:7778/forms/java/f60tree.jar to JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native.
    Forms Applet version is : 10.1.2.0
    The problem persist, even though I change the appsweb.cfg file to use frmall.jar instead of frmall_jinit.jar.
    I'm using 10g application server (iAS 10.1.2.0.2).
    Kindly advise. Thanks in advance.
    Sundar K

  • CRXI & CR9 - Group Tree not showing/available

    I have a report where the Group Tree is NOT showing for both CRXI & CR9! Display Group Tree is checked in both versions. This report has 3 groups. This has happened on other reports. I have tried unchecking the Display Group Tree option and saving report, then checking it again and saving it, but still unable to view Group Tree.
    I have other reports with grouping and the Group Tree is available.
    Any suggestions?
    Thanks,
    JSR

    Please test by implementing following steps:
    1.Open this report in the designer and save with some other name.
    2.Create a new connection to the desired database and use 'Set datasource location'  option under Database tab to set the datasource location to this new connection.
    3.Open each group and re-select the database field (on which the group is based).
    4.Check whether ther are any errors (at run time ) while refreshing this report.
    Please provide following information:
    1.Exact version of crystal reports(Help>>About Crystal Reports)
    2.Has anything changed with this report since the last use.
    Thanks

  • Hierarchical Tree not showing using a record group to populate

    Hi, I am trying to set up an hierarchical tree. Can someone please give me the exact steps I need to take to get this right.
    I am trying to create a hierarchical tree to behave like a menu on a Main form from where I will call the other forms of my application.
    I have done the following
    select 1, level, null, form_name, form_name
    from iso_forms
    connect by prior form_name=action
    start with action is null
    and get this when I run the statement in pl/sql
    1 LEVEL NULL FORM_NAME FORM_NAME
    1 1 Edit Edit
    1 2 Holder Holder
    1 2 Isotopes Isotopes
    1 2 Laboratories Laboratories
    1 2 Personal Personal
    1 2 Incident Incident
    1 2 Equipment Equipment
    1 2 Over Exposure Over Exposure
    1 2 Archive Archive
    1 1 Print Print
    1 1 Queries Queries
    My tree on my main form is still blank, I have checked that the tree is the only item in the block but I am not sure how to confirm that it is a control block. I created the tree in layout editor by clicking on the Hierarchical Tree icon on the left and then dragging out a block, so I am assuming that the block is of the correct type.
    Thank you for your assistance
    Michael

    a control block is one not based on a table/view/procedure . check the block's query data source name. its must be blank.
    I suggest you create a procedure where you create the record_group using
    CREATE_GROUP_FROM_QUERY,populate_group and ftree.set_tree_property
    Here is my code that I i used to populate my tree .it works:
    PROCEDURE populate_the_tree IS
    grp recordgroup;
    error_number number;
    grpname varchar2(20) :='rg_group';
    tree_id item :=find_item('ctrl.tree');
    grp_qry2 varchar2(500) :='select -1,level,ename,null,empno from emp start with mgr is null connect by prior empno=mgr';
    begin
         grp := find_group(grpname);
         if not id_null(grp)
              then delete_group(grp);
         end if;
    --     grp := create_group_from_query(grpname,grp_qry1||grp_qry2);
         grp := create_group_from_query(grpname,grp_qry2);
         error_number:=populate_group(grpname);
         if error_number <> 0
              then message('Error while populating tree');
              raise form_trigger_failure;
         end if;
         ftree.set_tree_property(tree_id,ftree.record_group,grp);
    END;
    Message was edited by:
    lewismak2000

  • Some JMS objects do not show up in JNDI tree

    Hello friends. I have a situation where some of my JMS Queues do not show up in
    the JNDI tree. Other Queues / Topics show up fine. I cannot find any difference
    in the interface that tells me what my cause this to happen. Any insight would
    be appreciated.
    brian

    are you using a cluster? if so check the multicast to see if its working
    right.
    Where are you looking up the JNDI tree? in the console or are you checking
    the JNDI tree via weblogic.Admin LIST command? the LIST command may be a
    better way to see it for sure.
    sree
    "Brian" <[email protected]> wrote in message
    news:40b74519$1@mktnews1...
    >
    Hello friends. I have a situation where some of my JMS Queues do not showup in
    the JNDI tree. Other Queues / Topics show up fine. I cannot find anydifference
    in the interface that tells me what my cause this to happen. Any insightwould
    be appreciated.
    brian

  • af:tree do not show up default tree image like folder or plus icon

    Hi all,
    I am new to ADF and stuck with the problem where af:tree component do not show up default icons to expand and collapse.I am using websphere. Please help me to know where i am getting wrong to get the icons.
    Thanks in advance
    Irfan.

    quote:
    Originally posted by:
    bregent
    Always include a url when you have questions about your web
    pages.
    Sorry, newbie to these forums here.
    here's a link to one of them:
    http://www.onlineschoolsurveys.com/banner_trial_2.html
    With this page I tried using a table and put the images in
    spots in the table. The empty spots are where there should be
    images. The two images that are there were made by other people.
    This link is actually quite obnoxious.
    http://www.onlineschoolsurveys.com/oss_banner.html.
    With this one, again the only image that shows up is one that I
    made originally as a bmp export out of Snap Surveys, turned into a
    gif in Photoshop (I think). In the table toward the bottom with the
    pink squares there should actually be two pink squares, one should
    have an image in it. Being a practice page that I did not expect
    others to look at I left the obnoxious background. If this is too
    annoying, I can remove the background and repost.
    Did you define a site in the site manager?
    I'm sorry but I do not know what this means. I regularly have
    a site at www.onlineschoolsurveys.com. The first link goes to a
    page that is actually a part of the website- I tried using a
    template I know works thinking that maybe the non-templated page
    was flawed. So if you are asking if these were loaded to an active
    website: yes, I regularly have pages at that website, but no, these
    pages are not intended to be a part of my regular website. I was
    just using that space to practice.
    Do the linked images exist within the defined site?
    Yes, the images were uploaded. They should exist in an image
    folder. Although it may be really stupid for me to make a link to
    an unprotected list of files, here is the list of images in my
    images folder:
    http://www.onlineschoolsurveys.com/images/
    Since I am new to using a message board for help, please advise me
    if I should not post such directories in the future.
    Thanks for your quick response.
    Mel

  • Md04 not showing Overview tree

    In my case  MD04 is not showing the overview tree.
    First case
    For material x if i put Plant  and MRP area same then its not showing the overview tree.
    Second case
    When i put MRP area (as per configuration ) and plant in this case it is showing the overview tree.
    please suggest.

    Dear Amit,
    system is giving correct results,
    if your order will show the tree in which mrp area it is.
    now suppose you dont put any MRP area in the intial screen and put plant only. then system will consider that plant same as mrp area.
    now if you put the the MRP area and the respective plant.
    orders in that MRP area will be shown. and order is is only shown when there is pegged ordes to that order.
    in your case there may not be dependant orders.
    and you cant see the same orders in 2 cases you told.

  • Performance Point Decomposition Tree does not Showing the Any Dimensions

    Hi,
     Actually i have created three (dimension) filters in Dashboard which is associated with Analytic grid. Among those three dimension two of them in Analytic Chart 'Bottom axis' remaining one dimension in Analytic Chart 'Background'.
    Now the decomposition tree is not working. but i would moved BackGround dimension to bottom axis then then decomposition  tree is working fine.
    Why? Does decomposition tree not work, if any dimension would be in analytic chart 'BackGround'.
    Can anyone tell answer for issue? Any work around for this?
    It would be great if any one would give a correct Solution. Thanks in Advance.
    Thanks & Regards
    Poomani Sankaran

    One  observation which is, if All the filter Dimensions would be in bottom axis  then the Analytic grid Decomposition Tree is working fine. If i would keep any one of dimension in 'Back Ground' then it is not showing any dimension in Decomposition
    Tree.

  • Tables/views/Procedures/functions etc are not showing up in tree view, but can execute select * on dba_objects (can view in DBVisualizer)

    There was one other thread from years ago detailing this same problem. The only clue was to check whether select all privs were enabled for the user on dba_objects. They are for the user accessing the system. In fact, all tables/views/procs/funcs can be viewed in the tree view of DBVisualizer.  For whatever reason, OSD does not show anything.
    I'd appreciate any clues! Thank you!
    OSD Version  Version 4.1.0.18
    OS: Windows 7/64
    Java: 1.8.0
    Connecting to Oracle 11g 11.2.0.3.0

    Thank you, Gary.
    I updated the post with the version info. I did not explicitly install this JDBC driver, so whatever the OSD came with?  Unless it is using whatever is installed on my machine, in which case would be the thin driver.
    I did check out that post, and I appreciate you sharing it. I did click the 'include synonyms' filter, but behavior remained unchanged.
    I would prefer to use OSD, and that is what our dev team was expecting to use, but we just can't see the information.  We are using an ID that does not 'own' those tables, per se.  But, why would DBVisualizer show these tables, when OSD does not?

  • Why this tree can not show on the Applet?

    hi, all, I try to create a java Applet show a tree, this following code has no error, but the tree can not show on the Applet, can any one tell me why? thanks!
    <code>
    import java.awt.*;
    import java.applet.Applet;
    import java.awt.event.*;
    import java.util.*;
    import javax.swing.*;
    import javax.swing.tree.*;
    import java.awt.dnd.*;
    public class AppletApp extends Applet {
         Date myDate;
         protected JTree m_tree = null;
         protected DefaultTreeModel m_model = null;
         protected JTextField m_display;
         public void init() {
         public void paint(Graphics g) {
              DefaultMutableTreeNode root = new DefaultMutableTreeNode("root");          
              DefaultMutableTreeNode node1 = new DefaultMutableTreeNode("node1");          
              root.add(node1);                    
              node1.add(new DefaultMutableTreeNode("sub1_1"));                         
              node1.add(new DefaultMutableTreeNode("sub1_2"));                                        
         public static void main(String arg[]) {
              JFrame myFrame = new JFrame();          
              Container contentPane = myFrame.getContentPane();
              contentPane.setLayout(new GridLayout(1,2));          
              AppletApp app = new AppletApp();          
              contentPane.add(new JScrollPane(app), BorderLayout.CENTER);     
              myFrame.addWindowListener (new WindowAdapter() {
                   public void windowClosing(WindowEvent e) {
                        System.exit(0);
              app.init();
              app.start();
              myFrame.setSize (400,400);                              
              myFrame.setVisible(true);          
    </code>

    Not quite sure what you are trying to do, but if you move the code from the paint() method into the init() method (then delete your paint() method), then add one new line to the init() method (after the code you just inserted) that reads:
    getContentPane().add(new JTree(root));
    - You should at least see a tree!

  • Content Tree Media Folder Not Showing Images

    I have below issue with getting the uploaded images under Media tree section in Content Tree. Please see if you can help me to figure out the issue.
    I did below configuration in Admin section for Tree same as avispots site.
    Title:
    Media
    Tooltip:
    Media
    Sites:
    avisports
    My_Site
    Required Roles:
    SiteAdmin, SitesUser, GeneralAdmin
    Tab Contents:
    My Image Asset
    Image Category
    Image
    ID:
    1336168677350
    My asset name is "My Image Asset". Though I am able to upload and see the images of type "My Image Asset" and Image type, I am not able to see them in the content tree. If I double click on Media it
    shows all images in browsing screen (same as after search) however it does not show them under the Media folder as shown in avisports site.

    Interesting, I'm getting the same thing.  I know for a fact, all of my music that I had album artwork for used to show the album art in Finder.  Admittedly, I don't know when this changed, as I haven't checked for a while (pre-mavericks).  One thing I did notice just now, though, is the album art does show for music purchased through iTunes.  It doesn't show for music that I have imported.  This didn't used to be the case...

  • Hyperion Performance Scorecard - Strategy Map - Node population ...

    Dear friends,
    we've got a development project of balanced scorecard and at the stage we are, we need to populate our Strategy Map tree with the Measures (on the leaves) and the Scorecards (intermediate nodes).
    The problem is that we have got 23 Strategy Map, each one with aprox. 100 nodes and as you understand it's a high time spend doing it by hand. Is there any tool or programming API to do it automated?
    Here you've some small example with the parentNode (Scorecard) with two childs (Scorecards leaves) which need some Measures (M1...M4).
    StrategyMap1:
    Parent Node
    +
    | |
    child1 child2
    M1               M3
    M2               M4
    Best Regards.

    OK, this is what I do. There is an import/export utility documented in appendix C of the admin guide.
    1. I export all the possibilities using the export utiiity, then I have a base line.
    2. I create an example of what I want to do from the front end.
    3. I repeat the extract, and look at what HPS has created in the back end.
    4. I use the export files created from the export to use as a template to add the other scorecards, strategy maps, employees, whatever you are trying to load. These are CSV files.
    5. BACKUP THE DATABASE!!
    6. Use excel to populate the fields you need. Be aware you don't need to import ALL the fields, just the required ones, That is documented.
    WARNING--- WARNING
    Doing ANYTHING from the backend is dangerous. Backup first, and after you load, restart the server. HPS will not reload all the changes and validate them if you don't restart. It may show the changes, but it won't always validate, and you may find something went wrong and it won't start. This is OK if you catch it right away, you can do a restore.
    The time lag is due to the way the application does caching.
    Good Luck,
    Theo Korol
    [email protected]

  • IBase search result list not showing in Account Identification

    Hi Gurus,
    I'm new to CRM and we have an upgrade issue. We just migrated to EHP3 for SAP CRM 7.0. After the migration, the installed Base result list is not showing in the Account Identification screen. We have the requirement to show the installed base on the right side of the confirmed account and also the result list in case the customer have multiple equipments. The first part is working correct and it shows the data if there is only one equipment with the customer. But in cases where there are more than 1, the installed base view shows blank and also the result list does not show. Instead the Interaction History is displayed. I have checked all the forums and the config and it all looks correct. Here is the list of config that we have
    1) I have the Account Identification Profile created and assigned the Object Component 'ICCMP_IBASE'  to it with Auto Search checked ON. This I believe is for the IBase Details which is working fine for single equipments.
    2) Function Profile 'BPIDENT' with value of the Account Identification Profile has been assigned to the Business Profile.
    3) The Installed Base Profile 'DEFAULT_TREE' has been updated to UNCHECK 'Display Tree' as we want the result list.
    4) Function Profile 'IBASE' with value 'DEFAULT_TREE' has been assigned to the Business Profile.
    Am I missing something? The exact same config works perfectly in a box that has not yet been upgraded. Any help would be appreciated...

    Hi,
    I tested this issue and I can reproduce it in my environment. However, as far as I know, this behavior won't affect the usage of the address book.
    I searched the internal resource but I cannot find a bug report regarding this issue. If you have any suggestion about this issue, you can submit a feedback via:
    http://office.microsoft.com/en-US/suggestions.aspx
    Best Regards, 
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • Hard Drive Icon Not Showing Up on Desktop

    Hey folks, this might be a very very noobish question, but I guess I'm fairly new to OSX...
    My Hard Disk Drive icon is not showing up on my desktop for some reason...if I open a New Finder Window, I can't see it on the upper left hand quadrant in columnar view, but I can get to all the shortcut folders in the lower left hand quadrant (Applications, Documents, Movies, etc.), but can't navigate to the root directory unless I use Terminal (yup, I'm root user).
    When I go into Disk Utility (/Applications/Utilities/Disk Utility.app) then I can see the drive itself as well as the Windows partition I created for Bootcamp purposes. I tried Verify Drive and Verify Permissions to see if there were some weird problems with the drive itself but both came back perfect, and still no HDD icon on the desktop.
    I have a feeling it's just some weird setting I may have inadvertently tweaked, so any feedback, advice, or information on how to get it back would be very welcome and appreciated. In case it's any help, here is the HDD Information from Get Info:
    Name : HDD_loc
    Type : Volume
    Disk Identifier : disk0s2
    Mount Point : /
    File System : Mac OS Extended (Journaled)
    Connection Bus : Serial ATA 2
    Partition Type : Apple_HFS
    Device Tree : /PCI0/SATA@1F,2/PRT0@0/PMP@0/@0:2
    Writable : Yes
    Universal Unique Identifier : FA4BDB3B-DA6C-3E01-A726-41B2B9846E79
    Capacity : 135.0 GB (144,955,146,240 Bytes)
    Free Space : 41.5 GB (44,599,959,552 Bytes)
    Used : 93.5 GB (100,355,186,688 Bytes)
    Number of Files : 792,250
    Number of Folders : 148,707
    Owners Enabled : Yes
    Can Turn Owners Off : Yes
    Can Repair Permissions : Yes
    Can Be Verified : Yes
    Can Be Repaired : Yes
    Can Be Formatted : Yes
    Bootable : Yes
    Supports Journaling : Yes
    Journaled : Yes
    S.M.A.R.T. Status : Verified
    Disk Number : 0
    Partition Number : 2
    Additionally, I'm not doing any kind of Full Disk Encryption whether using Apple's built-in encryption or some third-party such as PGP.
    Thanks in advance!

    Thanks ElBiggus, I neglected to add that I had already done this. "Hard disks" is checked, as is "CDs, DVDs, and iPods", as well as "Connected Servers".
    If I drop down the "New Finder windows open:" menu, I see "Home", "Documents", "Computer", "iDisk" (greyed out), and "Untitled", which is my Windows partition.
    This is a very strange one...can't seem to figure it out

Maybe you are looking for