Developers scottbenson6 days agoWeird Validation Situation I have the unusual situation where I have 5 text attributes, each of which need to be validated against 20 colors and some other items in the same text field. The fields need to stay as text fields so a drop down is not an option. The example below shows a piece of the validation. rule{ anyOf{ condition{isEqual(attributes.'Field1'?.first(),'Red')} condition{isEqual(attributes.'Field1'?.first(),'Blue')} } } I could write 5 separate validations, but the problem occurs when a new color is added - I would need to update 5 separate validations. OR I could write 1 large validation which contains all 5 fields and under each field list the 20 colors - but the same problem occurs when a new color is added. Has anyone else run into a similar problem and be willing to share their solution? Thanks, Scott Sc
Best practices Julie Prigge20 days agoBest Practices for Archiving Assets in Collibra What best practices have you implemented to archive obsolete assets? After time, Obsolete assets clutter current assets and our stewardship teams are looking for solutions to archive those into a separate area to keep current assets clean. How have you used Collibra to do this and what policies or procedures have you established?