Joe, All,
we have written a code for bulk update of users from a CSV file. It updates each attribute and checks if update is a success by trying to commit and then writes a success/ failure message on to a log file accordingly.
Now, the problem is recently we noticed that for some attributes, even though the log file showed that the attribute update was a success, on checking the AD no changes were reflected there.
The code is very basic, in a gist the code is
Attribute = value;
try(commit){//log update success and continue;}
catch{//log update failure}
FYI - there are nearly 2500 user objects updated.
Any suggestions on this as to why it might happen?
Thanks,
Ajit S