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 |

Similar Messages

  • User search from "Find Someone" in Lync 2013 client does not show contact availability

    Running Lync 2013 Client / Server, when a user searches in the "find someone" field, contact names are returned, but the contact's presence status shows "Updating..." and never populates with the users presence.  If you then select
    a name from the search and open an IM session with them, the presence data is there and is accurate.  I think this feature used to work fine.  

    Hi,
    Did the issue happen only for you or for multiple users?
    Please enter the sip address instead of the name of the user in the “find someone” field to test the issue.
    Please also run Update-CsUserDatabase on FE server then remove Lync client profile to test the issue.
    User profile path: <user profile>\AppData\Local\Microsoft\Office\15.0\Lync\
    Best Regards,
    Eason Huang
    Eason Huang
    TechNet Community Support

  • REPOST:Timing does not show up when using custom templates

    all,
    When I create an unstructured template and use it in a report with show timing set to true, the timing does not show up.
    any tips

    Correcting my previous reply,
    Timing will NOT show if you are using custom template.
    null

  • When Syncing my ipad, it does not show the business PO Box field from outlook which is the first line of the address

    Hi, I was wondering if someone out there could help me.
    I am trying to syncronise my outlook address book with my Ipad.
    The actual sync does work but it is missing the field Business Address PO Box, and this is where the first part of the address is stored, so when I try to look up an address on my ipad part of it is missing.
    However if I send the contact by email to my ipad as a internet format vCard it will import the whole address. However as I have 400+ contacts I really don't want to have to do it manually.
    Many thanks for any advice given.

    terminology is the issue here.
    Whilst AOL have refered to these additional email accounts as identities basically forever, they are not identities, they are email accounts. So simply add it to Thunderbird as an existing email account (File menu ) New> existing mail account

  • Zip data posted from client does not show up correctely at Server

    The java client post GZip'd data to the Webserver. The webserver for some reason shows the first 10 bytes correctly. Not sure what I am overlooking
    Also get java.io.EOFException: Unexpected end of ZLIB input stream
    public class GetPost {
         public String line;
         public String inputLine;
    public static void main(String[] args) throws Exception {
              GetPost r = new GetPost();
                   r.postURL("User","pass");
    // public Reverse { }
    public static byte [] zip(String data)
    throws IOException
    byte[] incomingBytes = data.getBytes();
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    GZIPOutputStream zip = new GZIPOutputStream(baos);
    for (int i = 0; i < incomingBytes.length; i++)
    zip.write(incomingBytes[i] & 0xFF);
    zip.close();
    byte[] uncompressedBytes = baos.toByteArray();
    return uncompressedBytes;
    public static String unzip(byte [] dataBytes)
    throws IOException
    ByteArrayOutputStream baos = new ByteArrayOutputStream();
    ByteArrayInputStream bios = new ByteArrayInputStream(dataBytes);
    GZIPInputStream unzip = new GZIPInputStream(bios);
    int in = unzip.read();
    while (in != -1)
    baos.write(in);
    in = unzip.read();
    unzip.close();
    return new String(baos.toByteArray());
    public String postURL( String t1 , String t2 ){
    try {
              String data1="h";
    URL urlpost = new URL("http://192.168.15.4:8080/result.html");
         URLConnection conn = urlpost.openConnection();
         conn.setDoOutput(true);
         GZIPOutputStream gz = new GZIPOutputStream(conn.getOutputStream());
         byte [] kkkk=zip(data1);
         String uuu=unzip(kkkk);
         System.out.println("XXXXX" + uuu );
         for (int i=0; i< kkkk.length ; i++){
              Byte jj= new Byte(kkkk);
              System.out.println("LLLL " + " " + i + " " + jj );
         int t= kkkk.length;
         System.out.println("IIII" + t);
         int x= data1.getBytes().length;
         gz.write(kkkk);
         gz.finish();
         gz.close();
         // Get the response
         BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
         while ((line = rd.readLine()) != null) {
         // Process line...
         System.out.println ("The line is " + line );
         } catch (Exception e) {
              return line;
    The client output is
    LLLL 0 31
    LLLL 1 -117
    LLLL 2 8
    LLLL 3 0
    LLLL 4 0
    LLLL 5 0
    LLLL 6 0
    LLLL 7 0
    LLLL 8 0
    LLLL 9 0
    LLLL 10 -53
    LLLL 11 0
    LLLL 12 0
    LLLL 13 -25
    LLLL 14 6
    LLLL 15 107
    LLLL 16 -111
    LLLL 17 1
    LLLL 18 0
    LLLL 19 0
    LLLL 20 0
    Server output is correct only for the first 10 bytes
    LLLL 0 31
    LLLL 1 -117
    LLLL 2 8
    LLLL 3 0
    LLLL 4 0
    LLLL 5 0
    LLLL 6 0
    LLLL 7 0
    LLLL 8 0
    LLLL 9 0
    LLLL 10 -53
    LLLL 11 0
    LLLL 12 0
    LLLL 13 -25
    LLLL 14 6
    LLLL 15 107
    LLLL 16 -111
    LLLL 17 1
    LLLL 18 0
    LLLL 19 0
    LLLL 20 0

    FYI - I got it to work ... I was gzip it twice... here is what worked
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.ByteArrayOutputStream;
    import java.io.IOException;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.URL;
    import java.net.URLConnection;
    import java.net.URLEncoder;
    import java.util.zip.*;
    import java.io.OutputStreamWriter;
    public class WorkingCopyOfGetPost {
         public String line;
         public String inputLine;
    public static void main(String[] args) throws Exception {
              WorkingCopyOfGetPost r = new WorkingCopyOfGetPost();
                   r.postURL("User","pass");
    // public Reverse { }
    public static byte [] zip(String data) throws IOException {
         byte[] incomingBytes = data.getBytes();
         ByteArrayOutputStream baos = new ByteArrayOutputStream();
         GZIPOutputStream zip = new GZIPOutputStream(baos);
         for (int i = 0; i < incomingBytes.length; i++){
              zip.write(incomingBytes[i] & 0xFF);
         zip.close();
         byte[] uncompressedBytes = baos.toByteArray();
         return uncompressedBytes;
    public static String unzip(byte [] dataBytes) throws IOException {
         ByteArrayOutputStream baos = new ByteArrayOutputStream();
         ByteArrayInputStream bios = new ByteArrayInputStream(dataBytes);
         GZIPInputStream unzip = new GZIPInputStream(bios);
         int in = unzip.read();
         while (in != -1){
              baos.write(in);
              in = unzip.read();
         unzip.close();
         return new String(baos.toByteArray());
    public static ByteArrayOutputStream zip1(String data) throws IOException {
              byte[] incomingBytes = data.getBytes();
              ByteArrayOutputStream baos = new ByteArrayOutputStream();
              GZIPOutputStream zip = new GZIPOutputStream(baos);
              for (int i = 0; i < incomingBytes.length; i++){
                   zip.write(incomingBytes[i] & 0xFF);
              zip.close();
              //byte[] uncompressedBytes = baos.toByteArray();
              return baos;
    public String postURL( String t1 , String t2 ){
         String data1="t";
         try {
              /* byte [] kkkk=zip(data1);
              for (int x=0;x<20;x++){
                   System.out.println("Byte Array Values " + x + kkkk[x] );
              ByteArrayOutputStream bo= zip1(data1);
              byte [] AAA=bo.toByteArray();
              for (int x=0;x<21;x++){
                   System.out.println("Byte Array Values " + x + " "+ AAA[x] );
              URL urlpost = new URL("http://192.168.15.4:8080/result.html");
         URLConnection conn = urlpost.openConnection();
         conn.setDoOutput(true);
         System.out.println( "The size of the byteArrayOutputstream " + bo.size() );
         bo.writeTo(conn.getOutputStream());
         // GZIPOutputStream gz = new GZIPOutputStream(conn.getOutputStream());
         // System.out.println("rrrr " + kkkk.length);
         // gz.write(kkkk);
         //gz.finish();
         //gz.flush();
         bo.flush();
         // String s=unzip(kkkk) ;
         //System.out.println("s " + s);
         // Get the response
         BufferedReader rd = new BufferedReader(new InputStreamReader(conn.getInputStream()));
         while ((line = rd.readLine()) != null) {
         // Process line...
         System.out.println ("The line is " + line );
         rd.close();
         bo.close();
         } catch (Exception e) {
              return line;
    }

  • My SCCM Client does not show all the tabs in the Config manager control pannel

    Hi All,
    I have a issue Post pushing a installation on a client. It was installed successfully. But i do not get all the options in the control panel as per the below screenshot.
    I reinstalled the client via push from the console during the re installation i got the below errors as per the below screenshot.
    Can any one tell me why is this issue happening.
    I get all the options in my SCCM DP / Site server control panel but not in the client.
    I got the DP role re installed, As well as well as checked the DNS. Iam able to ping from my client machine to the Site server / DP via ip as well as FQDN.
    Can any one please help?
    Gautam.75801

    Got the solution.
    1. Reconfigure the boundary and boundary groups and rebooted the SCCM DP / Site server.
    2. Turn firewall off in the client and uninstall the SCCM setup in the client and Rebooted the client and re install the client via push method from console
    3. Turned off the UAC in the client machine.
    Now i am able to get all the tabs s well as Console shows the server as a client.
    Gautam.75801

  • Adding New Fields to a BEx Query does not show up in the CR field explorer

    This could be a silly question.
    I have a CR report based on a BEx query.  I had to add a couple of new fields to the BEx query, and when i want to add those fields to the CR report, I don't see them even after I do a refresh in the field explorer. 
    How do i see this new fields in the CR report?
    Help Please
    Thanks

    Hi,
    you can open the report and go to the menu Database > Verify Database.
    that should add the new fields to the list of fields in CR
    Ingo

  • Premiere 2014 queue, project does not show up in media encoder

    When I queue a sequence in premiere 2014 and media encoder 2014 launches the sequence does not show up in the queue. I can do the same process in cc and it works.

    In AME, please try disabling the option on the General tab in Preferences named "Import Sequences Natively." Then close and relaunch AME and double-check prefs to make sure the option remained disabled (we've had a few reports of cases where the setting reverted to Enabled). Now try queuing a job from PPro.
    Also, please try dragging the sequence from Premiere's Project panel to AME's Queue, or to a preset in the Preset Browser.
    What export format is selected? If you switch to another format, does the job get queued?

  • Why did ps touch does not show saved project and my old project disappear?

    Why did ps touch (ipad 4) does not show saved project and my old project disappear?

    OldGhias,
    Have you found a solution yet? I don’t know if I will be of any help but I was curious and no one else has chimed in yet.
    I don’t quite understand all of your statement.
    To clarify, you were making SimpleSave backups from Win95 and cannot see them all on the Win7 laptop?
    Or
    You were copying files over (SimpleSave utility not used) and you cannot see those files on Win7 but you can on the Win95 machine?
    Do you have another Win7 machine you could connect the external to, to see if the files are still not showing (one that is not locked for work)?
    On the drive that shows full, can you see it in Disk Management showing the correct size of the drive and also another CD drive? Not your real CD/DVD drive, it’s actually a CD emulator that is attached to the HDD for encrypting the backups and all SimpleSave’s have them.
    Lastly, did you reformat the SimpleSave drive to Fat32 first?
    My understanding is that USB support was quite limited on Win95 machines. Since Win95 is Fat32 and the SimpleSave drive is by default NTFS, I would think it would not work.

  • My doc does not show on full screen, how to project it to full screen?

    The Word document which I want to amend does not show on full screen, how to get the doc to full screen?

    Doc shows Thumb and prints ok, but I jsut cannot see it in full, it is locke in the left hand corner.

  • The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 1 (2013-04-30T16:36:52). Exception Message: Cannot send mails to mail server. (Mailbox unavailable. The server response was: 5.7.1 Client does not

    Interesting db mail issue. If i click send test mail from sql mgmt studio, it works fine, but when i execute a SP to send a mail, it fails. One thing I noticed is that the "LastModified" column in the mail log shows the domain account when a test
    mail was sent from mgmt studio, but show "sa" when the SP was used to send mail. 
    This is from SQL 2012, did not see this in sql 2008, looks like 2008 always used the service account.  any ideas ?
    Get this error:
    The mail could not be sent to the recipients because of the mail server failure. (Sending Mail using Account 1 (2013-04-30T16:36:52). Exception Message: Cannot send mails to mail server. (Mailbox unavailable. The server response was: 5.7.1 Client does not
    Thanks.
    Ranga

    Hi Ranga,
    I also use SQL Server 2012. I send a test email through SQL Server Management and the last modified By “sa”.
    If you used stored procedure to send a test email. Please use the command below:
    EXEC msdb.dbo.sp_send_dbmail
    @profile_name = 'Adventure Works Administrator',
    @recipients = '[email protected]',
    @body = 'The stored procedure finished successfully.',
    @subject = 'Automated Success Message' ;
    I can both send test email through SQL Server Management Studio and SP. Make sure you have the right profile. Since you could send test mail via SQL Server Management Studio, please try again to send it via SP.
    Thanks.
    If you have any feedback on our support, please click
    here.
    Maggie Luo
    TechNet Community Support

  • Application Insights Online does not show data. How to find out where the problem is?

    Hi, 
    I have application insight set up, sometimes I see data online, but sometimes I don't. I am wondering how to: 
    1. Make sure the monitor is running for my application?
    2. see there is data has been sent to cloud server? I tried to run DebugView but it does not show up anything. Is there a log flag that can be turned on so I can log everything to a log file while it is being sent to server?
    Thanks.

    Hello ChadKaKit,
    You can try Fiddler2 to see whether something gets out of the box to dc.services.visualstudio.com.
    Make sure to either run application under the same account as a Fiddler or set a .NET proxy settings in web.config (app.Config for executables) to redirect to Fiddler.
    Also, you can take a look at the AI traces with PerfView:
    Perfview.exe /onlyProviders=*Microsoft-ApplicationInsights-Extensibility-Web,*Microsoft-ApplicationInsights-Core,*Microsoft-ApplicationInsights-Extensibility-RuntimeTelemetry,*Microsoft-ApplicationInsights-Extensibility-Rtia-SharedCore collect

  • MacBook Pro late 2013 does not show login window after waking from sleep

    MacBook Pro late 2013 does not always prompt for login, but opens directly to desktop, even though security settings are setup to prompt for password after 5 minutes. Up to now, this only has happened on battery, machine goes to sleep or lid is closed, 10 minutes pass, lid is opened and desktop is shown instead of lock screen. Console shows, that the machine was actually sleeping (10 min no log entries) and also does not show any error in regards to login window.
    This behaviour occurs randomly and I could not track down any root cause/behaviour, yet. Sometimes everything behaves as it should.
    Any ideas?
    Thanks
    marcus

    Count me in, I have the same issue, and from what I read here, it looks like a Yosemite/SSD related issue ?
    I'm not 100% sure if it started when I put a SSD in my old iMac 2009 (as a fusion drive) or if that's after that when I upgraded to Yosemite...
    I did disable auto poweroff like suggested in another thread : Mac freeze during the night sleep.
    sudo pmset -a autopoweroff 0
    We'll see if it helps.
    It happens toughly a couple of times a week.

  • Installing SharePoint 2013 Workflow Manager offline - Wizard does not show up

    
    Hello guys,I recently tried to install the workflowmanager to the Application Server of my SharePoint 2013 Farm.I used the following commandline as suggested by spence harbar (in his article).SERVER -D:\SP\WorkflowManager\bin>WebpiCmd.exe /Install /Products:WorkflowManager /XML:D:\SP\WorkflowManager\feeds\latest\w
    ebproductlist.xml
    The wizard does not show up, instead of that, I got an message in my Commandbox:
    The software that you obtain using the Web Platform Installer Command Line Tool is licensed to you by its owner. Microsoft g
    rants you no rights for third party software.
    Successfully loaded primary feed: file:///D:/SP/WorkflowManager/feeds/latest/webproductlist.xml
    The following products are not available on this machine or already installed: WorkflowManager
    No products to be installed (either not available or already installed)
    Can anybody tell me what to do in this situation. I can´t uninstall the software because there is none.
    I need help with this! There is no information in the community about this problem :/
    Greetings Andre

    Hi,
    First of all that blog is old and now you should install Workflow Manager Refresh 1.0. To start fresh, uninstall all components of WF Manager from the server and then follow below mentioned steps.
    Download Microsoft Web Platform Installer 5.0 on a machine where Internet is there.
    Once Installed, go this path in command prompt C:\Program Files\Microsoft\Web Platform Installer and then use this command WebpiCmd.exe /offline /Products:WorkflowManagerRefresh /Path:C:\temp
    Copy the temp folder to the WF Manager machine where you wish to install the WF Manager
    In destination server, use command prompt with elevated privileges and navigate to the temp/bin directory (in copied folder).
    Use this command WebpiCmd.exe /Install /Products:ServiceBus_1_1 /XML:C:\temp\feeds\latest\webproductlist.xml
    Then run this command WebpiCmd.exe /Install /Products:WorkflowClient /XML:C:\temp\feeds\latest\webproductlist.xml
    Then run this command WebpiCmd.exe /Install /Products:WorkflowManagerRefresh /XML:C:\temp\feeds\latest\webproductlist.xml
    -Prashant

  • TS4002 Once I send my email on icloud, it does not show up on my mail client or on icloud.  How can I retrieve an email sent this way?

    Once I send my email on icloud, it does not show up on my mail client or on icloud.  How can I retrieve an email sent this way?

    SADLY  not as i downloaded an upgrad to my original PAGES/
    i have in the meantim had to open www.icloud. then from there import the file that i am working on and then check on ipad if it uploaded/ yes it did.
    but what a waste of time as it doesn not save any changes done automatically back in the cloud....
    i am now downloading the new LION and hope that it will fix the problem
    i cant find any other way. I was lead to believe that you wrote, it saved automatically, on to the cloud, you then opened anohter device in anotother country even, and the new file was there, waiting, in its latest version.......
    and the same magic was supposed to happen in reverse.
    It doesn't/
    if i have to open a browser, go to www.icloud....why on earth did they not just leave us an icon to drop it in in that case?
    I hope the new lion will help resolve the isssue/
    any other ideas> keep em coming...thank you so much.

Maybe you are looking for