CA Service Management

  • 1.  Change order update-restrict

    Posted Jan 06, 2017 06:25 AM

    Hi ,

     

    I need a help. I want to restrict the change order update in certain status ( for ex: CO' s in approval in progress status').

     

    CO's which all are in Approval in progress status should not be updated by analysts, it cannot be edited by analysts.

     

    please suggest best way to achieve this.



  • 2.  Re: Change order update-restrict

    Posted Jan 06, 2017 06:28 AM

    Hi,

    data partitions is way.

    You can create constraint for Change table with Update restricition for specified statuses.

    Regards.



  • 3.  Re: Change order update-restrict

    Posted Jan 06, 2017 06:50 AM

    hi,

     

    could you please help me with that condition here,



  • 4.  Re: Change order update-restrict

    Posted Jan 06, 2017 07:32 AM

    Here is an example:



  • 5.  Re: Change order update-restrict

    Posted Jan 06, 2017 08:00 AM

    Thank you very much.. Let me check this in my QC.



  • 6.  Re: Change order update-restrict

    Posted Jan 06, 2017 08:55 AM

    Hi, 

     

    Status change has been configured based on work flow task approvals. shall i place this same condition for Workflowtask_request table which has status ' Pending' so that even work flow cannot be edited. please suggest.



  • 7.  Re: Change order update-restrict

    Posted Jan 06, 2017 05:21 PM

    Sure you can  If this meets your requriements,

    constraint could be:

    chg.status != 'APP'

     

    Regards.



  • 8.  Re: Change order update-restrict

    Posted Jan 09, 2017 06:14 AM

    Hi, 

     

    Thanks for help. I need one more help on this. I placed below condition to approve workflow tasks where change status in "CAB Review". 

     SQL Translation:

    Workflow_Task.status IN ( 'WAIT' , 'PEND' , 'uWIP' , 'HOLD' ) and Workflow_Task.object_id = Change_Request.id AND Change_Request.status ! = 'uCAB'

     

    I actually want the Change orders to be updated which are in CAB Review status and not in other status, please help.



  • 9.  Re: Change order update-restrict

    Posted Jan 09, 2017 06:18 AM

    And the Relevant work flow tasks should be updated where CO is in " CAB Review" status and not in other status.



  • 10.  Re: Change order update-restrict

    Posted Jan 10, 2017 08:57 AM

    Seems I missed something, if you want to give possibility to update in a single status you can define conditions as:

     

    Table: Change_Request

    Type: Update

    Constraint: status = '<status_code>'

     

    and the same for workflow tasks, where constraint will be: chg.status = '<status_code>'



  • 11.  Re: Change order update-restrict

    Posted Jan 10, 2017 06:21 AM

    please help.



  • 12.  Re: Change order update-restrict

    Posted Jan 06, 2017 09:01 AM

    Object name: Workflow_Task.