Missing values of Enterprise Custom Field in Project Professional and Project Web Access

Hi all,
In Project Server 2010 SP2 we created a custom field called Iteration Path (without a lookup table).
We're in an environment where Project Server task data gets synched from TFS and we've mapped the Iteration Path from TFS to the Enterprise Custom Field in Project Server.
We've triggered synch of all synchronized work items from TFS to Project Server
Then, in the database we can see the Iteration Path values coming across
When I open these projects in Project Profssional, the entire column of Iteration Path is empty.
When I open these projects in Project Web App (from Project Center), the entire column of Iteration Path is empty.
When I open the master project which contains all these projects, no values are shown.
Any ideas what can be wrong?
I did already clear my cache, global.mpt, but nothing changed. We don't have this issue with other Enterprise Custom Fields that are mapped to TFS fields.
Cheers,
Bram
www.projectexpert.nu

Hi Bram,
In the 4th item, when you say "database", which one are you talking about? Project Server DB? Draft or reporting DB? 
If the value are not showing up in Project Pro, it is no need to clean your cache, since the value are obviously not stored in the Project Server Draft DB. The issue is more likely to come from the TFS sync for this particular field. Do you have any logs
for the sync process? If your field in anyway different from the others, containing specific characters?
Hope this helps.
Guillaume Rouyre - MBA, MCP, MCTS

Similar Messages

  • Validation of Enterprise Customer Fields in Project Creation Page

    I want to do the validation on the Enterprise Custom Fields of PWA site for Project center. A set of custom fields have been added on the Project Creation Page.
    Custom Business Validation (such as a field value should be unique or based on another field) is required for some custom fields. This validation is required on clicking Save button in Project Creation Page of Ms Project Server 2010. The validation ought
    to be done on clicking "Save" button.
    Any help in this regard would be apppreciated.

    The link mentioned by you ToonS is not acessible.
    Here is the link:
    http://msdn.microsoft.com/en-us/library/office/gg615466(v=office.14).aspx
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • How to use formula in enterprise custom field "Work" or "Cost"

    Hi there,I am using MS Project 2010 and I am looking for a way to customize enterprise
    custom field such as "Work" and "Cost" field where I was to use a formula (eg: Number1+Number2).
    I came to know I need to use VBA to perform that task.Could anyone please suggest if there
    is any way I could do that.I will really really appreciate your advice.Thanks in advance.

    robeenclarke,
    On the surface it might appear that it would be easy to look at the Start and/or Finish fields of a manual task and see that it is blank, but in reality it isn't so easy. The blank field you see is a view presentation only. Internally Project does in fact
    have a default date in those "blank" fields and that's the date you see when you query the date using VBA. If the Start field of a manual task is blank, then internally both the start and finish dates of that task take on the Project Start Date.
    If the Start field of a manual task has a date but the Finish field is blank, then internally the finish date is the same as the start date. And to make it even more interesting, the internal finish date of a manual task will track with the duration and/or
    the Work field.
    So the bottom line of this is, "what you see is NOT what you get". Certainly some assumptions could be made based on the above and those assumptions could be integrated into a macro to populate the "blank" Finish field but I wouldn't
    say it would be foolproof. If you have some very defined characteristics for those tasks with a blank finish date (i.e. also no start date, and/or no duration, and/or no work), and those characteristics are consistent throughout your whole file, then a simple
    macro could be developed.
    With respect to the "If Not t is Nothing Then" statement. The purpose of that statement is to avoid a runtime error is the file has blank task lines. Some users like to visually separate parts of their plan by inserting blank task lines between
    major sections, so a good practice when writing Project macros is to always include that statement in the loop.
    Update: However, after writing all the above verbiage, I believe I may have a workaround. As it turns out, even though you can't directly query the Start and/or Finish field of a manual task, you can transfer that blank string to a text field and then query
    that text field, so you can get there from here with an extra step.
    Try this process. First customize the Text3 field with the following formula:
    Text3 = [finish]
    Now run this macro:
    Sub SetFinishDate()
    Dim t As Task
    For Each t In ActiveProject.Tasks
        If Not t Is Nothing Then
            If t.Summary = False And t.Manual = True And t.Text3 = "" Then
            t.Finish = t.Date1
            End If
        End If
    Next t
    End Sub
    John

  • Content Search web part - Display Project Enterprise Custom Fields and Lookup Tables

    My ultimate goal is to display a rollup table of our active projects (from PWA) on another site collection using the content search web part. I can return default properties (such as the project name, author and URL) fairly easily using the same basic steps
    in the link below.
    http://en.share-gate.com/blog/roll-up-sharepoint-2013-sites-using-search
    My problem is that I want to also display information associated with each project from our PWA enterprise custom fields (such as risk, phase, etc.)
    Because these custom fields do not appear to be site columns, I'm at a bit of a loss as to how this data is searched / indexed / mapped.
    Is it possible to display PWA enterprise custom fields in a content search web part?

    Hi Jennifer,
    According to your description, my understanding is that you want to display PWA enterprise custom fields in a Content Search web part in SharePoint 2013.
    As your active projects were from different site collection with the Content Search web part, you need to do a crawl for the content source, then create a managed property for the column in CA->Search Service Application->Search Schema. When you create
    the managed property, select Searchable, Queryable, Retrievable.  Then  map it to the crawled property based on the custom column. You can find the crawled property by searching the name of the column in crawled properties.
    More information, please refer to the link:
    http://technet.microsoft.com/en-us/library/jj219667(v=office.15).aspx
    I hope this helps.
    Thanks,
    Wendy
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected]
    Wendy Li
    TechNet Community Support

  • Project 2013 client does not show Project Online Enterprise Custom Fields

    I have about 20 task level custom fields in my Project Online instance. When I open a project and edit a task using Project 2013 client, only a handful appear in the Custom Fields panel.
    Question:
    How do I expose all Enterprise Custom Fields to the Task Information - Custom Fields panel in Project 2013 client?

    Quite a strange issue...
    It could be interesting to test from another machine with another user profile. Have all the fields been created from PWA/server settings? Can you try to create a brand new field from there and test again?
    Then also try to find out what is the specificity of the "end use" custom field which is displayed in the task information dialog box. Basically if 1 is working then the others should also work.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • How do I read the enterprise custom fields in C#?

    Hello,
    At the moment I am stuck trying to read out an enterprise custom field in an office Addin for Project.
    I know I can read out the custom fields for tasks like this and I am also able to get the project name.
    app = this.Application;
    //Custom field of a task
    wbs = app.ActiveCell.Task.Text1;
    //Project name
    projectName = app.ActiveProject.Name;
    But I don't know how I can read an enterprise custom field. 
    I am trying to get the red marked field from the screenshot
    Thx for your help in advance 

    Hi Pascal,
    Following code snippet should help you out:
    MSProject.PjField customField = app.FieldNameToFieldConstant("SAP Project Code");
    app.ActiveProject.ProjectSummaryTask.GetField(customField);
    Hope this helps

  • How to set a default date for a custom field of Date type in project server 2010.

    hi,
    can somebody help  me.
    How Can i set the default date for a custom field of date type in project server 2010 ?

    Dear Rohan,
    You can set default value to custom field thru Lookup table. Assign lookup table to custom field and set default value to some lookup value (Note: check the “Choose a value to use as a default when adding new item” checkbox).
    Regards,
    Avinash kumar | Blog:http://avigr8.wordpress.com | If you found this post helpful, please “Vote as Helpful”. If it answered your question, please “Mark as Answer”.

  • Rename enterprise custom fields

    I use Project online 2013.
    I'd like to rename the enterprise custom fields "Project Category" and "Project Sub Category" to something shorter. The reason is that I group my projects by Project Department, Project Category and Project Sub Category and the names
    are too long.
    Any suggestions?

    Hi,
    There is no issue in renaming an enterprise custom field since it will keep its GUID. Just go to the server settings, enterprise custom fields, select the field to edit it and rename it.
    The limitation I can see is if you have reports with SQL queries which point to the field name and not GUID. In this case you'll need to adjust your SQL queries.
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • How to install Project Online and Project Pro for Office 365

    Hello,
    Can someone please explain where can I find reliable and exploitable step by step process to install
    Project Online and Project Pro for Office 365. I tried for several weeks with no avail.
    All the links I followed led to
    an impasse.
    Thanks for your help

    WLID1966,
    I am not sure if there is a step by step process detailed anywhere, but that possible because it is fairly easy to get started. The steps below may vary sligtly because I am using a preview version..
    1) you would sign up for Project Pro for Office 365 from this link (or pursue through your organization) : http://office.microsoft.com/en-us/project/enterprise-project-and-portfolio-management-subscription-project-online-with-project-pro-for-office-365-FX104002972.aspx
    2) Once you are setup with Office 365 account and project online, you would go into the settings as shown below
    3) Once you click on software, you should see the below, and then click Install to install Project Pro.
    Prasanna Adavi,PMP,MCTS,MCITP,MCT http://thinkepm.blogspot.com

  • Where to maintain project manager and Project details.

    Hi Guys,
                 Whats the transaction or table to maintain project manager and project details.
    Cheers
    S Kumar

    T Code OPS6 (table TCJ04). You maintain person responsible over here and then these values can be referred in project definition or WBS element.
    Regards
    Sreenivas

  • Project Online and Project Lite Licenses Transferable?

    I was wondering how the user licenses are handled when deactivating and reallocating.   Are user licenses transferable for Project Online, Project Lite, and Project for O365? 

    Teddy,
    It depends on how you are defining "Transferrability". As a bottom line, the number of "Active" users at any time, cannot be more than your licenses. And the license for each product are its own.
    I am no licensing expert, and I suggest you talk to a Microsoft Rep for a concrete statement on the licenses.
    Cheers,
    Prasanna Adavi, Project MVP
    Blog:
      Podcast:
       Twitter:   
    LinkedIn:
      

  • Validation for Project defination and project profile

    Hello,
    I have to create validation for Project Definition and Project Profile.User requirement is when the project (Exp: Z/0120) is creating with project profile Exp: Z0001_Z system should allow , If user is trying to select other than this profile system has to give the error.
    I tried below validation but it is not working:
    Prerequisite - PROJ-PSPID = 'Z'
    Check   -  PROJ-PROFL = Z0001_Z
    Kindly any suggest how can i give the validation for the same.
    Regards,
    Lakshmi.
    Message was edited by: Mohamed Rafi - Many threads available on this topic search for those.

    Hi,
    Have you tried to save the project? Because validation rule will call at time of saving the Project.
    I have created the same but for start with 'U'
    When I create project and at time of saving, validation rule will call and system throw error if I don't create project start with 'U'.
    Now If I am creating here, start with 'J'. System  is throwing error as per validation rule.
    Also Pl check if you have assigned same correct rule on project profile.
    Regards
    Shishir

  • I in need of oracle project costing,project billing and project management setup documents? can you please help me.

    I am in need of project costing and project billing and project management setup documents with screen shoot? Can anyone help me?

    I have no clue about recovering the info, but when you say you save you should always use Save As. That clears unneeded info from the file. With the file size you have, that may be an important need.

  • Standard reports - Project Costing and Project Billing

    Does anyone have a document they can share that lists the standard reprorts in Project Costing and Project Billing along with descrptions.
    Thank you!

    Hi,
    Refer Project Fundamandals user Guide Page 459 : http://download.oracle.com/docs/cd/B53825_08/current/acrobat/121pjfug.pdf
    Thanks
    Govind

  • APIs for Project Events and Project Invoices

    Hi All,
    Can anyone tell me the APIs for creating project events and project invoices.
    any help will be greatly appreciated.
    Thanks
    gt1227

    Hi
    go through the below link, all API for projects API's are listed
    http://docs.oracle.com/cd/B12190_11/current/acrobat/115pjapi.pdf
    Thanks
    Krishna

Maybe you are looking for

  • Company Code and Tax company

    Hi Experts,              Help me to define what's the difference between the company code and a tax company. Do we have any integration between company code and tax company. I have a scenario with a client where they have only one company code and as

  • Mask not working on loaded jpg

    Hi, I have a blank movie called "shell" on a frame, which is where I load the jpg. - shell.loadMovie("1.jpg"); Above that the frame that contains the shell movie, I have a mask layer. Once the jpg is loaded, I have a shape animation on the mask layer

  • Text track russian (utf-8) problems in windows

    Hi, I am working with QT Pro on a Windows 7 PC and need to create several subtitled versions of a Movie. For european languages everything went fine, but i have problems with Russian, Polish and Turkish. When i open my utf-8 encoded *.txt file with Q

  • Help me  with crazy issues with Finder please- I am baffled!

    I own a G5 1.8 with 2 externals and 100G of space on the harddrive running 10.3.9. My problem is bizzare- Firstly the Finder would do all its normal stuff except when I tried to empty the contents of the trash the spinning beach ball came up and I ha

  • FaceTime Network Connection Error

    I have a brand new Macbook Pro and I keep trying to sign in to my facetime but everytime i click the sign in button my computer loads for a second then comes back to the same screen with an error message that says "Could not sign in. Please check you