Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

"System.Customer.UserImportProfileTranslations" – Optional attribute.  Stores the mapping for user Profile Indexes to be used by the user importer. If this is not set, assume default names for DB keys (see below for defaults key names).  The key/value pairs need to adhere to strict naming (Attribute keys are string constants, if they don't match, importer will fail).  For example: First and Last Name cannot be in the same column. All keys must follow db table column names.  The order does not matter, as the indexing is built dynamically.  

Note: Current develop needs to have every field explicity matched if this attribute is used.  E.g. if an OrgProfileField is not included in the translations, it will not be imported.  See 

Jira Legacy
serverSystem JIRA
serverId23f523ea-1678-3ca2-a1e8-2de53fd3b74a
keyPSDEV-371

// Generic User Import File Field Names (keys for dictionary)
private const string DeactivateUserKey = "Deactivate (X)";
private const string OrgPathKey = "OrgPath";
private const string OrgLoginKey = "OrgLoginID";
private const string LoginKey = "LoginID";   //This can be UserName or EmailAddress
private const string PasswordKey = "Password";
private const string FirstNameKey = "FirstName";
private const string LastNameKey = "LastName";
private const string EmailAddressKey = "EmailAddress";
private const string ContactEmailKey = "ContactEmail";
private const string CanViewReportsKey = "CanViewReports";
private const string ForcePasswordChangeKey = "ForcePasswordChange";

...