Project Server 2013 - Graphical Indicators - Not showing until the project is published via Project Pro 2013

Greetings -
I have a custom field on a PDP that is used to manually flag a project for review.  Once the field is set to "Flag" a red flag should show on the Project Summary page prompting the Portfolio Manager to follow up.  The red flag only appears
after publishing the project via Project Pro 2013 not by just editing the PDP via Explorer (Save and Check in).
This occurs on both projects that were created prior to the graphical indicator being added to the PDP and new projects.
Now if instead of using the red flag graphical indicator I just used the text "FLAGGED" that would work fine.
So is this a bug?  Or is something setup incorrectly?  Or is this how PWA is supposed to handle graphical indicators on the project summary page?
Any help would be much appreciated.

Hi Gunnery,
I made the following test: I create 2 project ECF both inserted in the Project details PDP:
for review: flag type field with graphical indicator in case value = yes
for review_2: text type field (with a yes/no look-up table) with graphical indicator in case value = yes
Whitout going to Project Pro, I'm able to modify the 2 fields for any project (created before or after the ECFs creation) and the graphical indicators are instantaneously shown in the summary project center view (just pressing F5).
Note that the graphical indicator is not shown in the PDP, just the text value. Note also that I've not been to Project Pro neither to PWA/schedule PDP to publish the project plan.
Then
Does that correspond to your need? Can you reproduce this example and validate wheither or not it works.
Guillaume Rouyre - MBA, MCP, MCTS

Similar Messages

  • I Published a report on the report server but it's not showing in the internal application we use to access reports

    Hi, 
    I Published a report on the report server but it's not showing in the internal application we use to access reports. The name of the application we use is called MAMA and this application has access to all the reports on the SQL report server. My email is
    [email protected] my cell phone number is 201-888-7952. 
    Thanks. 

    Hi Roger,
    Based on my understanding, you publish a report on the report server. When you access reports with internal application, the report doesn’t display, right?
    In your scenario, since you mentioned you have published the report to report server, please go to report manager, check if you can see the published report and open the report properly. If the published report is displayed on report manager, it should not
    be the issue in Reporting Services. In this scenario, since the MAMA application has established connection with on report server, it may not update items on report server after you publish your report onto report server. So please try to “refresh” in MAMA
    or reconnect the report server. If issue persists, I suggest you contact the MAMA application vendor to get some more effective advices.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu

  • Progess bar is not showing until the task is completed

    Hi,
    when some button press, in button action i am using "progessBar.setVisible(true)" as fist statement then i am processing some XML files.
    according to above scenario the progress Bar need to visible first then processing XML files later
    but after processing the XML files the progress bar is showing.
    i want to progressbar visible fist then xml files process start
    this is the sample code
    private void addComp(java.awt.event.ActionEvent evt) ------------------------------------------------>here button action start
        progressBar.setVisible(true);----------------------------------------------------------------------->here i am make progressBar visible
        progressBar.setVisible(true);
        buttoncount++;
        if(buttoncount>=2)
            jComboBox1.removeAllItems();
            jComboBox2.removeAllItems();
        jComboBox1.addItem("         ---select---");
        jComboBox2.addItem("         ---select---");
       System.out.println("enter into action");
            try {
                File dir = new File("C:\\Xmlfiles");----------------------------------------->from here XML processing starts
                System.out.println("time in nano :"+System.nanoTime());
                filesList = dir.list();
                java.lang.Process p = null;
                Runtime rt = Runtime.getRuntime();
                for (int i = 0; i < filesList.length; i++)
                    String fname = filesList;
    String[] s = fname.split("\\.");
    String s1 = s[0];
    if (fname.endsWith(".xml"))
    String fname1 = dir.toString() + "\\" + fname;
    String command =
    "cmd /c pari_api_client.bat -s localhost -u admin -p Pari0426 -if " +
    fname1 +" -of C:\\Responses\\" + s1 + "xmlResp.xml";
    String[] st=null;
    File wdir=new File("C:\\apiDist\\bin");
    p = rt.exec(command, st, wdir);
    requests++;
    Thread.sleep(1500);
    status=true;
    File dir1 = new File("C:\\Responses");
    String[] filesList = dir1.list();
    int responses=filesList.length;
    System.out.println("Lenght :"+responses);
    System.out.println("Faild Xml files :");
    int unSuccessfulXmls=0;
    for(int i=0;i<filesList.length;i++)
    if(filesList[i].endsWith(".xml"))
    String fname=dir1.toString()+"\\"+filesList[i];
    DocumentBuilderFactory docBuilderFactory = DocumentBuilderFactory.newInstance();
    DocumentBuilder docBuilder=docBuilderFactory.newDocumentBuilder();
    Document doc=docBuilder.parse(fname);
    org.w3c.dom.Element root=doc.getDocumentElement();
    org.w3c.dom.Element elm=XMLUtil.getElementByTagName(root,"ErrorList");
    org.w3c.dom.Element warnElm=XMLUtil.getElementByTagName(root,"WarnList");
    String fname1=filesList[i];
    if(elm!=null||warnElm!=null)
    System.out.println(fname1);
    jComboBox2.addItem(fname1);
    else
    System.out.println(fname1);
    jComboBox1.addItem(fname1);
    } catch (Exception e) {
    e.printStackTrace();
    System.out.println("file processing over");
    after processing the XML files the progressBar is visible
    what is the problem?? where i am missing
    please help meeee
    Thanks in advance,
    Nagaraju.
    Edited by: uppala on Dec 23, 2009 11:00 AM
    Edited by: uppala on Dec 23, 2009 11:31 AM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Your code is execting on the Event Dispatch Thread (EDT) which means the GUI can't repaint itself until the long running task finishes.
    Read the JProgressBar API and follow the link to the Swing tutorial on "How to Use Progress Bars" for a working example. While in the tutorial you should also read the section on "Concurrency" which explains about the EDT.

  • Why are the text and graphic elements not showing on the iPad

    I have a slideshow of pictures full bleed on my inDesign document with text and graphics on top of the pictures (not part of the slideshow).
    When I preview on the iPad all I can see is the gallery of images?
    Is it not possible to put text on top of a slideshow?
    Here it is as it appears on InDesign...
    ...and here as it appears on the iPad...
    Any ideas? I'm pretty new at this, but I couldnt find anything in the forums
    Many thanks for reading
    Richard

    http://forums.adobe.com/message/5246914#5246914

  • When I go to the app store on my iPod and iPad graphics do not show in the description, why?

    why doesn't the graphics appear when I click on an app for description?

    so far nothing has helped, all discussions are not related to what I am having a problem with.
    this all has to do with the iTunes app store.

  • The report I published on the SQL server report server is not showing in the application we use to retrieve reports.

    The report I published on the SQL server report server is not showing in the application we use to retrieve reports. My cell phone number is {removed}
    Thanks.

    Hello Roger Tenn,
    Thank you for posting in the TechNet Forum.
    As this issue is related to SQL server report server, to receive better report, it is recommended to ask in the SQL server forum.
    https://social.technet.microsoft.com/Forums/en-US/home?category=sqlserver
    The professionals here will be glad to help you.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Notification on apps are not showing until i open them ??

    notification on apps are not showing until i open them

    Hello captin007,
    Thanks for the question. After reviewing your post, it sounds like apps show notification only after you open the app. I would recommend that you read this article, it may be able to help the issue.
    Understanding notifications on iPhone, iPad, and iPod touch - Apple Support
    If you're not receiving notifications for a specific app, try these steps:
    Verify that the app supports notifications. 
    After installing an app or restoring a backup to a different iOS device, open the app to begin receiving notifications. If the app requires entering or logging in to an account, you will need to do this before receiving notifications.
    Check Settings > Notification Center to ensure that the app is configured for notifications. If notifications do not appear in the Notification Center, verify that the Notification Center setting for the app is enabled.
    Thanks for using Apple Support Communities.
    Have a nice day,
    Mario 

  • FTP folder location is not showing in the production server but exist in the development server.

    Hi,
    a wired glitch in my SSIS 2005 package in production server where the FTP folder location is not showing  but its existing in my laptop version
    EX: - t01/app/_res folder
    When i open the package from the production server "_res" is not showing within the remote path in the file transfer task.
    but "_res" folder is shown in my development environment.
    I tried with winscp FTP software in the production sever , and was able to access the  "_res" location through the FTP software. What could this be?  a BIDS sofitware version issue???
    VS 2005 Version in development server
    -Is 8.0.50727.42(Premier Partner ENU)   .net framework is 4.5.1
    VS 2005 Version in production server
    -Is 8.0.50728 (Premier Partner ENU)   .net framework is 2.0 Service pack 2.0
    thanks.

    When you open the package on the production server, do you mean opening it with your Windows account from BIDS on that server? Ff the ftp connection in the package has a password it will have been stored in your laptop when you designed the package. when
    you deployed the pacakge on the server as a file and open it with BIDS then the password will be gone. You would have to go into the package ftp connection properties, reassign your password and save the connection and the package again.
    Jan D'Hondt - SQL server BI development

  • Essbase server is not showing in the windows services (11.1.2.1)

    Hi All,
    Essbase server is not showing in the windows services 11.1.2.1. when I checked the processes from task manager it is there.
    Regards,

    The windows service for essbase in 11.1.2.x is an OPMN service "Oracle Process Manager..."
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • 6.1 NPD - Project Name and Status not showing in the Project Header

    I have this issue in 6.1 NPD - The NPD Project Name and Status is not showing in the Project header when opening a project. Any ideas? Thank you.

    Is this happening for NPD Projects that are newly created, prior to clicking Save? Or for already existing NPD projects?

  • HT201210 My partner updated iphone 5, and it now shows 'Connect to iTunes'. Then we get 'iTunes could not contact iPhone software update server because you are not connected to the internet'. Please help.

    iPhone 5 was updated (version unknown), and now screen shows 'Connect to iTunes.  When we try to do this, we get message 'iTunes could not contact the iPhone software update server because you are not connected to the internet'. 
    Please tell me how I fix this problem.
    Thanks

    Yes, the reason you are getting the error is the phone cannot provide internet for the laptop and then update itself. It would lose connection as you erase the firmware and try to update. You need to connect the computer to the Internet in some other fashion before you connect the phone to try and fix the update problem. As Ocean20 says, and I completely agree, how would you think you could use the Internet connection of a device that is not only going to turn off and on, but is going to get completely wiped of firmware and restored? It would completely remove the device from the equation here. Does that make sense to you?

  • TS2978 I have pictures that will not show until I select them. They show a blank square before selection.

    I have pictures that will not show until I select them. They show a blank square before selection. Can anyone advise me how to fix it?

    Open View Options for the folder in which the picture resides; the Desktop counts as a folder for this purpose.
    In the View Options window, checkmark the item "Show icon preview".
    Note that this setting is not global; it affects only the folder for which it is set.

  • HT1338 Final Cut Pro will not update after new os and compressor will not run until the update is done. System shows no updates available

    Final Cut Pro will not update after new os and compressor will not run until the update is done. System shows no updates available

    Sorry for being unclear.
    When I am using the update in the App Store App, there will be a list of various applications that have updates to be installed (Final Cut Pro will be in this list).  I will already be logged in with the Apple ID I use for everything (my dev account).  I will be able to update all of the other various applications needing updating except for my Final Cut Pro.  When I click the update button next to the FCP update, it will give me an error saying  "This download is not available for this apple ID either because it was bought by a different user or the item was refunded or cancelled"
    I have not had any applications refunded or cancelled and this has only happened since my update to Yosemite.  FCP was working fine until the upgrade.  Is there anything that can be done to fix this?

  • Mac OS X Server v10.7 does not show the ethernet link aggregated interface I created in Server Hardware Network Dialogue window. Are link aggregated ethernet connections not supported in Lion Server?

    Mac OS X Server v10.7 does not show the ethernet link aggregated interface i created. Does Lion server support ethernet link aggregated interfaces?

    Thanks for responding Cold--
    Hardware: Mac Pro  3.0 GHZ quad core xeon
    I read the link but it still does not explain why the aggregated dual ethernet interface does not show up in the Network tab of the hardware section Lion Server. I was able to see it on the network and looks to be using a single static IP that I assigned. My concern was that is this supported and will it allow for failover and double performance of the single network interface.
    Any thoughts?
    Thanks again!

  • Preloader Not Loading Until The Start of Lesson In Captivate 7

    I created a Scorm 2004 compliant lesson using Captivate 7. The file size is ~7MB. When I load and run the lesson on our LMS I don't see the preloader until 3-4 seconds before the file loads. I'm staring at a blank screen for about 45 seconds before anything happens. I have the preloader set at 10% but I can't get it to work.
    I loaded the file to one of our FTP sites and ran it on an html page and it does the same thing.
    Our customers are asking us why there is no indication that the lesson is loading and all I can say is it's a problem with Captivate 7.
    I upgraded to 7 because I was told the problem was fixed, but it's still bad.
    Any help is appreciated.
    Thanks

    Yes, it's set to look in the Cp7 preloader folder. I found this on a Captivate website and I think it answers the question.
    "As mentioned, preloaders are only really applicable for HTM/SWF output. But what you may not realize is that they will only work if the content is served from a web server over HTTP. Conversely, the preloaders will NOT work if the same content is served up from a LAN server drive over TCP/IP.  This is due to the fact that SWF preloaders need to communicate with the server to calculate and show the percentage of file currently loaded.  This communication works with web servers, but not with LAN servers."
    Unfortunately, Cp7 preloader is going to work on our LMS. I'm going to build a preloader class in Flash and call the Cp7 swf using that.
    Thanks for your help
    Date: Sat, 18 Jan 2014 00:34:37 -0800
    From: [email protected]
    To: [email protected]
    Subject: Preloader Not Loading Until The Start of Lesson In Captivate 7
        Re: Preloader Not Loading Until The Start of Lesson In Captivate 7
        created by RodWard in Adobe Captivate - View the full discussion
    If you still have Captivate 6 on your PC, then make sure that the preloader in this Cp7 project is not pointing at a folder in the Cp6 install directory.  It should be using a Cp7 preloader.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/6026026#6026026
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/6026026#6026026
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/6026026#6026026. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Adobe Captivate at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/thread/416458?tstart=0.

Maybe you are looking for