11
Points
Questions
0
Answers
2
-
Based on the screenshots I do not think this a recursion issue. The Smart Rule allows A -> B -> A where a child owns one of its parents. I would look at your “Duplicate Item Numbers”, “Duplicate Find Number” and “Duplicate Ref Des” Smartrules. Depending on the settings the error might be triggered by one of these rules being set to “Disallow”.
- 4400 views
- 5 answers
- 0 votes
-
Here is how I do it in groovy script
// Get Risk_Number
s_Risk_Number = obj.getValueByAttId(12469);
Risk_Number = Double.parseDouble(s_Risk_Number);//Get Risk_Multiplier
s_Risk_Multiplier = obj.getValueByAttId(12470);
Risk_Multiplier = Double.parseDouble(s_Risk_Multiplier);//calculate Risk Score
Risk_Score = Risk_Number * Risk_Multiplier;- 5986 views
- 1 answers
- 0 votes