Event for PersonWantsOrg for product with "Valid From" in the future

When we leave ValidFrom field empty event ORDERGRANTED is fired (OrderState=Assigned in this case).

Which event should we listen for when ValidFrom is setup to date from the future (OrderState=Granted in PersonWantsOrg).?We've tried GRANTED event but it wont work (process on this event is not fired).

Parents
  • Try to use the event ORDERFINISHED. I think that should do the trick, but it depends on your GenConditions.

    Question is, how did you ensure, that the event wasn't fired at all?

    Did you created and checked a JobEventGen.log to ensure that the event wasn't fired?
  • Hello Markus,

    we need to send an additional notification when the last approval step is approved, but ValidFrom is in the future (OrderState=Waiting/Pending). ORDEGRANTED only fires once the order is assigned after ValidFrom is reached.

    Is the Event ORDERFINISHED supported in v7.1.3+ for this purpose? Can we just create our own QBMEvent with that name and assign it to our process?

    As an alternative, we would use the event GRANTED with a generating condition like $OrderState$="Waiting", but we feel like this would cause a lot of unnecessary evaluation overhead during the request procedure.

Reply
  • Hello Markus,

    we need to send an additional notification when the last approval step is approved, but ValidFrom is in the future (OrderState=Waiting/Pending). ORDEGRANTED only fires once the order is assigned after ValidFrom is reached.

    Is the Event ORDERFINISHED supported in v7.1.3+ for this purpose? Can we just create our own QBMEvent with that name and assign it to our process?

    As an alternative, we would use the event GRANTED with a generating condition like $OrderState$="Waiting", but we feel like this would cause a lot of unnecessary evaluation overhead during the request procedure.

Children