Project Serial Number column in Project Server 2013 (PWA)

Hi All,
Whenever any new projects are created on Project Server 2013, they are arranged automatically by Alphabetical order. So i would like to know or need support through which i can create serial number column in Project Center so that projects are aligned. as
per numbers.
Kindly help..

Hi,
It is actually 2 questions. 
First you want to create a unique ID for projects? Here is an excellent
blog about this subject.
Then you want to sort projects along a number? It could be a custom number field or the unique ID above. You just have to go to the server settings, manage views and go to the "sort by" section and select your number field.
Note that the field used to sort the project center view must be in the view to be used as a sorting criteria.
Hope this helps,
Guillaume Rouyre, MBA, MVP, P-Seller |

Similar Messages

  • Task column not editable in Project Server 2013 (PWA)

    Hello,
    is that possible that Project's task column which are published on PWA cant be editable for any Project Manager, Team members?
    We have  a scenario where my management team wants that after creating project from MS Project Professional 2013 (where we have provided standard template for projects to chose from ) needs to published on PWA. After publishing it, no one can't modify
    task name in Projects but can add task if required.
    Is it possible??

    For the field:
    Go to server settings, enterprise custom fields and lookup table,
    Click on Create
    Select task type, then formula,
    Click on the field selector button and pickup the [task name] field under the text group,
    Save.
    For the view:
    Go to the server settings, then manage views,
    Select the view in question under "project" (for example tasks details)
    In the field section, select your new field from the left side and add it to the right side,
    Select the default task name field from the right side and remove it (it'll go to the left side),
    Validate.
    To validate:
    Go to the project center and open your project,
    Navigate to the schedule PDP and select your view tasks details)
    Click on "edit" to open the project schedule,
    Publish the project plan and check that your field is there and cannot be edited.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Trying to activate serial number after entering redemption code and continues to say invalid serial number. Installing on Server 2012 R2 for client using RDS. HELP.....

    trying to activate serial number after entering redemption code and continues to say invalid serial number. Installing on Server 2012 R2 for client using RDS. HELP.....

    Thank you guys for the quick answer! Muche appreciated
    I've tried all suggested solutions, but no luck :-(
    - tried http://support.microsoft.com/kb/2765260 > no help and by the way the hotfix provided is not applicable for 2012 R2.
    also tried "C:\Windows\Microsoft.NET\Framework64\v4.0.30319\aspnet_regii -enable -i" and got this :
    Microsoft (R) ASP.NET RegIIS version 4.0.30319.33440Administration utility to install and uninstall ASP.NET on the local machine.Copyright (C) Microsoft Corporation.  All rights reserved.Start installing ASP.NET (4.0.30319.33440).This option is not supported on this version of the operating system.  Administrators should instead install/uninstall ASP.NET 4.5 with IIS8 using the "Turn Windows Features On/Off" dialog,  the Server Manager management tool, or the dism.exe command line tool.  For more details please see http://go.microsoft.com/fwlink/?LinkID=216771.Finished installing ASP.NET (4.0.30319.33440).
    http://social.technet.microsoft.com/wiki/contents/articles/14582.sharepoint-2013-install-prerequisites-offline-or-manually-on-windows-server-2012-a-comprehensive-guide.aspx
    > is not for 2012 R2.
    For the automated install script (http://gallery.technet.microsoft.com/office/DownloadInstall-SharePoint-e6df9eb8) Craig mentions that the script are not yet compatible
    "SharePoint 2013 SP1 and Windows Server 2012 R2 support coming soon
     I will be updating this script with support for SharePoint 2013 Service Pack 1 installations along with support for Windows Server 2012 R2 in the near future. Thank you to everyone for the interest in my scripts - it is much appreciated! "

  • Serial Number Column in BI Report

    Hi,
    Can we add 'Serial Number Column' in BI report?
    Regards,
    Anoop Sahu

    Thanks for your response.
    I am not sure if I was clear before. I actully want to add a new column which will give sequential number to rows - 1, 2, 3, 4.... If the user changes drill down, it should automaticlly repopulate as 1, 2, 3, 4. I do not have any infoobject called 'Serial Number' in my cube.
    Regards,
    Anoop Sahu

  • Project server 2013 - PWA: My Tasks page is not loading and disabled

    Hi
    i had an issue that suddenly occur for one of my users (just to him).
    My Tasks page is not loading, it shows "Loading" in the middle of the page and stuck that way, and also the Ribbon buttons are disabled.
    Anyone knows what could he had done to make this happen?
    The print screen is in Hebrew but i described what appears.
    Ofir Marco , MCTS P.Z. Projects

    Hi Ofir,
    I've had a similar issue in a previous version of Project Server. A corrupted assignment was causing this in my case. I found the corrupted assignment using the following procedure:
    Retrieve all published assignments & related projects for the user (in the database)
    Open each project one by one in MS Project & set the 'Publish' value to 'No' for the user's assignments and publish the project
    Everytime after publishing a project, retry to open the Tasks page
    At a certain moment your Tasks page should work again and you know now which project/assignment is causing the error, just replace the corrupted assignment by a new one and it should work again
    Hope this helps

  • Serial number column

    hi gurus,
                I need one more column for serial number how to include that in below codings, can someone help me,
    data : number type i.
    data : begin of wa_kna1,
      kunnr type kunnr,
      name1 type name1,
      end of wa_kna1,
       it_kna1 like table of wa_kna1.
      data : begin of wa_table,
      number type i,
      kunnr type kunnr,
      name1 type name1,
      end of wa_table,
      it_table like table of wa_table.
    select kunnr name1 into table it_kna1 from kna1 up to 12 rows.
    loop at it_kna1 into wa_kna1.
    number = number + 1.
    wa_table-kunnr = wa_kna1-kunnr.
    wa_table-name1 = wa_kna1-name1.
    *modify it_table from wa_table.
    append wa_table to it_table.
    clear : wa_table.
    endloop.
    loop at it_table into wa_table.
      write :
      / wa_table-kunnr,
       wa_table-name1,
       wa_table-number.
      endloop.
    Thanks and Regards,
    Thirukumaran. R

    Hi Thirukumaran,
    You can write the code in this way:
    DATA : BEGIN OF wa_kna1,
                  kunnr type kunnr,
                  name1 type name1,
               END OF wa_kna1,
               it_kna1 TYPE STANDARD TABLE OF wa_kna1.
    DATA : BEGIN OF wa_table,
                  number type i,
                  kunnr type kunnr,
                  name1 type name1,
                END OF wa_table,
                it_table TYPE STANDARD TABLE OF wa_table.
    DATA: Ser_Num Type I.
    START-OF-SELECTION.
      SELECT kunnr name1 into table it_kna1 from kna1 up to 12 rows.
      LOOP AT it_kna1 INTO wa_kna1.
         Ser_num = Ser_Num + 1.
         wa_table-number = ser_num.
         wa_table-kunnr    = wa_kna1-kunnr.
         wa_table-name1  = wa_kna1-name1.
         append wa_table to it_table.
      endloop.
      loop at it_table into wa_table.
        write :
             / wa_table-kunnr,
               wa_table-name1,
               wa_table-number.
      endloop.

  • Serial number column in Jtable

    Apologies for this distraction.
    I read at this forum about a year ago how to add a s/n column in Jtable such that all the nos are automatically updated/adjusted when a row is added/deleted. the count starts from the top down serially and unaffected by sorting.
    pls help!

    thanks a million BaltimoreJohn and especially camickr whose solutions to problems have been most helpful. applying the referenced post, i worked around the problem by resetting the values of the column having the serial number, based on table rowCount every time there is an operation on it(deleting, addition etc)

  • Serial Number Column in analysis - obiee 11g

    Hi,
    How can I create a colum for Serial Number based on the rows(It should give 1,2,3,4...n no of rows) which generated in the report. Do I need to create a logical column in Admin tool..? or need to do something else..?
    Thanks

    @Aravind.
    i did the same but if there is any filter apllied in the report because of it some records are getting filtered in that case s.no will not be (1,2,4,6,7,8) in serial how to overcome this scenario???
    Thanks In Advance

  • To add serial number column

    Dear Experts,
                        I herewith attachedc my  codings i waht to add serial number how to do that i have done something but it is giving all zero values.,.,.,
    *& Report  ZAPPRAISAL_LAG
    REPORT  ZAPPRAISAL.
    *Declaration of type-pools
    TYPE-POOLS SLIS.
    *Declaration of tables
    TABLES : PA0025, PA0001.
    DATA : LV_VALUE TYPE I.
    *Declaration of work area
    DATA: BEGIN OF WA_PA0025,
            PERNR TYPE PA0025-PERNR,
            ENDDA TYPE PA0025-ENDDA,
            BEGDA TYPE PA0025-BEGDA,
            AEDTM TYPE PA0025-AEDTM,
            BWNAM TYPE PA0025-BWNAM,
            DAT25 TYPE PA0025-DAT25,
            GRPNR TYPE PA0025-GRPNR,
            ENAME TYPE EMNAM,
            BUKRS TYPE PA0001-BUKRS,
            number type i,
          END OF WA_PA0025,
           WA_FCAT TYPE SLIS_T_FIELDCAT_ALV WITH HEADER LINE,
           wa_sort  TYPE SLIS_SORTINFO_ALV,
           WA_EVENTS TYPE SLIS_T_EVENT WITH HEADER LINE.
    DATA: row_number type i.
    *Declaration of internal tables
    DATA : IT_PA0025 LIKE TABLE OF WA_PA0025,
           IT_FCAT TYPE SLIS_T_FIELDCAT_ALV,
           I_SORT  TYPE STANDARD TABLE OF SLIS_SORTINFO_ALV,
           IT_EVENTS TYPE SLIS_T_EVENT.
    *selection screen
    SELECTION-SCREEN BEGIN OF BLOCK FF WITH FRAME TITLE TEXT-001.
    *SELECT-OPTIONS S_DATE FOR PA0025-DAT25.
    parameters : p_date type pa0025-dat25.
    parameters : p_date1 type pa0025-dat25.
    SELECT-OPTIONS S_BUKRS FOR PA0001-BUKRS NO INTERVALS.
    SELECTION-SCREEN END OF BLOCK FF.
    *ALV EVENTS
    WA_EVENTS-FORM    = 'HEADER'.
    WA_EVENTS-NAME    = 'TOP_OF_PAGE'.
    APPEND WA_EVENTS TO IT_EVENTS.
    CLEAR : WA_EVENTS.
    *start-of-selection event.
    START-OF-SELECTION.
      SELECT DISTINCT
            A~PERNR
            A~ENDDA
            A~BEGDA
            A~AEDTM
            A~BWNAM
            A~DAT25
            A~GRPNR
            B~ENAME
            B~BUKRS
            INTO TABLE IT_PA0025
            FROM PA0025 AS A
            INNER JOIN PA0001 AS B
            ON BPERNR = APERNR
            WHERE A~DAT25
           between p_date and p_date1
           AND B~BUKRS IN S_BUKRS.
      SORT IT_PA0025 by pernr.
      DESCRIBE TABLE IT_PA0025 LINES LV_VALUE.
    loop at it_pa0025 into wa_pa0025.
    row_number = row_number + 1 .
    WA_PA0025-number   =  row_number.
    *append wa_pa0025 to IT_PA0025.
    endloop.
      perform fcat using '1'  'NUMBER' 'S.no' '12' '' 'C410' 'C'.
      PERFORM FCAT USING '2'  'PERNR' 'Personnel number'    '16'  'X' 'C410' 'C'.
      PERFORM FCAT USING '3'  'ENAME' 'Employee name'       '26'  ''  '' ''.
      PERFORM FCAT USING '4'  'BUKRS' 'Company code'        '15'  ''  '' 'C'.
      PERFORM FCAT USING '5'  'BEGDA' 'Start date'          '11'  ''  '' ''.
      PERFORM FCAT USING '6'  'ENDDA' 'End date'            '10'  ''  '' ''.
      PERFORM FCAT USING '7'  'AEDTM' 'Changed date'        '13'  ''  '' ''.
      PERFORM FCAT USING '8'  'BWNAM' 'Appraiser'           '18'  ''  '' ''.
      PERFORM FCAT USING '9'  'DAT25' 'Appraised date'      '15'  ''  '' ''.
    CLEAR wa_sort.
    wa_sort-fieldname = 'PERNR'.
    wa_sort-up = 'X'.
    APPEND wa_sort TO i_sort.
      CLEAR wa_sort.
      wa_sort-FIELDNAME = 'DAT25'.
      wa_sort-UP = 'X'.
      APPEND wa_sort TO I_SORT.
      CLEAR wa_sort.
      wa_sort-FIELDNAME = 'BUKRS'.
      wa_sort-UP = 'X'.
      APPEND wa_sort TO I_SORT.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          I_CALLBACK_PROGRAM      = SY-CPROG
          I_CALLBACK_USER_COMMAND = 'USER_COMMAND'
          IT_SORT                 = I_SORT
          I_GRID_TITLE            = 'Report'
          IT_FIELDCAT             = IT_FCAT
          IT_EVENTS               = IT_EVENTS
        TABLES
          T_OUTTAB                = IT_PA0025.
    *&      Form  USER_COMMAND
          text
    -->  p1        text
    <--  p2        text
    FORM USER_COMMAND USING U_UCOMM TYPE SY-UCOMM
                            US_SELF_FIELD TYPE SLIS_SELFIELD.
      CASE U_UCOMM.
        WHEN '&IC1'.
          READ TABLE IT_PA0025 INTO WA_PA0025 INDEX US_SELF_FIELD-TABINDEX.
          CASE US_SELF_FIELD-FIELDNAME.
            WHEN 'PERNR'.
              SET PARAMETER ID : 'PER' FIELD WA_PA0025-PERNR.
              CALL TRANSACTION 'PA30'.
          ENDCASE.
      ENDCASE.
    ENDFORM.                    " USER_COMMAND
    FORM FCAT  USING    FP_COL_POS
                        FP_FIELDNAME
                        FP_SELTXT_M
                        FP_OUTPOUTLEN
                        FP_HOTSPOT
                        FP_EMPHASIZE
                        FP_JUST.
      WA_FCAT-COL_POS    =  FP_COL_POS.
      WA_FCAT-FIELDNAME  = FP_FIELDNAME.
      WA_FCAT-SELTEXT_M  = FP_SELTXT_M.
      WA_FCAT-OUTPUTLEN  = FP_OUTPOUTLEN.
      WA_FCAT-HOTSPOT    = FP_HOTSPOT.
      WA_FCAT-EMPHASIZE  = FP_EMPHASIZE.
      WA_FCAT-JUST       = FP_JUST.
      APPEND WA_FCAT TO IT_FCAT.
      CLEAR : WA_FCAT.
    ENDFORM.                    " FCAT
    *&      Form  HEADER
          text
    -->  p1        text
    <--  p2        text
    FORM HEADER .                                               "#EC CALLED
      DATA :     IT_HEADER TYPE SLIS_T_LISTHEADER,
                 WA_HEADER LIKE LINE OF IT_HEADER.
      WA_HEADER-TYP  = 'H'.
      WA_HEADER-INFO = TEXT-006.
      APPEND WA_HEADER TO IT_HEADER.
      CLEAR WA_HEADER.
      WA_HEADER-TYP  = 'S'.
      WA_HEADER-KEY  = TEXT-007.
      CONCATENATE  SY-DATUM+6(2) '.'
                   SY-DATUM+4(2) '.'
                   SY-DATUM(4) INTO WA_HEADER-INFO.   "Current date
      APPEND WA_HEADER TO IT_HEADER.
      CLEAR WA_HEADER.
      WA_HEADER-TYP  = 'S'.
      WA_HEADER-KEY = TEXT-012.
      MOVE LV_VALUE TO WA_HEADER-INFO.
      APPEND WA_HEADER TO IT_HEADER.
      CLEAR WA_HEADER.
      CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
        EXPORTING
          IT_LIST_COMMENTARY = IT_HEADER.
      CLEAR : IT_HEADER[], WA_HEADER.
    ENDFORM.                    " HEADER
    Thanks and Regards,
    Thirukumaran. R

    hi
    LOOP AT it_pa0025 INTO wa_pa0025.
        row_number = row_number + 1 .
        wa_pa0025-number = row_number.
    " Add this statement here
        MODIFY it_pa0025 INDEX sy-tabix FROM wa_pa0025 TRANSPORTING number.
      ENDLOOP.
    Thanks & Regards

  • Project Server 2013 PWA resource view

    Hi all, 
    Is there any way to see the detail information of a resource in PWA? In Project Professional 2013, we can check all the task\project the resource is assigned and all the planned work for the resource under resource usage view. However, we can not find it
    in PWA. Any suggestion?
    Regards,
    Anna

    Hi Anna,
    From the resource center, you can select one or more resources and check for their availability. You'll have a graph will all resources assignments by time periods and projects with a grid for the details.
    http://office.microsoft.com/en-us/project-server-help/view-resource-availability-HA010059812.aspx
    Hope this helps,
    Guillaume Rouyre, MBA, MCP, MCTS |

  • Project server 2013 PWA - Can't open project in PWA

    When attempting to open a project in PWA the following message is generated:
    An error occurred while opening your project. Give us a few minutes and try again. If this happens again, contact your administrator.
    It happens in all PWA sites.
    In addition you can open and edit the projects using Project Pro without any problem.
    Any suggestions?

    Can you run the below command in SharePoint Management shell:
    set-spprojectpcssettings -maximumworkerscount 260
    Once done restart the Project Services and then check the behavior.
    Cheers! Happy troubleshooting !!! Dinesh S. Rai - MSFT Enterprise Project Management Please click Mark As Answer; if a post solves your problem or Vote As Helpful if a post has been useful to you. This can be beneficial to other community members reading
    the thread.

  • Serial Number overlapping in PRD server

    Hi Friends,
                 In DEV Server the program is working fine. But in PRD Server, the serial no of the last digit is
    getting interchanged when taking print out!
    How to solve this issue?
    Regards,
    K.S.Kannan.
    Edited by: kannan ks on Nov 18, 2008 11:19 AM

    Dear Friends,
    in my career earlier stage, i post this question. and also i got the solution long before. and now i update the solution for my issue .
    this is my question
    Using smartforms i design the layout ( installation certuificate), in that  need to display serial no field .
    In development server the output of the serial no is come good. after testing all cases we move the request from Development  to Quality server. in Quality server also display the serial no come good as its in DEV server. but in PRD server in the output
    last no of  the serial no( is overlapped) .
    Solution
    in  SPAD settings check the  corresponding device type  SAPWIN in both QAS and PRD.
    save & activate in QAS and move the transport request from QAS to PRD.
    and we check the output in PRD and found Ok
    Thanks
    Kannan.

  • Project server 2013 csom save and publish

    Hi,
    In Project server 2013 PWA when you edit project custom fields and save the queue job execute the following jobs: 
    - "Project Update from PSI"
    - "Project Publish Summary"
    - "Reporting (Project Publish Summary)"
    In my code (CSOM)  i can only use : " QueueJob Job = projChechedOut.Publish(true);"
    which is creating all these jobs:
    Project Update from PSI
    Project Publish Notifications
    Project Publish
    Project Checkin
    Prepare Project Web App Permission Synchronization For Projects
    Reporting (Project Publish)
    Project Workflow Check-in
    Synchronize Project Web App Permissions to Project Web App
    Synchronize Project Web App Permissions to Project Site
    Reporting (Project Sync)
    Is there way to "simulate" the save from PWA instead of fully publishing the project using CSOM,  because it is a lighter solution since my code is supposed to only set custom field value (if i only update, not publish it is written to the
    Draft) and secondly performance (less jobs) is better ?
    Thx in advance !!

    Hi,
    as an update to my post:
    - In PSI the method is project.queuepublishsummary(guid jobid, guid projuid)
    http://msdn.microsoft.com/en-us/library/office/gg200290.aspx
    the description says: Publishes the stage summaries of the specified project, in a partial publish operation.
    I am wondering if the equivalent method exists in CSOM. There is this method: PublishedProject.UpdateVisibilityCustomFields() but it seems doing exactly the same thing as publishing a DraftProject.
    Any ideas ?
    Thx

  • Access Project Server 2013 from personal mobile device

    Dear All,
    This is something great about Project Server 2013 (PWA) where users can view theirs task & other information on their personal mobiles, tabs etc. But i not able to access my company Project Server 2013.
    Is that i am missing something to install or configure PWA 2013 as i am admin for this application?
    Kindly let me know 

    That means your PWA site collection in not published externally so your mobile device can't resolve the DNS. If you connect your mobile device to the same network your Project Server environment is on, it will work as the DNS would resolve. You probably
    want to look at publishing PWA externally if you want to use it on mobile devices. Here are some links for you / your IT department, the process is the same for PWA and any other SharePoint site collection:
    http://www.brightstarr.com/sharepoint-technology-and-application-insights/securely-publishing-sharepoint-externally-using-web-application-proxy
    http://blogs.msdn.com/b/sambetts/archive/2014/04/02/setting-up-a-reverse-proxy-for-sharepoint-with-tmg-server.aspx
    http://www.isaserver.org/articles-tutorials/installation-planning/Planning-SharePoint-Publishing-TMG.html
    Paul
    Paul Mather | Twitter |
    http://pwmather.wordpress.com | CPS

  • Can't enter serial number in server admin

    I inadvertently entered the incorrect mac os x 10.4 serial number on a machine (Server 2 ) which disabled another machine (Server 1) with the same number. Now workgroup manager won't work on Server 1. All the items listed under computers and services are grey out, the serial number fields are blank and I can't enter data. Server number two is offline and the drive has been erased.
    Does anyone know how to reenter the serial number or do I need to rebuild server 1? I was hoping to be able to be able to just reenter the numbers. If not any tips on using the migration tool to transfer server 1 settings to server 2. Any suggestions are appreciated.
    Thanks
    Message was edited by: Zendad

    Hi
    serversetup might help. man serversetup for usage. You should be able view, validate and set the serial number. The tool is located in /System/
    Library/ServerSetup.
    To show the server’s software serial number:
    sudo serversetup -getServerSerialNumber
    To set the server software serial number:
    sudo serversetup -setserverSerialNumber serialnumber watermarkinformation
    Where serialnumber is a valid Mac OS X Server software serial number, as found on the packaging.
    This might help – Tony

Maybe you are looking for