Hi All,
I am developing few BPEL process with Human Task using Oracle BPEL 12c , and I want it to be assigned to users using the payload attribute using expression assignment. As per the payload I would get the username and department e.g. DEPT1/user1,DEPT1/user2 , DEPT2/user1 etc...
We are using OpenLDAP and the users are managed as part of different Departments, which means I would need multiple base user dn's to be configured, to make them available in weblogic for Human Task assignment.
My OpenLDAP structure is something like this.
DEPARTMENT 1:
ou=DEPT1,cn=Organisations,dc=mmu,dc=moh,dc=abc,dc=zn
cn=Users,ou=DEPT1,cn=Organisations,dc=mmu,dc=moh,dc=abc,dc=zn
uid=user1,cn=Users,ou=DEPT1,cn=Organisations,dc=mmu,dc=moh,dc=abc,dc=zn
uid=user2,cn=Users,ou=DEPT1,cn=Organisations,dc=mmu,dc=moh,dc=abc,dc=zn
DEPARTMENT 2:
ou=DEPT2,cn=Organisations,dc=mmu,dc=moh,dc=abc,dc=zn
cn=Users,ou=DEPT1,cn=Organisations,dc=mmu,dc=moh,dc=abc,dc=zn
uid=user1,cn=Users,ou=DEPT2,cn=Organisations,dc=mmu,dc=moh,dc=abc,dc=zn
uid=user2,cn=Users,ou=DEPT2,cn=Organisations,dc=mmu,dc=moh,dc=abc,dc=zn
I could not figure out how can this be done. Has anyone come across such a situation and how was this handled.