<div dir="ltr">I double-checked everything, the objectTemplate to create the accounts is proper, same as my csv template.<div><br></div><div>When I am looking at the Shadow details for the resource, the 4 users in my table have a state "nothing" even though 2 of the users have the level_ as 2 or 3</div><div><br></div><div><table class="" style="width:auto" id="id2e8f"><thead><tr><th>State</th>
<th>Count</th>
<th>State</th>
<th>Count</th>
<th>State</th>
<th>Count</th>
</tr></thead>
<tbody>
<tr>
<td>Deleted</td>
<td>0</td>
<td>Linked</td>
<td>0</td>
<td>Unmatched</td>
<td>0</td>
</tr>
<tr>
<td>Disputed</td>
<td>0</td>
<td>Unlinked</td>
<td>0</td>
<td>Nothing</td>
<td>4</td>
</tr>
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
<td><b>Total</b></td>
<td><b>4</b></td></tr></tbody></table></div></div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Dec 5, 2014 at 12:02 PM, Jason Everling <span dir="ltr"><<a href="mailto:jeverling@bshp.edu" target="_blank">jeverling@bshp.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">It was because the A, B, C, H didnt exist in the database, when I removed those levels it doesn't error but it also does not create accounts for the ones that have a matching level like 2 or 3<span class="HOEnZb"><font color="#888888"><div><br></div><div>JASON</div></font></span></div><div class="HOEnZb"><div class="h5"><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Dec 5, 2014 at 11:46 AM, Jason Everling <span dir="ltr"><<a href="mailto:jeverling@bshp.edu" target="_blank">jeverling@bshp.edu</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr">I was trying something like that but didnt get anywhere,<div><br></div><div>I have,</div><div><br></div><div><div><span style="white-space:pre-wrap"> </span><condition></div><div><span style="white-space:pre-wrap"> </span><script></div><span><div><span style="white-space:pre-wrap"> </span><code></div><div><span style="white-space:pre-wrap"> </span>tmp = basic.getAttributeValue(shadow, '<a href="http://midpoint.evolveum.com/xml/ns/public/connector/icf-1/resource-schema-3" target="_blank">http://midpoint.evolveum.com/xml/ns/public/connector/icf-1/resource-schema-3</a>', 'level_');</div></span><div><span style="white-space:pre-wrap"> </span>return (tmp == 2 || tmp == 3 || tmp == 4 || tmp == 5 || tmp == A || tmp == B || tmp == C || tmp == H)</div><div><span style="white-space:pre-wrap"> </span></code></div><div><span style="white-space:pre-wrap"> </span></script></div><div><span style="white-space:pre-wrap"> </span></condition></div></div><div><br></div><div>And get error,</div><div><br></div><div><div>ERROR (com.evolveum.midpoint.model.common.expression.Expression): Error evaluating expression in condition in object synchronization null: groovy.lang.MissingPropertyException: No such property: A for class: Script42 (new) condition in object synchronization null</div><div>com.evolveum.midpoint.util.exception.ExpressionEvaluationException: groovy.lang.MissingPropertyException: No such property: A for class: Script42 (new) condition in object synchronization null</div></div></div><div><div><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Dec 5, 2014 at 11:19 AM, Ivan Noris <span dir="ltr"><<a href="mailto:ivan.noris@evolveum.com" target="_blank">ivan.noris@evolveum.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div bgcolor="#FFFFFF" text="#000000">
Hi Jason,<br>
<br>
I would do this:<br>
<br>
. . .<br>
<code><br>
tmp = basic.getAttributeValue(shadow, '<a href="http://midpoint.evolveum.com/xml/ns/public/connector/icf-1/resource-schema-3" target="_blank">http://midpoint.evolveum.com/xml/ns/public/connector/icf-1/resource-schema-3</a>',
'level_');<br>
<br>
return (tmp == 2 || tmp == 3 || tmp == 4 | ...)<br>
</code><br>
. . .<br>
<br>
Regards,<br>
I.<div><div><br>
<br>
<div>On 12/05/2014 04:12 PM, Jason Everling
wrote:<br>
</div>
</div></div><blockquote type="cite"><div><div>
<div dir="ltr">I was trying to add a condition to the
synchronization element,
<div><br>
</div>
<div>Here is what I got, there is a column in the table level_ ,
I only want to sync users that have those specific values</div>
<div><br>
</div>
<div>
<div><span style="white-space:pre-wrap"> </span><condition></div>
<div><span style="white-space:pre-wrap"> </span><script></div>
<div><span style="white-space:pre-wrap"> </span><code></div>
<div><span style="white-space:pre-wrap"> </span>basic.getAttributeValue(shadow,
'<a href="http://midpoint.evolveum.com/xml/ns/public/connector/icf-1/resource-schema-3" target="_blank">http://midpoint.evolveum.com/xml/ns/public/connector/icf-1/resource-schema-3</a>',
'level_') = (2 || 3 || 4 || 5 || A || B || C || H)</div>
<div><span style="white-space:pre-wrap"> </span></code></div>
<div><span style="white-space:pre-wrap"> </span></script></div>
<div><span style="white-space:pre-wrap"> </span></condition></div>
</div>
<div><br>
</div>
<div>When it runs I get the following</div>
<div><br>
</div>
<div>
<div>1 error</div>
<div> (new) condition in object synchronization null</div>
<div><span style="white-space:pre-wrap"> </span>at
com.evolveum.midpoint.model.common.expression.script.jsr223.Jsr223ScriptEvaluator.createCompiledScript(Jsr223ScriptEvaluator.java:176)
~[model-common-3.0.1.jar:na]</div>
<div><span style="white-space:pre-wrap"> </span>at
com.evolveum.midpoint.model.common.expression.script.jsr223.Jsr223ScriptEvaluator.evaluate(Jsr223ScriptEvaluator.java:117)
~[model-common-3.0.1.jar:na]</div>
<div><span style="white-space:pre-wrap"> </span>at
com.evolveum.midpoint.model.common.expression.script.ScriptExpression.evaluate(ScriptExpression.java:110)
~[model-common-3.0.1.jar:na]</div>
<div><span style="white-space:pre-wrap"> </span>at
com.evolveum.midpoint.model.common.expression.script.ScriptExpressionEvaluator.transformSingleValue(ScriptExpressionEvaluator.java:58)
~[model-common-3.0.1.jar:na]</div>
<div><span style="white-space:pre-wrap"> </span>at
com.evolveum.midpoint.model.common.expression.evaluator.AbstractValueTransformationExpressionEvaluator.evaluateScriptExpression(AbstractValueTransformationExpressionEvaluator.java:276)
~[model-common-3.0.1.jar:na]</div>
<div><span style="white-space:pre-wrap"> </span>at
com.evolveum.midpoint.model.common.expression.evaluator.AbstractValueTransformationExpressionEvaluator.evaluateAbsoluteExpression(AbstractValueTransformationExpressionEvaluator.java:206)
~[model-common-3.0.1.jar:na]</div>
<div><span style="white-space:pre-wrap"> </span>at
com.evolveum.midpoint.model.common.expression.evaluator.AbstractValueTransformationExpressionEvaluator.evaluate(AbstractValueTransformationExpressionEvaluator.java:107)
~[model-common-3.0.1.jar:na]</div>
<div><span style="white-space:pre-wrap"> </span>at
com.evolveum.midpoint.model.common.expression.Expression.evaluate(Expression.java:136)
~[model-common-3.0.1.jar:na]</div>
<div><span style="white-space:pre-wrap"> </span>at
com.evolveum.midpoint.model.common.expression.ExpressionUtil.evaluateExpression(ExpressionUtil.java:500)
~[model-common-3.0.1.jar:na]</div>
<div><span style="white-space:pre-wrap"> </span>at
com.evolveum.midpoint.model.common.expression.ExpressionUtil.evaluateCondition(ExpressionUtil.java:523)
~[model-common-3.0.1.jar:na]</div>
<div><span style="white-space:pre-wrap"> </span>at
com.evolveum.midpoint.model.impl.sync.SynchronizationService.isPolicyApplicable(SynchronizationService.java:383)
~[model-impl-3.0.1.jar:na]</div>
<div><span style="white-space:pre-wrap"> </span>at
com.evolveum.midpoint.model.impl.sync.SynchronizationService.determineSynchronizationPolicy(SynchronizationService.java:343)
~[model-impl-3.0.1.jar:na]</div>
<div><span style="white-space:pre-wrap"> </span>at
com.evolveum.midpoint.model.impl.sync.SynchronizationService.notifyChange_aroundBody0(SynchronizationService.java:205)
~[model-impl-3.0.1.jar:na]</div>
<div><span style="white-space:pre-wrap"> </span>... 54
common frames omitted</div>
<div>Caused by: javax.script.ScriptException:
org.codehaus.groovy.control.MultipleCompilationErrorsException:
startup failed:</div>
<div>Script37.groovy: 2: </div>
<div>"basic.getAttributeValue(shadow, <a href="http://midpoint.evolveum.com/xml/ns/public/resource/instance-3" target="_blank">http://midpoint.evolveum.com/xml/ns/public/resource/instance-3</a>,
level_)" is a method call expression, but it should be a
variable expression at line: 2 column: 116. File:
Script37.groovy @ line 2, column 116.</div>
<div> source/instance-3', 'level_') = (2 || 3 </div>
</div>
</div>
<br>
</div></div><font><br>
<br>
CONFIDENTIALITY NOTICE:<br>
This e-mail together with any attachments is proprietary and
confidential; intended for only the recipient(s) named above and
may contain information that is privileged. You should not
retain, copy or use this e-mail or any attachments for any
purpose, or disclose all or any part of the contents to any
person. Any views or opinions expressed in this e-mail are those
of the author and do not represent those of the Baptist School
of Health Professions. If you have received this e-mail in
error, or are not the named recipient(s), you are hereby
notified that any review, dissemination, distribution or copying
of this communication is prohibited by the sender and to do so
might constitute a violation of the Electronic Communications
Privacy Act, 18 U.S.C. section 2510-2521. Please immediately
notify the sender and delete this e-mail and any attachments
from your computer. </font><br>
<br>
<fieldset></fieldset>
<br>
<pre>_______________________________________________
midPoint mailing list
<a href="mailto:midPoint@lists.evolveum.com" target="_blank">midPoint@lists.evolveum.com</a>
<a href="http://lists.evolveum.com/mailman/listinfo/midpoint" target="_blank">http://lists.evolveum.com/mailman/listinfo/midpoint</a><span><font color="#888888">
</font></span></pre><span><font color="#888888">
</font></span></blockquote><span><font color="#888888">
<br>
<pre cols="72">--
Ing. Ivan Noris
Senior Identity Management Engineer
<a href="http://evolveum.com" target="_blank">evolveum.com</a> <a href="http://evolveum.com/blog/" target="_blank">evolveum.com/blog/</a>
_____________________________________________
"Semper Id(e)M Vix."
</pre>
</font></span></div>
<br>_______________________________________________<br>
midPoint mailing list<br>
<a href="mailto:midPoint@lists.evolveum.com" target="_blank">midPoint@lists.evolveum.com</a><br>
<a href="http://lists.evolveum.com/mailman/listinfo/midpoint" target="_blank">http://lists.evolveum.com/mailman/listinfo/midpoint</a><br>
<br></blockquote></div><br></div>
</div></div></blockquote></div><br></div>
</div></div></blockquote></div><br></div>
<br>
<font size="2"><br><br>CONFIDENTIALITY NOTICE:<br>This e-mail together with any attachments is proprietary and confidential; intended for only the recipient(s) named above and may contain information that is privileged. You should not retain, copy or use this e-mail or any attachments for any purpose, or disclose all or any part of the contents to any person. Any views or opinions expressed in this e-mail are those of the author and do not represent those of the Baptist School of Health Professions. If you have received this e-mail in error, or are not the named recipient(s), you are hereby notified that any review, dissemination, distribution or copying of this communication is prohibited by the sender and to do so might constitute a violation of the Electronic Communications Privacy Act, 18 U.S.C. section 2510-2521. Please immediately notify the sender and delete this e-mail and any attachments from your computer. </font><br>