ChaRM: Status Management

Hi All,
I have configured ChaRM in Sol MAn. I am trying to execute the action "Pass Correction to Test". After executing the action, the status has been changed to "To be Tested" but the transport has been NOT imported to QAS. I want to restrict this status change, if the import not successful. How to implement this?
Your valuable will be very much appreciated..
Thanks
Kumar

Hi Alagammai,
-I created a change request,
-then to be approved,
-create task list and added to it a rol in DEV
How I can transport this rol to QAS and the service desk message changed completed development and then to be tested ?
Did you said via task list? Do you mean I have to go to SOLAR_PROJECT_ADMIN -- CHANGE REQUEST-- TASK LIST -- LOGON TO DEV AND IMPORTED VIA STMS? I though this could be done in the same Service Desk message.
On the other hand, when do I have to change status and phase in task list? I saw this options there
Please help me!
Regards

Similar Messages

  • Project Server 2010 - Change Status Manager

    End Goal: We would like to perform this change via SQL statement - which I believe I have  I feel like I am missing something and not sure what it is.
    Background:  We migrated from a different product to Project Server 2010, while our team members were assisting users to move their projects from the old application to Project 2010 they did not realize their names would appear as status
    managers.
    The quick solution would be to tell the owners of the projects to change the information themselves (republish or go in themselves and change every line); however we feel this can be cumbersome and too much work due to having hundreds of projects and there
    are thousands of fields that need to be modified.  I can quickly accomplish what I want with an UPDATE command and be done with it (no user involvement). 
    What I am running into in my test environment is that I can modify the fields (query below) to the appropriate status manager, but I cannot get the changes to appear in Project Professional - it still shows the old value.
    I have used the following command to change the Status Manager to the Project Owner (I'm new to SQL, and we no longer have a DBA - so if my code isnt the greatest...I'll fix it)
    USE ProjectServer_ReportingUPDATE MSP_EpmTaskSET TaskStatusManagerUID = MSP_EpmProject.ProjectOwnerResourceUIDFROM MSP_EpmProjectWHERE MSP_EpmTask.ProjectUID = MSP_EpmProject.ProjectUID
    This modifies all the values correctly - Project Owners become the Status Manager in SQL
    Question: Is there something I am missing or can do OR I am not doing to make this new value show up? Is there a better way to do this from an administrative point of view, with no customer/user interaction?
    Your help is greatly appreciated
    Thank You
    kbwrecker

    Merely my personal opinion having been a Project Server 2010 admin in a medium-sized corporation:
    I think you are going to seriously do some damage if you go about trying to modify SQL tables behind Project Server's back. There are a LOT of operations that go into a simple "publish" and I doubt that the minor changes you want to make will account for
    all of them. Are you confident you're adjusting all of the values necessary? You may have a detrimental impact on in-flight approvals, timesheets, projects, tasks, assignments.. There is just far too much IMO.
    Believe me, I know it is not an ideal solution to have the business make their own adjustments. However sometimes it is just what has to be done. My vote is to craft brief instructions and send them out to the PMs. It's easy to do, they can change one row
    and then drag the field down like in Excel to edit all the rest; it's a 1-minute operation, max.
    Due to the nature of the field, (not being something you can edit via PWA, and even in Project Pro it only allows you to change it to yourself or another current Status Mgr) I think you'll have a hard time scripting this one via macro etc.. However if you
    do find a way, seriously keep in mind your scope and don't edit them all at once, it will need to kick off publishes and check-ins for all the affected projects.
    Good luck!

  • Error-IM258-Object does not exist (Status Management)

    Dear All
    We have used the enhancement "MCI10001" for triggering the external E mail while scheduling the maintenance plan using T code IP10.
    System will fetch the E mail ID from the equipment master -partner function either Vendor or User responsible and sends the mail
    But while executing IP10 system throws an error message as follows
    Error Msg no: IM 258- Object does not exist (Status Management)
    This refers to an error in central status management.
    Kindly help on the above issue
    Regards
    Thyagarajan

    l have same problem  my code  below
    help me please .
    if email is not INITIAL and ulke is not initial and sy-tcode eq 'QM01' and sy-ucomm eq 'BUCH' and I_VIQMEL-QMART = 'Q1'.
        CALL FUNCTION 'POPUP_TO_CONFIRM'
          EXPORTING
            TITLEBAR       = 'E-mail'
            TEXT_QUESTION  = 'E-mail Göndermek istiyormusunuz ?'
          IMPORTING
            ANSWER         = answer
          EXCEPTIONS
            TEXT_NOT_FOUND = 1
            OTHERS         = 2.
    if answer eq 1 and ulke = 'TR'.
    lt_mailtxt ='Değerli Müşterimiz,'.
    APPEND lt_mailtxt.clear lt_mailtxt.
    lt_mailtxt = 'Şikayetiniz sistemimize alınmıştır. Müşteri şikayeti sorumlularımız sizlerle en yakın zamanda irtibata '.
    APPEND lt_mailtxt.clear lt_mailtxt.
    lt_mailtxt = 'geçeceklerdir. Şikayetiniz için teşekkür eder, saygılarımızı sunarız.'.
    APPEND lt_mailtxt.clear lt_mailtxt.
    lt_mailtxt =''.
    APPEND lt_mailtxt.clear lt_mailtxt.
    data:  it_packing_list like sopcklsti1 occurs 0 with header line,
           it_receivers like somlreci1 occurs 0 with header line,
            gd_cnt type i,
            gd_sent_all(1) type c,
            gd_doc_data like sodocchgi1,
            gd_error type sy-subrc.
    gd_doc_data-doc_size = it_packing_list-body_num * 255.
    Populate the subject/generic message attributes.
      gd_doc_data-obj_langu = sy-langu.
      gd_doc_data-obj_name  = 'SAPRPT'.
      gd_doc_data-obj_descr = 'Naksan KGM'.
      gd_doc_data-sensitivty = 'F'.
    Describe the body of the message
      clear it_packing_list.
      refresh it_packing_list.
      it_packing_list-transf_bin = space.
      it_packing_list-head_start = 1.
      it_packing_list-head_num = 0.
      it_packing_list-body_start = 1.
      describe table lt_mailtxt lines it_packing_list-body_num.
      it_packing_list-doc_type = 'RAW'.
      append it_packing_list.
      CLEAR it_receivers.
      it_receivers-receiver =  email.
      it_receivers-rec_type = 'U'.
      it_receivers-com_type = 'INT'.
      it_receivers-notif_del = 'X'.
      it_receivers-notif_ndel = 'X'.
      append it_receivers.
      call function 'SO_DOCUMENT_SEND_API1'
           exporting
                document_data              = gd_doc_data
                put_in_outbox              = 'X'
                sender_address             = 'sinan.tataroglu@***.com'
                sender_address_type        = 'INT'
                commit_work                = 'X'
           importing
                sent_to_all                = gd_sent_all
           tables
                packing_list               = it_packing_list
                contents_txt               = lt_mailtxt[]
                receivers                  = it_receivers
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                others                     = 8.
    IF sy-subrc EQ 0.
    COMMIT WORK.
      Push mail out from SAP outbox.
    SUBMIT rsconn01 WITH mode = 'INT' AND RETURN.
    ENDIF.
    elseif ulke ne 'TR' and answer eq 1.
    lt_mailtxt ='Dear Customer,'.
    APPEND lt_mailtxt.clear lt_mailtxt.
    lt_mailtxt = 'Your compliant has just entered to system. Customer complaint responsible will contact with you ASAP.'.
    APPEND lt_mailtxt.clear lt_mailtxt.
    lt_mailtxt = 'Thanks for your complaint.'.
    APPEND lt_mailtxt.clear lt_mailtxt.
    gd_doc_data-doc_size = it_packing_list-body_num * 255.
    Populate the subject/generic message attributes
      gd_doc_data-obj_langu = sy-langu.
      gd_doc_data-obj_name  = 'SAPRPT'.
      gd_doc_data-obj_descr = 'Naksan KGM'.
      gd_doc_data-sensitivty = 'F'.
    Describe the body of the message
      clear it_packing_list.
      refresh it_packing_list.
      it_packing_list-transf_bin = space.
      it_packing_list-head_start = 1.
      it_packing_list-head_num = 0.
      it_packing_list-body_start = 1.
      describe table lt_mailtxt lines it_packing_list-body_num.
      it_packing_list-doc_type = 'RAW'.
      append it_packing_list.
      CLEAR it_receivers.
      it_receivers-receiver =  email.
      it_receivers-rec_type = 'U'.
      it_receivers-com_type = 'INT'.
      it_receivers-notif_del = 'X'.
      it_receivers-notif_ndel = 'X'.
      append it_receivers.
      call function 'SO_DOCUMENT_SEND_API1'
           exporting
                document_data              = gd_doc_data
                put_in_outbox              = 'X'
                sender_address             = 'peykan.samli@****.com'
                sender_address_type        = 'INT'
                commit_work                = 'X'
           importing
                sent_to_all                = gd_sent_all
           tables
                packing_list               = it_packing_list
                contents_txt               = lt_mailtxt[] "it_message
                receivers                  = it_receivers
           exceptions
                too_many_receivers         = 1
                document_not_sent          = 2
                document_type_not_exist    = 3
                operation_no_authorization = 4
                parameter_error            = 5
                x_error                    = 6
                enqueue_error              = 7
                others                     = 8.
    IF sy-subrc EQ 0.
      COMMIT WORK.
      Push mail out from SAP outbox.
      SUBMIT rsconn01 WITH mode = 'INT' AND RETURN.
    ENDIF.

  • Error-IM258-This refers to an error in central status management.

    Dear All
    We have used the enhancement "MCI10001" for triggering the external E mail while scheduling the maintenance plan using T code IP10.
    System will fetch the E mail ID from the equipment master -partner function either Vendor or User responsible and sends the mail
    But while executing IP10 system throws an error message as follows
    Error Msg no: IM 258- Object does not exist (Status Management)
    This refers to an error in central status management.
    Kindly help on the above issue
    Regards
    Thyagarajan
    Edited by: thyagarajan krishnamurthy on Feb 18, 2011 11:10 AM
    Edited by: thyagarajan krishnamurthy on Feb 18, 2011 2:28 PM

    Dear,
    Please refer the OSS Note 437878 - Status data missing for PM/CS notifications .
    Regards,
    R.Brahmankar

  • Event creation with status management

    Hello esteemed gurus ... it's your friendly workflow noob again
    It seems once people get a sniff that there is a someone who knows a bit about workflow in the company, everyone wants a piece of you!
    So... I have been asked to setup a workflow that will trigger when a user changes a user status on an SD contract. I've done some reading and I believe I'm nearly there but need a little help ...
    I have setup event creation with transaction BSVZ for object category VBK, specified my status profile, and business object BUS2034 and I'm using the event "CHANGED", within this I have set a status restriction to particular status of my user status profile.
    In my workflow definition I have specified the start event "CHANGED" for my business object BUS2034.
    The thing is, the workflow starts for every change to the contract, whereas I was expecting it to only start when the particular status I defined in my status management was set in the contract header.
    Are there any additional settings I need to make in order to restrict the starting conditions of the this workflow?
    Many thanks once again.
    Neil

    Hi Neil,
    There is two options to restrict the workflow.
    First one is start condition. You can check the workflow log. If your required field is populated in the Workflow container you can use start condition to restrict the workflow. In the Basic data of workflow template, Start condition is there. You can use the condition editor to set the condition.
    If your field is not populated by default, then you can use check function module for this. You need to create one FM, and in transaction swe2, the FM needs to be Configured. The concept is, based on the Sales document number you can get the required field and check the condition inside the FM. If the condition satisfied just leave it. The workflow will be triggered. If the condition is not satisfied raise a Exception. So that the Workflow will not be triggered.
    Thanks,
    Viji.

  • CRM ORDER CHANGE AND STATUS MANAGEMENT - workflow

    Hi,
    We have created a Changed method for bus2000120 which is configured to fire when the Order is saved via Status Management.  We have added an entry to BSVW for the object, bus2000120.changed with no restrictions.  We have also created a function module that checks to see if the user status is E0005 or E0007 or it deletes the object from the Event table.  I see that this works correctly, however, a given SAVE of a transaction is firing 2 bus2000120.changed for the exact same user and system status.  (I know that it is firing 2 bus2000120.changed because I ran swels and swel. The event was listed twice. Please remember that the Event table when read directly after the save only lists bus2000120.changed one time.)
    There is only 1 entry in the event linkage(swetypv) for bus2000120.changed and it has a condition of the same user status, e0005 or e0007.  No real problem here, however, since there were 2 firings it runs the workflow twice.
    When you look at the extras-change documents you can see that the Header is changed twice, once for a system status and once for the user status.  I am assuming that since there are 2 changes, this is what is doing both firings.
    The funny thing is that if I fall into our custom code in debug where we are reading the status and event tables I only see bus2000120.changed.
    Any ideas on how I might solve this problem?  Do you believe I am correct in assuming that the 2 status changes to the header of the transaction is how both events are being fired?  If not, any guidance you might give would be greatly appreciated.

    see post stream, solved via sap note 1063138

  • Status manager field report in pwa 2010

    From Ms project or project server I am trying to get a report on status managers on tasks. 
    is there a way I can get status managers listed on the tasks in a report other than Opening all projects individually?

    I got a Sample template which looks almost same called Projects and assignments
    we can add status manager field there. Below is the query
        SELECT                MSP_EpmProject_UserView.ProjectUID as [ProjectUID],                MSP_EpmProject_UserView.ProjectName as [ProjectName],      
             MSP_EpmProject_UserView.ProjectAuthorName as [ProjectAuthorName],                MSP_EpmProject_UserView.ProjectOwnerResourceUID as [ProjectOwnerResourceUID],        
           MSP_EpmProject_UserView.ProjectStartDate as [ProjectStartDate],                MSP_EpmProject_UserView.ProjectFinishDate as [ProjectFinishDate],              
     MSP_EpmProject_UserView.ProjectStatusDate as [ProjectStatusDate],                MSP_EpmProject_UserView.ProjectManagerName as [ProjectManagerName],                MSP_EpmProject_UserView.ProjectType
    as [ProjectType],                MSP_EpmProject_UserView.ProjectWorkspaceInternalHRef as [ProjectWorkspaceInternalHRef],                MSP_EpmProject_UserView.ProjectWbsIsStale
    as [ProjectWbsIsStale],                MSP_EpmProject_UserView.ProjectEarnedValueIsStale as [ProjectEarnedValueIsStale],                MSP_EpmProject_UserView.ProjectRollupsAreStale
    as [ProjectRollupsAreStale],                MSP_EpmProject_UserView.ProjectHierarchyNotSynchronized as [ProjectHierarchyNotSynchronized],                MSP_EpmProject_UserView.ProjectCalculationsAreStale
    as [ProjectCalculationsAreStale],                MSP_EpmProject_UserView.ProjectGhostTaskAreStale as [ProjectGhostTaskAreStale],                MSP_EpmProject_UserView.ProjectCurrency
    as [ProjectCurrency],                MSP_EpmProject_UserView.ResourcePlanUtilizationType as [ResourcePlanUtilizationType],                MSP_EpmProject_UserView.ResourcePlanUtilizationDate
    as [ResourcePlanUtilizationDate],                MSP_EpmProject_UserView.ProjectCreatedRevisionCounter as [ProjectCreatedRevisionCounter],                MSP_EpmProject_UserView.ProjectModifiedRevisionCounter
    as [ProjectModifiedRevisionCounter],                MSP_EpmProject_UserView.ProjectCreatedDate as [ProjectCreatedDate],                MSP_EpmProject_UserView.ProjectModifiedDate
    as [ProjectModifiedDate],                MSP_EpmProject_UserView.ProjectCalendarDuration as [ProjectCalendarDuration],                MSP_EpmProject_UserView.ParentProjectUID as
    [ParentProjectUID],                MSP_EpmProject_UserView.ProjectFixedCost as [ProjectFixedCost],                MSP_EpmProject_UserView.ProjectCost as [ProjectCost],    
               MSP_EpmProject_UserView.ProjectOvertimeCost as [ProjectOvertimeCost],                MSP_EpmProject_UserView.ProjectActualCost as [ProjectActualCost],        
           MSP_EpmProject_UserView.ProjectActualOvertimeCost as [ProjectActualOvertimeCost],                MSP_EpmProject_UserView.ProjectWork as [ProjectWork],            
       MSP_EpmProject_UserView.ProjectOvertimeWork as [ProjectOvertimeWork],                MSP_EpmProject_UserView.ProjectActualWork as [ProjectActualWork],                MSP_EpmProject_UserView.ProjectActualOvertimeWork
    as [ProjectActualOvertimeWork],                MSP_EpmProject_UserView.ProjectDurationVariance as [ProjectDurationVariance],                MSP_EpmProject_UserView.ProjectStartVariance
    as [ProjectStartVariance],                MSP_EpmProject_UserView.ProjectFinishVariance as [ProjectFinishVariance],                MSP_EpmProject_UserView.ProjectDuration as [ProjectDuration],
                   MSP_EpmProject_UserView.ProjectActualDuration as [ProjectActualDuration],                MSP_EpmProject_UserView.ProjectActualStartDate as [ProjectActualStartDate],
                   MSP_EpmProject_UserView.ProjectActualFinishDate as [ProjectActualFinishDate],                MSP_EpmProject_UserView.ProjectPercentCompleted as [ProjectPercentCompleted],
                   MSP_EpmProject_UserView.ProjectPercentWorkCompleted as [ProjectPercentWorkCompleted],                MSP_EpmProject_UserView.ProjectACWP as [ProjectACWP],  
                 MSP_EpmProject_UserView.ProjectBCWP as [ProjectBCWP],                MSP_EpmProject_UserView.ProjectBCWS as [ProjectBCWS],              
     MSP_EpmProject_UserView.ProjectSPI as [ProjectSPI],                MSP_EpmProject_UserView.ProjectTCPI as [ProjectTCPI],                MSP_EpmProject_UserView.ProjectVAC
    as [ProjectVAC],                MSP_EpmProject_UserView.ProjectEAC as [ProjectEAC],                MSP_EpmProject_UserView.ProjectCostVariance as [ProjectCostVariance],  
                 MSP_EpmProject_UserView.ProjectCV as [ProjectCV],                MSP_EpmProject_UserView.ProjectCPI as [ProjectCPI],                MSP_EpmProject_UserView.ProjectEarlyFinish
    as [ProjectEarlyFinish],                MSP_EpmProject_UserView.ProjectEarlyStart as [ProjectEarlyStart],                MSP_EpmProject_UserView.ProjectLateFinish as [ProjectLateFinish],
                   MSP_EpmProject_UserView.ProjectLateStart as [ProjectLateStart],                MSP_EpmProject_UserView.ProjectSV as [ProjectSV],          
         MSP_EpmProject_UserView.ProjectWorkVariance as [ProjectWorkVariance],                MSP_EpmProject_UserView.ProjectBudgetCost as [ProjectBudgetCost],              
     MSP_EpmProject_UserView.ProjectBudgetWork as [ProjectBudgetWork],                MSP_EpmProject_UserView.ProjectResourcePlanWork as [ProjectResourcePlanWork],                MSP_EpmProject_UserView.ProjectRegularCost
    as [ProjectRegularCost],                MSP_EpmProject_UserView.ProjectRemainingCost as [ProjectRemainingCost],                MSP_EpmProject_UserView.ProjectRemainingOvertimeCost
    as [ProjectRemainingOvertimeCost],                MSP_EpmProject_UserView.ProjectActualRegularCost as [ProjectActualRegularCost],                MSP_EpmProject_UserView.ProjectRemainingRegularCost
    as [ProjectRemainingRegularCost],                MSP_EpmProject_UserView.ProjectRegularWork as [ProjectRegularWork],                MSP_EpmProject_UserView.ProjectRemainingWork
    as [ProjectRemainingWork],                MSP_EpmProject_UserView.ProjectRemainingOvertimeWork as [ProjectRemainingOvertimeWork],                MSP_EpmProject_UserView.ProjectActualRegularWork
    as [ProjectActualRegularWork],                MSP_EpmProject_UserView.ProjectRemainingRegularWork as [ProjectRemainingRegularWork],                MSP_EpmProject_UserView.ProjectRemainingDuration
    as [ProjectRemainingDuration],                MSP_EpmProject_UserView.ProjectCVP as [ProjectCVP],                MSP_EpmProject_UserView.ProjectSVP as [ProjectSVP],    
               MSP_EpmProject_UserView.ProjectOwnerName as [ProjectOwnerName],                MSP_EpmProject_UserView.ProjectCount as [ProjectCount],            
       MSP_EpmProject_UserView.ProjectBaseline0Cost as [ProjectBaseline0Cost],                MSP_EpmProject_UserView.ProjectBaseline0FixedCost as [ProjectBaseline0FixedCost],          
         MSP_EpmProject_UserView.ProjectBaseline0Work as [ProjectBaseline0Work],                MSP_EpmProject_UserView.ProjectBaseline0BudgetCost as [ProjectBaseline0BudgetCost],        
           MSP_EpmProject_UserView.ProjectBaseline0BudgetWork as [ProjectBaseline0BudgetWork],                MSP_EpmProject_UserView.ProjectBaseline0StartDate as [ProjectBaseline0StartDate],    
               MSP_EpmProject_UserView.ProjectBaseline0FinishDate as [ProjectBaseline0FinishDate],                MSP_EpmProject_UserView.ProjectBaseline0Duration as [ProjectBaseline0Duration],
                   MSP_EpmProject_UserView.ProjectBaseline1Cost as [ProjectBaseline1Cost],                MSP_EpmProject_UserView.ProjectBaseline1FixedCost as [ProjectBaseline1FixedCost],
                   MSP_EpmProject_UserView.ProjectBaseline1Work as [ProjectBaseline1Work],                MSP_EpmProject_UserView.ProjectBaseline1BudgetCost as [ProjectBaseline1BudgetCost],
                   MSP_EpmProject_UserView.ProjectBaseline1BudgetWork as [ProjectBaseline1BudgetWork],                MSP_EpmProject_UserView.ProjectBaseline1StartDate as [ProjectBaseline1StartDate],
                   MSP_EpmProject_UserView.ProjectBaseline1FinishDate as [ProjectBaseline1FinishDate],                MSP_EpmProject_UserView.ProjectBaseline1Duration as [ProjectBaseline1Duration],
                   MSP_EpmProject_UserView.ProjectBaseline2Cost as [ProjectBaseline2Cost],                MSP_EpmProject_UserView.ProjectBaseline2FixedCost as [ProjectBaseline2FixedCost],
                   MSP_EpmProject_UserView.ProjectBaseline2Work as [ProjectBaseline2Work],                MSP_EpmProject_UserView.ProjectBaseline2BudgetCost as [ProjectBaseline2BudgetCost],
                   MSP_EpmProject_UserView.ProjectBaseline2BudgetWork as [ProjectBaseline2BudgetWork],                MSP_EpmProject_UserView.ProjectBaseline2StartDate as [ProjectBaseline2StartDate],
                   MSP_EpmProject_UserView.ProjectBaseline2FinishDate as [ProjectBaseline2FinishDate],                MSP_EpmProject_UserView.ProjectBaseline2Duration as [ProjectBaseline2Duration],
                   MSP_EpmProject_UserView.ProjectBaseline3Cost as [ProjectBaseline3Cost],                MSP_EpmProject_UserView.ProjectBaseline3FixedCost as [ProjectBaseline3FixedCost],
                   MSP_EpmProject_UserView.ProjectBaseline3Work as [ProjectBaseline3Work],                MSP_EpmProject_UserView.ProjectBaseline3BudgetCost as [ProjectBaseline3BudgetCost],
                   MSP_EpmProject_UserView.ProjectBaseline3BudgetWork as [ProjectBaseline3BudgetWork],                MSP_EpmProject_UserView.ProjectBaseline3StartDate as [ProjectBaseline3StartDate],
                   MSP_EpmProject_UserView.ProjectBaseline3FinishDate as [ProjectBaseline3FinishDate],                MSP_EpmProject_UserView.ProjectBaseline3Duration as [ProjectBaseline3Duration],
                   MSP_EpmProject_UserView.ProjectBaseline4Cost as [ProjectBaseline4Cost],                MSP_EpmProject_UserView.ProjectBaseline4FixedCost as [ProjectBaseline4FixedCost],
                   MSP_EpmProject_UserView.ProjectBaseline4Work as [ProjectBaseline4Work],                MSP_EpmProject_UserView.ProjectBaseline4BudgetCost as [ProjectBaseline4BudgetCost],
                   MSP_EpmProject_UserView.ProjectBaseline4BudgetWork as [ProjectBaseline4BudgetWork],                MSP_EpmProject_UserView.ProjectBaseline4StartDate as [ProjectBaseline4StartDate],
                   MSP_EpmProject_UserView.ProjectBaseline4FinishDate as [ProjectBaseline4FinishDate],                MSP_EpmProject_UserView.ProjectBaseline4Duration as [ProjectBaseline4Duration],
                   MSP_EpmProject_UserView.ProjectBaseline5Cost as [ProjectBaseline5Cost],                MSP_EpmProject_UserView.ProjectBaseline5FixedCost as [ProjectBaseline5FixedCost],
                   MSP_EpmProject_UserView.ProjectBaseline5Work as [ProjectBaseline5Work],                MSP_EpmProject_UserView.ProjectBaseline5BudgetCost as [ProjectBaseline5BudgetCost],
                   MSP_EpmProject_UserView.ProjectBaseline5BudgetWork as [ProjectBaseline5BudgetWork],                MSP_EpmProject_UserView.ProjectBaseline5StartDate as [ProjectBaseline5StartDate],
                   MSP_EpmProject_UserView.ProjectBaseline5FinishDate as [ProjectBaseline5FinishDate],                MSP_EpmProject_UserView.ProjectBaseline5Duration as [ProjectBaseline5Duration],
                   MSP_EpmProject_UserView.ProjectBaseline6Cost as [ProjectBaseline6Cost],                MSP_EpmProject_UserView.ProjectBaseline6FixedCost as [ProjectBaseline6FixedCost],
                   MSP_EpmProject_UserView.ProjectBaseline6Work as [ProjectBaseline6Work],                MSP_EpmProject_UserView.ProjectBaseline6BudgetCost as [ProjectBaseline6BudgetCost],
                   MSP_EpmProject_UserView.ProjectBaseline6BudgetWork as [ProjectBaseline6BudgetWork],                MSP_EpmProject_UserView.ProjectBaseline6StartDate as [ProjectBaseline6StartDate],
                   MSP_EpmProject_UserView.ProjectBaseline6FinishDate as [ProjectBaseline6FinishDate],                MSP_EpmProject_UserView.ProjectBaseline6Duration as [ProjectBaseline6Duration],
                   MSP_EpmProject_UserView.ProjectBaseline7Cost as [ProjectBaseline7Cost],                MSP_EpmProject_UserView.ProjectBaseline7FixedCost as [ProjectBaseline7FixedCost],
                   MSP_EpmProject_UserView.ProjectBaseline7Work as [ProjectBaseline7Work],                MSP_EpmProject_UserView.ProjectBaseline7BudgetCost as [ProjectBaseline7BudgetCost],
                   MSP_EpmProject_UserView.ProjectBaseline7BudgetWork as [ProjectBaseline7BudgetWork],                MSP_EpmProject_UserView.ProjectBaseline7StartDate as [ProjectBaseline7StartDate],
                   MSP_EpmProject_UserView.ProjectBaseline7FinishDate as [ProjectBaseline7FinishDate],                MSP_EpmProject_UserView.ProjectBaseline7Duration as [ProjectBaseline7Duration],
                   MSP_EpmProject_UserView.ProjectBaseline8Cost as [ProjectBaseline8Cost],                MSP_EpmProject_UserView.ProjectBaseline8FixedCost as [ProjectBaseline8FixedCost],
                   MSP_EpmProject_UserView.ProjectBaseline8Work as [ProjectBaseline8Work],                MSP_EpmProject_UserView.ProjectBaseline8BudgetCost as [ProjectBaseline8BudgetCost],
                   MSP_EpmProject_UserView.ProjectBaseline8BudgetWork as [ProjectBaseline8BudgetWork],                MSP_EpmProject_UserView.ProjectBaseline8StartDate as [ProjectBaseline8StartDate],
                   MSP_EpmProject_UserView.ProjectBaseline8FinishDate as [ProjectBaseline8FinishDate],                MSP_EpmProject_UserView.ProjectBaseline8Duration as [ProjectBaseline8Duration],
                   MSP_EpmProject_UserView.ProjectBaseline9Cost as [ProjectBaseline9Cost],                MSP_EpmProject_UserView.ProjectBaseline9FixedCost as [ProjectBaseline9FixedCost],
                   MSP_EpmProject_UserView.ProjectBaseline9Work as [ProjectBaseline9Work],                MSP_EpmProject_UserView.ProjectBaseline9BudgetCost as [ProjectBaseline9BudgetCost],
                   MSP_EpmProject_UserView.ProjectBaseline9BudgetWork as [ProjectBaseline9BudgetWork],                MSP_EpmProject_UserView.ProjectBaseline9StartDate as [ProjectBaseline9StartDate],
                   MSP_EpmProject_UserView.ProjectBaseline9FinishDate as [ProjectBaseline9FinishDate],                MSP_EpmProject_UserView.ProjectBaseline9Duration as [ProjectBaseline9Duration],
                   MSP_EpmProject_UserView.ProjectBaseline10Cost as [ProjectBaseline10Cost],                MSP_EpmProject_UserView.ProjectBaseline10FixedCost as [ProjectBaseline10FixedCost],
                   MSP_EpmProject_UserView.ProjectBaseline10Work as [ProjectBaseline10Work],                MSP_EpmProject_UserView.ProjectBaseline10BudgetCost as [ProjectBaseline10BudgetCost],
                   MSP_EpmProject_UserView.ProjectBaseline10BudgetWork as [ProjectBaseline10BudgetWork],                MSP_EpmProject_UserView.ProjectBaseline10StartDate as [ProjectBaseline10StartDate],
                   MSP_EpmProject_UserView.ProjectBaseline10FinishDate as [ProjectBaseline10FinishDate],                MSP_EpmProject_UserView.ProjectBaseline10Duration as [ProjectBaseline10Duration],
                   MSP_EpmTask_UserView.TaskUID as [TaskUID],                MSP_EpmTask_UserView.TaskParentUID as [TaskParentUID],              
     MSP_EpmTask_UserView.FixedCostAssignmentUID as [FixedCostAssignmentUID],                MSP_EpmTask_UserView.TaskName as [TaskName],                MSP_EpmTask_UserView.TaskIndex
    as [TaskIndex],                MSP_EpmTask_UserView.TaskIsOverallocated as [TaskIsOverallocated],                MSP_EpmTask_UserView.TaskIsProjectSummary as [TaskIsProjectSummary],
                   MSP_EpmTask_UserView.TaskOutlineLevel as [TaskOutlineLevel],                MSP_EpmTask_UserView.TaskOutlineNumber as [TaskOutlineNumber],        
           MSP_EpmTask_UserView.TaskIsMilestone  as [TaskIsMilestone],                MSP_EpmTask_UserView.TaskIsCritical as [TaskIsCritical],                MSP_EpmTask_UserView.TaskIsSummary
    as [TaskIsSummary],                MSP_EpmTask_UserView.TaskFixedCost as [TaskFixedCost],                MSP_EpmTask_UserView.TaskActualFixedCost as [TaskActualFixedCost],  
                 MSP_EpmTask_UserView.TaskCost as [TaskCost],                MSP_EpmTask_UserView.TaskOvertimeCost as [TaskOvertimeCost],              
     MSP_EpmTask_UserView.TaskActualCost as [TaskActualCost],                MSP_EpmTask_UserView.TaskActualOvertimeCost as [TaskActualOvertimeCost],                MSP_EpmTask_UserView.TaskWork
    as [TaskWork],                MSP_EpmTask_UserView.TaskOvertimeWork as [TaskOvertimeWork],                MSP_EpmTask_UserView.TaskActualWork as [TaskActualWork],    
               MSP_EpmTask_UserView.TaskActualOvertimeWork as [TaskActualOvertimeWork],                MSP_EpmTask_UserView.TaskDurationVariance as [TaskDurationVariance],      
             MSP_EpmTask_UserView.TaskStartVariance as [TaskStartVariance],                MSP_EpmTask_UserView.TaskFinishVariance as [TaskFinishVariance],            
       MSP_EpmTask_UserView.TaskTotalSlack as [TaskTotalSlack],                MSP_EpmTask_UserView.TaskFreeSlack as [TaskFreeSlack],                MSP_EpmTask_UserView.TaskDuration
    as [TaskDuration],                MSP_EpmTask_UserView.TaskDurationString as [TaskDurationString],                MSP_EpmTask_UserView.TaskActualDuration as [TaskActualDuration],
                   MSP_EpmTask_UserView.TaskStartDate as [TaskStartDate],                MSP_EpmTask_UserView.TaskStartDateString as [TaskStartDateString],        
           MSP_EpmTask_UserView.TaskFinishDate as [TaskFinishDate],                MSP_EpmTask_UserView.TaskFinishDateString as [TaskFinishDateString],              
     MSP_EpmTask_UserView.TaskDeliverableStartDate as [TaskDeliverableStartDate],                MSP_EpmTask_UserView.TaskDeliverableFinishDate as [TaskDeliverableFinishDate],            
       MSP_EpmTask_UserView.TaskActualStartDate as [TaskActualStartDate],                MSP_EpmTask_UserView.TaskActualFinishDate as [TaskActualFinishDate],                MSP_EpmTask_UserView.TaskPercentCompleted
    as [TaskPercentCompleted],                MSP_EpmTask_UserView.TaskPercentWorkCompleted as [TaskPercentWorkCompleted],                MSP_EpmTask_UserView.TaskPhysicalPercentCompleted
    as [TaskPhysicalPercentCompleted],                MSP_EpmTask_UserView.TaskACWP as [TaskACWP],                MSP_EpmTask_UserView.TaskBCWP as [TaskBCWP],      
             MSP_EpmTask_UserView.TaskBCWS as [TaskBCWS],                MSP_EpmTask_UserView.TaskLevelingDelay as [TaskLevelingDelay],                MSP_EpmTask_UserView.TaskPriority
    as [TaskPriority],                MSP_EpmTask_UserView.TaskSPI as [TaskSPI],                MSP_EpmTask_UserView.TaskTCPI as [TaskTCPI],            
       MSP_EpmTask_UserView.TaskVAC as [TaskVAC],                MSP_EpmTask_UserView.TaskDeadline as [TaskDeadline],                MSP_EpmTask_UserView.TaskDurationIsEstimated
    as [TaskDurationIsEstimated],                MSP_EpmTask_UserView.TaskEAC as [TaskEAC],                MSP_EpmTask_UserView.TaskIsEffortDriven as [TaskIsEffortDriven],    
               MSP_EpmTask_UserView.TaskIsExternal as [TaskIsExternal],                MSP_EpmTask_UserView.TaskIsRecurring as [TaskIsRecurring],              
     MSP_EpmTask_UserView.TaskCostVariance as [TaskCostVariance],                MSP_EpmTask_UserView.TaskCV as [TaskCV],                MSP_EpmTask_UserView.TaskCPI as [TaskCPI],
                   MSP_EpmTask_UserView.TaskEarlyFinish as [TaskEarlyFinish],                MSP_EpmTask_UserView.TaskEarlyStart as [TaskEarlyStart],          
         MSP_EpmTask_UserView.TaskLateFinish as [TaskLateFinish],                MSP_EpmTask_UserView.TaskLateStart as [TaskLateStart],                MSP_EpmTask_UserView.TaskSV
    as [TaskSV],                MSP_EpmTask_UserView.TaskWorkVariance as [TaskWorkVariance],                MSP_EpmTask_UserView.TaskIgnoresResourceCalendar as [TaskIgnoresResourceCalendar],
                   MSP_EpmTask_UserView.TaskClientUniqueId as [TaskClientUniqueId],                MSP_EpmTask_UserView.TaskIsMarked as [TaskIsMarked],        
           MSP_EpmTask_UserView.TaskIsActive as [TaskIsActive],                MSP_EpmTask_UserView.TaskIsManuallyScheduled as [TaskIsManuallyScheduled],              
     MSP_EpmTask_UserView.TaskWBS as [TaskWBS],                MSP_EpmTask_UserView.TaskCreatedRevisionCounter as [TaskCreatedRevisionCounter],                MSP_EpmTask_UserView.TaskModifiedRevisionCounter
    as [TaskModifiedRevisionCounter],                MSP_EpmTask_UserView.TaskCreatedDate as [TaskCreatedDate],                MSP_EpmTask_UserView.TaskModifiedDate as [TaskModifiedDate],
                   MSP_EpmTask_UserView.TaskBudgetCost as [TaskBudgetCost],                MSP_EpmTask_UserView.TaskBudgetWork as [TaskBudgetWork],          
         MSP_EpmTask_UserView.TaskResourcePlanWork as [TaskResourcePlanWork],                MSP_EpmTask_UserView.TaskHyperLinkFriendlyName as [TaskHyperLinkFriendlyName],          
         MSP_EpmTask_UserView.TaskHyperLinkAddress as [TaskHyperLinkAddress],                MSP_EpmTask_UserView.TaskHyperLinkSubAddress  as [TaskHyperLinkSubAddress],          
         MSP_EpmTask_UserView.TaskRegularCost as [TaskRegularCost],                MSP_EpmTask_UserView.TaskRemainingCost as [TaskRemainingCost],                MSP_EpmTask_UserView.TaskRemainingOvertimeCost
    as [TaskRemainingOvertimeCost],                MSP_EpmTask_UserView.TaskActualRegularCost as [TaskActualRegularCost],                MSP_EpmTask_UserView.TaskRemainingRegularCost
    as [TaskRemainingRegularCost],                MSP_EpmTask_UserView.TaskRegularWork as [TaskRegularWork],                MSP_EpmTask_UserView.TaskRemainingWork as [TaskRemainingWork],
                   MSP_EpmTask_UserView.TaskRemainingOvertimeWork as [TaskRemainingOvertimeWork],                MSP_EpmTask_UserView.TaskActualRegularWork as [TaskActualRegularWork],
                   MSP_EpmTask_UserView.TaskRemainingRegularWork as [TaskRemainingRegularWork],                MSP_EpmTask_UserView.TaskRemainingDuration as [TaskRemainingDuration],
                   MSP_EpmTask_UserView.TaskCVP as [TaskCVP],                MSP_EpmTask_UserView.TaskSVP as [TaskSVP],                MSP_EpmTask_UserView.TaskCount
    as [TaskCount],                MSP_EpmTask_UserView.TaskBaseline0Cost as [TaskBaseline0Cost],                MSP_EpmTask_UserView.TaskBaseline0FixedCost as [TaskBaseline0FixedCost],
                   MSP_EpmTask_UserView.TaskBaseline0Work as [TaskBaseline0Work],                MSP_EpmTask_UserView.TaskBaseline0BudgetCost as [TaskBaseline0BudgetCost],    
               MSP_EpmTask_UserView.TaskBaseline0BudgetWork as [TaskBaseline0BudgetWork],                MSP_EpmTask_UserView.TaskBaseline0StartDate as [TaskBaseline0StartDate],    
               MSP_EpmTask_UserView.TaskBaseline0StartDateString as [TaskBaseline0StartDateString],                MSP_EpmTask_UserView.TaskBaseline0FinishDate as [TaskBaseline0FinishDate],
                   MSP_EpmTask_UserView.TaskBaseline0FinishDateString as [TaskBaseline0FinishDateString],                MSP_EpmTask_UserView.TaskBaseline0DeliverableStartDate as [TaskBaseline0DeliverableStartDate],
                   MSP_EpmTask_UserView.TaskBaseline0DeliverableFinishDate as [TaskBaseline0DeliverableFinishDate],                MSP_EpmTask_UserView.TaskBaseline0Duration as [TaskBaseline0Duration],
                   MSP_EpmTask_UserView.TaskBaseline0DurationString as [TaskBaseline0DurationString],                MSP_EpmTask_UserView.TaskBaseline1Cost as [TaskBaseline1Cost],
                   MSP_EpmTask_UserView.TaskBaseline1FixedCost as [TaskBaseline1FixedCost],                MSP_EpmTask_UserView.TaskBaseline1Work as [TaskBaseline1Work],    
               MSP_EpmTask_UserView.TaskBaseline1BudgetCost as [TaskBaseline1BudgetCost],                MSP_EpmTask_UserView.TaskBaseline1BudgetWork as [TaskBaseline1BudgetWork],    
               MSP_EpmTask_UserView.TaskBaseline1StartDate as [TaskBaseline1StartDate],                MSP_EpmTask_UserView.TaskBaseline1StartDateString as [TaskBaseline1StartDateString],  
                 MSP_EpmTask_UserView.TaskBaseline1FinishDate as [TaskBaseline1FinishDate],                MSP_EpmTask_UserView.TaskBaseline1FinishDateString as [TaskBaseline1FinishDateString],
                   MSP_EpmTask_UserView.TaskBaseline1DeliverableStartDate as [TaskBaseline1DeliverableStartDate],                MSP_EpmTask_UserView.TaskBaseline1DeliverableFinishDate
    as [TaskBaseline1DeliverableFinishDate],                MSP_EpmTask_UserView.TaskBaseline1Duration as [TaskBaseline1Duration],                MSP_EpmTask_UserView.TaskBaseline1DurationString
    as [TaskBaseline1DurationString],                MSP_EpmTask_UserView.TaskBaseline2Cost as [TaskBaseline2Cost],                MSP_EpmTask_UserView.TaskBaseline2FixedCost as [TaskBaseline2FixedCost],
                   MSP_EpmTask_UserView.TaskBaseline2Work as [TaskBaseline2Work],                MSP_EpmTask_UserView.TaskBaseline2BudgetCost as [TaskBaseline2BudgetCost],    
               MSP_EpmTask_UserView.TaskBaseline2BudgetWork as [TaskBaseline2BudgetWork],                MSP_EpmTask_UserView.TaskBaseline2StartDate as [TaskBaseline2StartDate],    
               MSP_EpmTask_UserView.TaskBaseline2StartDateString as [TaskBaseline2StartDateString],                MSP_EpmTask_UserView.TaskBaseline2FinishDate as [TaskBaseline2FinishDate],
                   MSP_EpmTask_UserView.TaskBaseline2FinishDateString as [TaskBaseline2FinishDateString],                MSP_EpmTask_UserView.TaskBaseline2DeliverableStartDate as [TaskBaseline2DeliverableStartDate],
                   MSP_EpmTask_UserView.TaskBaseline2DeliverableFinishDate as [TaskBaseline2DeliverableFinishDate],                MSP_EpmTask_UserView.TaskBaseline2Duration as [TaskBaseline2Duration],
                   MSP_EpmTask_UserView.TaskBaseline2DurationString as [TaskBaseline2DurationString],                MSP_EpmTask_UserView.TaskBaseline3Cost as [TaskBaseline3Cost],
                   MSP_EpmTask_UserView.TaskBaseline3FixedCost as [TaskBaseline3FixedCost],                MSP_EpmTask_UserView.TaskBaseline3Work as [TaskBaseline3Work],    
               MSP_EpmTask_UserView.TaskBaseline3BudgetCost as [TaskBaseline3BudgetCost],                MSP_EpmTask_UserView.TaskBaseline3BudgetWork as [TaskBaseline3BudgetWork],    
               MSP_EpmTask_UserView.TaskBaseline3StartDate as [TaskBaseline3StartDate],                MSP_EpmTask_UserView.TaskBaseline3StartDateString as [TaskBaseline3StartDateString],  
                 MSP_EpmTask_UserView.TaskBaseline3FinishDate as [TaskBaseline3FinishDate],                MSP_EpmTask_UserView.TaskBaseline3FinishDateString as [TaskBaseline3FinishDateString],
                   MSP_EpmTask_UserView.TaskBaseline3DeliverableStartDate as [TaskBaseline3DeliverableStartDate],                MSP_EpmTask_UserView.TaskBaseline3DeliverableFinishDate
    as [TaskBaseline3DeliverableFinishDate],                MSP_EpmTask_UserView.TaskBaseline3Duration as [TaskBaseline3Duration],                MSP_EpmTask_UserView.TaskBaseline3DurationString
    as [TaskBaseline3DurationString],                MSP_EpmTask_UserView.TaskBaseline4Cost as [TaskBaseline4Cost],                MSP_EpmTask_UserView.TaskBaseline4FixedCost as [TaskBaseline4FixedCost],
                   MSP_EpmTask_UserView.TaskBaseline4Work as [TaskBaseline4Work],                MSP_EpmTask_UserView.TaskBaseline4BudgetCost as [TaskBaseline4BudgetCost],    
               MSP_EpmTask_UserView.TaskBaseline4BudgetWork as [TaskBaseline4BudgetWork],                MSP_EpmTask_UserView.TaskBaseline4StartDate as [TaskBaseline4StartDate],    
               MSP_EpmTask_UserView.TaskBaseline4StartDateString as [TaskBaseline4StartDateString],                MSP_EpmTask_UserView.TaskBaseline4FinishDate as [TaskBaseline4FinishDate],
                   MSP_EpmTask_UserView.TaskBaseline4FinishDateString as [TaskBaseline4FinishDateString],                MSP_EpmTask_UserView.TaskBaseline4DeliverableStartDate as [TaskBaseline4DeliverableStartDate],
                   MSP_EpmTask_UserView.TaskBaseline4DeliverableFinishDate as [TaskBaseline4DeliverableFinishDate],                MSP_EpmTask_UserView.TaskBaseline4Duration as [TaskBaseline4Duration],
                   MSP_EpmTask_UserView.TaskBaseline4DurationString as [TaskBaseline4DurationString],                MSP_EpmTask_UserView.TaskBaseline5Cost as [TaskBaseline5Cost],
                   MSP_EpmTask_UserView.TaskBaseline5FixedCost as [TaskBaseline5FixedCost],                MSP_EpmTask_UserView.TaskBaseline5Work as [TaskBaseline5Work],    
               MSP_EpmTask_UserView.TaskBaseline5BudgetCost as [TaskBaseline5BudgetCost],                MSP_EpmTask_UserView.TaskBaseline5BudgetWork as [TaskBaseline5BudgetWork],    
               MSP_EpmTask_UserView.TaskBaseline5StartDate as [TaskBaseline5StartDate],                MSP_EpmTask_UserView.TaskBaseline5StartDateString as [TaskBaseline5StartDateString],  
                 MSP_EpmTask_UserView.TaskBaseline5FinishDate as [TaskBaseline5FinishDate],                MSP_EpmTask_UserView.TaskBaseline5FinishDateString as [TaskBaseline5FinishDateString],
                   MSP_EpmTask_UserView.TaskBaseline5DeliverableStartDate as [TaskBaseline5DeliverableStartDate],                MSP_EpmTask_UserView.TaskBaseline5DeliverableFinishDate
    as [TaskBaseline5DeliverableFinishDate],                MSP_EpmTask_UserView.TaskBaseline5Duration as [TaskBaseline5Duration],                MSP_EpmTask_UserView.TaskBaseline5DurationString
    as [TaskBaseline5DurationString],                MSP_EpmTask_UserView.TaskBaseline6Cost as [TaskBaseline6Cost],                MSP_EpmTask_UserView.TaskBaseline6FixedCost as [TaskBaseline6FixedCost],
                   MSP_EpmTask_UserView.TaskBaseline6Work as [TaskBaseline6Work],                MSP_EpmTask_UserView.TaskBaseline6BudgetCost as [TaskBaseline6BudgetCost],    
               MSP_EpmTask_UserView.TaskBaseline6BudgetWork as [TaskBaseline6BudgetWork],                MSP_EpmTask_UserView.TaskBaseline6StartDate as [TaskBaseline6StartDate],    
               MSP_EpmTask_UserView.TaskBaseline6StartDateString as [TaskBaseline6StartDateString],                MSP_EpmTask_UserView.TaskBaseline6FinishDate as [TaskBaseline6FinishDate],
                   MSP_EpmTask_UserView.TaskBaseline6FinishDateString as [TaskBaseline6FinishDateString],                MSP_EpmTask_UserView.TaskBaseline6DeliverableStartDate as [TaskBaseline6DeliverableStartDate],
                   MSP_EpmTask_UserView.TaskBaseline6DeliverableFinishDate as [TaskBaseline6DeliverableFinishDate],                MSP_EpmTask_UserView.TaskBaseline6Duration as [TaskBaseline6Duration],
                   MSP_EpmTask_UserView.TaskBaseline6DurationString as [TaskBaseline6DurationString],                MSP_EpmTask_UserView.TaskBaseline7Cost as [TaskBaseline7Cost],
                   MSP_EpmTask_UserView.TaskBaseline7FixedCost as [TaskBaseline7FixedCost],                MSP_EpmTask_UserView.TaskBaseline7Work as [TaskBaseline7Work],    
               MSP_EpmTask_UserView.TaskBaseline7BudgetCost as [TaskBaseline7BudgetCost],                MSP_EpmTask_UserView.TaskBaseline7BudgetWork as [TaskBaseline7BudgetWork],    
               MSP_EpmTask_UserView.TaskBaseline7StartDate as [TaskBaseline7StartDate],                MSP_EpmTask_UserView.TaskBaseline7StartDateString as [TaskBaseline7StartDateString],  
                 MSP_EpmTask_UserView.TaskBaseline7FinishDate as [TaskBaseline7FinishDate],                MSP_EpmTask_UserView.TaskBaseline7FinishDateString as [TaskBaseline7FinishDateString],
                   MSP_EpmTask_UserView.TaskBaseline7DeliverableStartDate as [TaskBaseline7DeliverableStartDate],                MSP_EpmTask_UserView.TaskBaseline7DeliverableFinishDate
    as [TaskBaseline7DeliverableFinishDate],                MSP_EpmTask_UserView.TaskBaseline7Duration as [TaskBaseline7Duration],                MSP_EpmTask_UserView.TaskBaseline7DurationString
    as [TaskBaseline7DurationString],                MSP_EpmTask_UserView.TaskBaseline8Cost as [TaskBaseline8Cost],                MSP_EpmTask_UserView.TaskBaseline8FixedCost as [TaskBaseline8FixedCost],
                   MSP_EpmTask_UserView.TaskBaseline8Work as [TaskBaseline8Work],                MSP_EpmTask_UserView.TaskBaseline8BudgetCost as [TaskBaseline8BudgetCost],    
               MSP_EpmTask_UserView.TaskBaseline8BudgetWork as [TaskBaseline8BudgetWork],                MSP_EpmTask_UserView.TaskBaseline8StartDate as [TaskBaseline8StartDate],    
               MSP_EpmTask_UserView.TaskBaseline8StartDateString as [TaskBaseline8StartDateString],                MSP_EpmTask_UserView.TaskBaseline8FinishDate as [TaskBaseline8FinishDate],
                   MSP_EpmTask_UserView.TaskBaseline8FinishDateString as [TaskBaseline8FinishDateString],                MSP_EpmTask_UserView.TaskBaseline8DeliverableStartDate as [TaskBaseline8DeliverableStartDate],
                   MSP_EpmTask_UserView.TaskBaseline8DeliverableFinishDate as [TaskBaseline8DeliverableFinishDate],                MSP_EpmTask_UserView.TaskBaseline8Duration as [TaskBaseline8Duration],
                   MSP_EpmTask_UserView.TaskBaseline8DurationString as [TaskBaseline8DurationString],                MSP_EpmTask_UserView.TaskBaseline9Cost as [TaskBaseline9Cost],
                   MSP_EpmTask_UserView.TaskBaseline9FixedCost as [TaskBaseline9FixedCost],                MSP_EpmTask_UserView.TaskBaseline9Work as [TaskBaseline9Work],    
               MSP_EpmTask_UserView.TaskBaseline9BudgetCost as [TaskBaseline9BudgetCost],                MSP_EpmTask_UserView.TaskBaseline9BudgetWork as [TaskBaseline9BudgetWork],    
               MSP_EpmTask_UserView.TaskBaseline9StartDate as [TaskBaseline9StartDate],                MSP_EpmTask_UserView.TaskBaseline9StartDateString as [TaskBaseline9StartDateString],  
                 MSP_EpmTask_UserView.TaskBaseline9FinishDate as [TaskBaseline9FinishDate],                MSP_EpmTask_UserView.TaskBaseline9FinishDateString as [TaskBaseline9FinishDateString],
                   MSP_EpmTask_UserView.TaskBaseline9DeliverableStartDate as [TaskBaseline9DeliverableStartDate],                MSP_EpmTask_UserView.TaskBaseline9DeliverableFinishDate
    as [TaskBaseline9DeliverableFinishDate],                MSP_EpmTask_UserView.TaskBaseline9Duration as [TaskBaseline9Duration],                MSP_EpmTask_UserView.TaskBaseline9DurationString
    as [TaskBaseline9DurationString],                MSP_EpmTask_UserView.TaskBaseline10Cost as [TaskBaseline10Cost],                MSP_EpmTask_UserView.TaskBaseline10FixedCost as
    [TaskBaseline10FixedCost],                MSP_EpmTask_UserView.TaskBaseline10Work as [TaskBaseline10Work],                MSP_EpmTask_UserView.TaskBaseline10BudgetCost as [TaskBaseline10BudgetCost],
                   MSP_EpmTask_UserView.TaskBaseline10BudgetWork as [TaskBaseline10BudgetWork],                MSP_EpmTask_UserView.TaskBaseline10StartDate as [TaskBaseline10StartDate],
                   MSP_EpmTask_UserView.TaskBaseline10StartDateString as [TaskBaseline10StartDateString],                MSP_EpmTask_UserView.TaskBaseline10FinishDate as [TaskBaseline10FinishDate],
                   MSP_EpmTask_UserView.TaskBaseline10FinishDateString as [TaskBaseline10FinishDateString],                MSP_EpmTask_UserView.TaskBaseline10DeliverableStartDate as
    [TaskBaseline10DeliverableStartDate],                MSP_EpmTask_UserView.TaskBaseline10DeliverableFinishDate as [TaskBaseline10DeliverableFinishDate],                MSP_EpmTask_UserView.TaskBaseline10Duration
    as [TaskBaseline10Duration],                MSP_EpmTask_UserView.TaskBaseline10DurationString as [TaskBaseline10DurationString],                MSP_EpmTask_UserView.[Health] as
    [Health],                MSP_EpmResource_UserView.ResourceName as [ResourceName],                MSP_EpmResource_UserView.ResourceType as [ResourceType],        
           MSP_EpmResource_UserView.ResourceIsTeam as [ResourceIsTeam],                MSP_EpmResource_UserView.[Resource Departments] as [Resource Departments],            
         MSP_EpmResource_UserView.[RBS] as [RBS],                  MSP_EpmResource_UserView.ResourceCostCenter as [ResourceCostCenter],                MSP_EpmAssignment_UserView.AssignmentCost
    as [AssignmentCost],                MSP_EpmAssignment_UserView.AssignmentWork as [AssignmentWork],                MSP_EpmAssignment_UserView.AssignmentActualWork as [AssignmentActualWork],
                   MSP_EpmAssignment_UserView.AssignmentPercentWorkCompleted as [AssignmentPercentWorkCompleted],                MSP_EpmAssignment_UserView.AssignmentStartDate as [AssignmentStartDate],
                   MSP_EpmAssignment_UserView.AssignmentFinishDate as [AssignmentFinishDate],                MSP_EpmAssignment_UserView.AssignmentActualStartDate as [AssignmentActualStartDate],
                   MSP_EpmAssignment_UserView.AssignmentActualFinishDate as [AssignmentActualFinishDate],                MSP_EpmAssignment_UserView.AssignmentType as [AssignmentType],
                   MSP_EpmAssignment_UserView.AssignmentResourceType as [AssignmentResourceType],                MSP_EpmAssignment_UserView.AssignmentIsOverallocated as [AssignmentIsOverallocated],
                   MSP_EpmAssignment_UserView.AssignmentModifiedDate as [AssignmentModifiedDate],                MSP_EpmAssignment_UserView.AssignmentResourcePlanWork as [AssignmentResourcePlanWork],
                   MSP_EpmAssignment_UserView.AssignmentRemainingCost as [AssignmentRemainingCost],                MSP_EpmAssignment_UserView.AssignmentRemainingWork as [AssignmentRemainingWork]
                FROM                dbo.MSP_EpmProject_UserView             INNER JOIN dbo.MSP_EpmTask_UserView ON              
     MSP_EpmProject_UserView.ProjectUID = MSP_EpmTask_UserView.ProjectUID             LEFT OUTER JOIN                dbo.MSP_EpmAssignment_UserView ON          
            MSP_EpmTask_UserView.TaskUID = MSP_EpmAssignment_UserView.TaskUID                   AND MSP_EpmTask_UserView.ProjectUID = MSP_EpmAssignment_UserView.ProjectUID        
        LEFT OUTER JOIN                dbo.MSP_EpmResource_UserView ON                   MSP_EpmAssignment_UserView.ResourceUID = MSP_EpmResource_UserView.ResourceUID
                ORDER BY                MSP_EpmProject_UserView.ProjectName,                MSP_EpmTask_UserView.TaskIndex,        
           MSP_EpmTask_UserView.TaskName          

  • Change Documents in HU status management

    I've been trying to activate change documents on HU status management (object type HUM). The user status profile that I set up works fine (except of course for the logging of the user status changes).  Now, I suppose there must be a pretty standard (and maybe even straight-forward) way to activate the change documents for this object, but I simply don't see it. For this object, I get no entries in the JSTO/JEST tables, but in the HUSTOBJ/HUSSTAT.  I however can not get to the point that the flag in field HUSTOBJ-CHGKZ is activated via standard customizing.
    On the pop-up screen when selecting the HU status info, there's a check-box foreseen (however greyed-out) for the change documents, so, I guess the functionality is fully supported.
    Can anyone guide me in the right direction?

    Dear Patrick,
    in the SAP-standard it is only possible to check the change documents
    for the HU (in transaction HUMO, in the menu: Goto -> Chnge docs), but
    there are no change documents for the status changes.
    The reason the field is greyed out is that this functionality has not
    been developed. It is a missing functionality. It would be only possible
    via a modification to activate change documents for status changes of
    the HU.
    Regards,
    Ely

  • Trigerring workflow through status management

    Hi Abappers,
            I am new to workflow, can any body tell me how to trigger a workflow using.
          1. Change Management Document
          2. Status Management.
    Regards,
    Narendiran Rathinavelu.

    Dear Narendiran
    Got it..No need to create your own Object.There is a object called "ZBUS2012" for purchase order  (Go to SWO1 you will find it in Object reposatory browser)Take its "Realeased" Event as your triggering event and u r done.
    And if you still wanna use your own object then use method "create_event*" to fire your own event and take that event as your triggering event in workflow
    Hope this will help
    Also sent one good ppt for basic workflow design..refer it..
    Reward points please
    Regards
    Message was edited by: Tushar Mundlik

  • Error Message : Object does not exist (status management)

    Hi Gurus,
    I am working on tcode IW52(Change Notifications). and using badi's for validations at different points.
    1. Order level,
    2. Notification,
    3. Task level validations.
    In the task level validations, I have an requirement that if certain condition is met, than user should not be able to delete the task. I have no problem doing that, I am able to restrict it.
    Now the issue is :
    Say you have 6 tasks, and condition is met for the 5th task and I try to delete it. then the error message "can not delete task" is getting triggered from the badi.
    and after this error message if you try to do any functionality on the 6th task, I am experiencing error message "Object does not exist (status management)".
    Is anyone aware of this error message, any suggestions are highly appreciated.
    Thanks in advance.
    Shrikant
    Edited by: Alvaro Tejada Galindo on Mar 17, 2008 1:56 PM

    Hi ,
    You have posted this question long back that is one and half year back nearly.
    You got an error message in IW52 stating Object does not exist ( status management ).
    Now iam also facing the same problem in iw22 transaction. Can you say me how you solved if you remember.

  • Regarding status management

    Hi,
    I have a situation, wherein when a sales order is created, it is assigned a user status of CRTD using status management configuration. My requirement is to track a particular document's user status or system status to trigger a workflow if the document is complete with respect to header and item level info, and the status is in CRTD. I can check the completeness from VBUK table, but does anyone know as to which table the status profile values are stored in? Thanks for the help in advance.
    Regards,
    Vijay

    Hi ,
    Check the table JSTO & Jest table.
    Also check the FM STATUS_READ
    Thanks
    Rajeev

  • Equipment serial number status management

    Hello All,
    I have a case:
    We have the status management of the equiment serial number  for instrument.
    Material number: 8000001
    Equipment Number: 300026058
    Serial Number:Q090909
    Each goods movement  will update the status and the stock information of the equipment, and the specifically operation can be done at each status.
    We had purchased this equiment from a affiliated company,and it had been sent to the consignment storage location, but two weeks ago,our logistic team returned an equiment to the vendor with this serial number Q090909, and the relevant status have been updated accordingly, now the system still show us there is an equiment at the customer side(due to we don't issue the consignment pick up order to get the physical goods from the customer), so we have to finish the consignment pick up order process,but due to the status issue of the serial number, we can't handled the equiment.
    And also we can't change the status with the transaction IQ02.
    Is there any other way to solve this problem?
    Thanks&Regards,
    Don

    Hi Don,
    If you have authorization then follow the steps given below
    Go to SE16 --> Table "JEST"
    There you have to enter the "Object number"
    Generally object number is like "IE0000000000XXXXXXXX"
    *XXXXXXXX = Equipment number
    If its not taking by the system then run JEST freely and see the pattern of object number and then enter your object number
    In my case I have found that the last eight number was Equipmnt number.
    Once you enter then on next screen, you will see 5 fields
    Client Object number            Status Status Inact. Change number
    In change mode put "X" in status Inact for every entry except the two givn below
    I0184
    I0188
    Regards,
    MT

  • Disable Status Manager Approval

    I Have the Task Status Manager Approval set to disabled but the person who published the project is seeing task approvals in the Approval Center.  Is this the designed behavior?
    The behavior I want is when someone submits their timesheet, I want it to go straight to the timesheet manager for approval.

    John --
    The flaw in your assumption about Project Server 2013 is that people can fill in Timesheets about task work, and then NOT have the task work update the relevant project.  The Project Server 2013 system is programmed to do the exact opposite of what
    you want.  When a team member fills out and submits a timesheet containing task progress, the system automatically sends an approval update request to the project manager.  The project manager can see these pending approvals in the Approval Center
    page in PWA, where he/she can approve or reject the task updates.  Once the task updates are approved, the system pushes the task update data into the project.
    The only way to avoid this behavior is to capture top-level data in timesheets from your team members.  By doing this, your team members can enter hours worked on the project as a whole, but not enter progress against individual tasks.
    Hope this helps.
    Dale A. Howard [MVP]

  • Status Manager automatically changing

    MSP Professional 2010 on a PWA server.
    Users are reporting that the "Status Manager" field on their projects are changing for all task  This has happened twice, both times the person it changes to advises they have never even opened the project much less added task to it.
    Seen it multiple times I open a project - not add any task just open it and the status manager changes to their name. 
    Do we have something set up wrong or gremlins?  Any insight on what to look for would be appreciated

    Ibrash,
    I am guessing that you are seeing this happen on 'Summary Tasks', which is by design. I can't remember the reason, but I think this was changed many many versions ago, to show the summary tasks' status manger to be the person who opens the schedule. Since
    Summary Resources are not recommended to have resource assigned,  this should not impact you any way.
    If I am off the mark completely, and you are seeing this on the subtasks as wll, pleae let me know.
    Cheers,
    Prasanna Adavi, Project MVP
    Blog:
      Podcast:
       Twitter:   
    LinkedIn:
      

  • Internal Order Status Management

    Hi All,
             I'm having a query regarding Status Management of Internal Orders.We have created a User Status starting from 10 till 50  to go alongwith the system status. We want a scenario wherein the user cannot change the status from 10 to 20 till such time the BUDGETING PROCESS is not completed at stage 10. Can we do the same by playing in the User Status Management or do we need to invoke User Exits? Please suggest.
    Regards,
    Prathamesh.

    Prathamesh,
    In status profile, at each step if you double click, it takes you transaction control. In this screen you can configure which Business transactions that need to be allowed (Influence) and what are the next actions (steps) that can be performed.
    Pl. review the configuration elements and let me know if you still need more inputs
    Regards,
    Som

Maybe you are looking for

  • Remote Desktop windows 7 ultimate can't use two monitors

    i have two computers in another office that remote into two other computers here at my site, all 4 computers run windows 7 ultimate, about a week to 10 days ago the two remote computers can still connect to the computers at my site but can only use o

  • IDOC- XI- FILE(s) 1..n mapping problem

    I am working on a IDOC->XI->FILES scenario and am stuck on mapping of idoc segments to output structure. IDOC structure is as following, WBBDLD05 (1..1)      IDOC (1..1)           EDI_DC40 (1..1)           E1WBB01 (1..10000) ... so the idoc being sen

  • Images being compressed or resized before printing ??

    I have a 50MB PNG image that I just printed using the built in Kodak printing system. When the image was actually being uploaded, though, it was only 3.2MB in size. What happened to the photo? Did it get converted to a JPEG or PDF? Was it resized? Wh

  • Hyperlinks to files iWeb 09

    I am trying to set up hyperlinks to pdf files on my computer using iWeb09. When I select the text for the hyperlink and go to the inspector and link to the file "application.pdf" the text on the web page changes to the file name. Is that what is supp

  • CompareTo method to compare files

    I have to compare each line from two files and say whether the lines are different or not. I don't exactly understand how to use the compareTo method in this type of situation. I'd appreciate any help. import java.util.*; import java.io.*; import jav