Forum Discussion
Former_Member
8 years agoIdeator I
Wow, I just hustled my way through this mud, got my hands dirty and hacked together something that conquered Aras. Here's my victorious Solution:
setType("Part"); var a = newOR(); var b = a.newAND(); b.setProperty("permission_name", "Released %"); b.setPropertyCondition("permission_name", "like"); var c = a.newAND(); c.setProperty("permission_name", "New %"); c.setPropertyCondition("permission_name", "like");Please tell if this can be gloriously optimized....... I used the docs on www.aras.com/.../Aras.IOM.Item.newOR.html to understand <OR> better.