Clarity

 View Only
  • 1.  Not able to Start Process when Budget Plan is approved

    Posted Oct 09, 2015 03:42 AM

    Hello CA PPM Team,

     

    I have to Start a Process when ever any Cost Plan which is Plan of record is Approved for Budget plan. I am not able to Get the start condition for it.

    When ever any Budget Plan approved It will Start One process.. As It is also In Cost Plan Object So not able to do it..

     

    Please Suggest Some Solution How we can Achieve it.

     

    Thanks

    AD



  • 2.  Re: Not able to Start Process when Budget Plan is approved

    Posted Oct 09, 2015 04:11 AM

    Can you create a checkbox attribute ? You can start the process when the checkbox is checked

     

    NJ



  • 3.  Re: Not able to Start Process when Budget Plan is approved
    Best Answer

    Broadcom Employee
    Posted Oct 09, 2015 05:01 AM

    Your object should be the Cost Plan object.

    Your start options should be: auto-start on update, with conditions: plan type code = budget and plan status code = approved.



  • 4.  Re: Not able to Start Process when Budget Plan is approved

    Posted Oct 09, 2015 09:27 AM

    Thank Lennart,

     

    I put condition as:

    (

    ( costplan.status_code == costplan.status_code__oldValue ) &&

    (( costplan.plan_type_code ==  lookup("FIN_PLAN_TYPE", "BUDGET") ) &&

    ( costplan.status_code ==  lookup("FIN_PLAN_STATUS", "APPROVED") ) &&

    (costplan.is_plan_of_record == 1))

    )

     

    It Worked Properly