-
Notifications
You must be signed in to change notification settings - Fork 4
Add AcmaSchemaReferenceBackLink
Ryan Newington edited this page May 26, 2022
·
5 revisions
Creates a new back-link in the ACMA database schema
Add-AcmaSchemaReferenceBackLink -SourceObjectClass <string> -SourceAttribute <string> -TargetObjectClass <string> -TargetAttribute <string>
The name of the object class that is the source of the back-link
The name of the attribute that contains the reference to back-link to
The name of the object class that is the target of the back-link
The name of the attribute that is the target of the back-link
The following example links the manager
attribute to the directReports
attribute on the target. Whenever a person object's manager
is changed, the directReports
attribute of the manager will be updated.
Add-AcmaSchemaReferenceBackLink -SourceObjectClass "person" -SourceAttribute "manager" -TargetObjectClass "person" -TargetAttribute "directReports"
asd