viewOptions.PartialMetaView
I am using IdM 7.1. I have a question about "Partial Loading" of MetaView Information as described in the Technical Deployment manual (quoted next).
Partial Loading of MetaView Information
When Identity Manager populates a User view for Reconciliation, Load from Resource, or
Load from File, you can designate loading only the resource account data from the
resources that are assigned to an Identity Manager user that are also targets sourced from
the resource being loaded (and therefore subject to change). The Identity Manager user's
operational attributes that do not affect accounts for example, account ID and organization
are always in the view, as are user extended attributes such as firstname, and lastname.
I have created a resource adapter (LDAPAccount) and set up the reconciliation policy so that when I run reconciliation it should provision an ldap account if that account is missing.
I was hoping that I can use MetaView attributes to define the required attributes that need to be provisioned in ldap. For example, I have an Identity Attribute called objectclass. I assign it a constant value. I specify "set to value" and I specify the LDAPAccount resource as a target for creates and updates.
The automatically generated User MetaView Form contains this:
<Field name='accounts[LDAPAccount].objectclass'>
<Expansion>
<ref>metaView.objectclass</ref>
</Expansion>
<Disable>
<isTrue>
<ref>viewOptions.PartialMetaView</ref>
</isTrue>
</Disable>
</Field>
I tried debugging this code and viewOptions.PartialMetaView is true so this field is disabled and the constant value that I want to assign to this attribute is not assigned.
Can anyone explain how one controls this viewOptions for the metaview form? When I read that paragraph from the documenation it seems to me that I am reconciling the LDAPAccount resource and that it is also a target for my objectclass Identity Attribute in this case so I would think that PartialMetaView should be false.

