This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

How to get the response from custom process through approval workflow

 
I am trying to implement the "Approval of AD group create request" workflow. In my case, my first level approval is recipient's manager and once the manager approves the request I am calling the custom process (for which I have used "EX" and provided the custom process event name) which will add the user in the Person table. My custom process is getting triggered and the user is getting inserted in the Person table but even if the process has been executed, request status is still Pending and showing "The next decision step is currently being calculated. The request might also be waiting on a pending decision of another request." How can I get the decision from my process and mark this request as Granted/Assigned

Parents
  • The thing is. You have to create the approval workflow and call your event (lets say PWO_XXXX) with EX. Your event will be launched from PersonWantsOrg table and that event have to generate your proccess to be launched.
    If your process is not being launched check gen conditions in the process.

    1st step of tour process: HandleObjectComponent -insert in table person (be sure to fill firstname and last name)
    2nd step of your process: HandleObjectComponent - CallMethod.

    To test if your process is working go to objectbrowser, select from personwantsorgtable your "Requested" pwo and launch from objectborwser your event (PWO_XXXXX)
Reply
  • The thing is. You have to create the approval workflow and call your event (lets say PWO_XXXX) with EX. Your event will be launched from PersonWantsOrg table and that event have to generate your proccess to be launched.
    If your process is not being launched check gen conditions in the process.

    1st step of tour process: HandleObjectComponent -insert in table person (be sure to fill firstname and last name)
    2nd step of your process: HandleObjectComponent - CallMethod.

    To test if your process is working go to objectbrowser, select from personwantsorgtable your "Requested" pwo and launch from objectborwser your event (PWO_XXXXX)
Children
No Data