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

Cannot save custom defined Approval procedures

Hi all,

I'm trying to implement a custom defined Approval procedure with a custom query to insert into my approval workflow but when I try to save it it gave me error: 

[810077] PWODecisionRule: The following fields are compulsory and need to be filled: Approval procedure.

But there is no field to insert the name of the Approval procedure i just created.

How can I do that?

In attachment a screenshot from the manager

Thanks

Parents
  • Hi,

    It could be that the condition is not valid ...... usually you have to reference the PWO ..... here is an example:

    select uid_personhead as UID_Person,

                null as UID_PWORulerOrigin

          from Person

                where uid_person=(

                      select CustomProperty02

                      from PersonWantsOrg

                      where UID_PersonWantsOrg=@UID_PersonWantsOrg

                )

    UNION ALL

    select uid_personhead as UID_Person,

                null as UID_PWORulerOrigin

          from Person

                where uid_person=(

                      select CustomProperty01

                      from PersonWantsOrg

                      where UID_PersonWantsOrg=@UID_PersonWantsOrg

                )

    In V7 the 'null as UID_PWORulerOrigin' is required.

    HTH, Barry.

Reply
  • Hi,

    It could be that the condition is not valid ...... usually you have to reference the PWO ..... here is an example:

    select uid_personhead as UID_Person,

                null as UID_PWORulerOrigin

          from Person

                where uid_person=(

                      select CustomProperty02

                      from PersonWantsOrg

                      where UID_PersonWantsOrg=@UID_PersonWantsOrg

                )

    UNION ALL

    select uid_personhead as UID_Person,

                null as UID_PWORulerOrigin

          from Person

                where uid_person=(

                      select CustomProperty01

                      from PersonWantsOrg

                      where UID_PersonWantsOrg=@UID_PersonWantsOrg

                )

    In V7 the 'null as UID_PWORulerOrigin' is required.

    HTH, Barry.

Children
No Data