Moving account to different ou in LDAP,AD by IDM
Hi, all
I have problem to ask everyone again.. Coz I'm very newbie in IDM.
Now my project is neary finish but it's still has problem that i can't solve.
I had reconcile user from Sybase in to IDM and Provision all account to LDAP and AD using single workflow form.. It's work
the problem is after this..
I have to enable ActiveSync with Sybase that polling to check the std_status of all user in Sybase ( all are students )
when student is graduate the std_status is change from 'S' --> 'G'
My objective is move account in IDM LDAP and AD from StudentOU to AlumniOU..
My colleague suggest that I can only one ActiveSync form to do this
but I try and can't make it work.
My code is look like this.. ( ActiveSync enable on Sybase )
<defvar name='status'>
<switch>
<trim><ref>activeSync.stdstatus</ref></trim>
<case>
<s>G</s>
<s>Alumni</s>
</case>
<case>
<s>S</s>
<s>Student</s>
</case>
</switch>
</defvar>
<Field name='update_fields'>
<Field name='waveset.organization'>
<Expansion>
<cond>
<eq>
<ref>status</ref>
<s>Alumni</s>
</eq>
<s>Top:Alumni</s>
<s>Top:Student</s>
</cond>
</Expansion>
</Field>
<Field name='accounts[LDAP].identity'>
<Expansion>
<concat>
<s>uid=</s>
<trim><ref>activeSync.accountId</ref></trim>
<cond>
<eq>
<ref>status</ref>
<s>Allumni</s>
</eq>
<s>,ou=Alumni,dc=ibO,dc=com</s>
<s>,ou=Student,dc=ibO,dc=com</s>
</cond>
</concat>
</Expansion>
</Field>
<Field name='accounts[AD].identity'>
<Expansion>
<concat>
<s>cn=</s>
<trim><ref>activeSync.accountId</ref></trim>
<cond>
<eq>
<ref>status</ref>
<s>Allumni</s>
</eq>
<s>,ou=Alumni,dc=ibO,dc=com</s>
<s>,ou=Student,dc=ibO,dc=com</s>
</cond>
</concat>
</Expansion>
</Field>
</Field>
This form effect only account in IDM but in LDAP and AD it's doesn't affect anything.
I understand that changing account identity in IDM isn't enough to change ou in LDAP and AD but I don't know how to do this better..
Does anyone have suggestion ?
Do I have to perform this by using Workflow ? I don't have any experience in coding workflow. Plz give me some example and how to config IDM to use that workflow..
Thx for every attentions..
I'm waiting for ur valuable suggestion.

