cancel
Showing results for 
Search instead for 
Did you mean: 

Display custom attributes with multi-values in user profile

0 Kudos

Hello,

Our goal is to display custom attributes with multiple values for each

user in the UM under "Additional Information". We were able to add

several values to an attribute like "jobtitle", but just one value is

displayed. Instead of the format "Jobtitle: jobA, jobB, jobC, .." just

a random value of the array is displayed: "Jobtitle: jobB".

The manipulation of the attributes is done by a scheduler job which

modifies the values in this way:

String[] attributeValueArray = {"jobA", "jobB", "jobC"};

IUserMaint userMaint = UMFactory.getUserFactory().getMutableUser

(user.getUniqueID());

userMaint.setAttribute(nameSpace,attributeName, attributeValueArray);

Is there a way to display the values of the array in a sequence in the

format "x, y, z, ..." ? If not, how can we make sure that just a

specific position of the array is displayed instead of a random one?

Thank you in advance.

Best Regards

Frank

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

Sorry, I don't think this is possible with the standard UME admin tools. You will need to write your own