Solved
How to get username on the basis of first name ?
I want to retrieve user name on the basis of first name . How can I achieve this ?
I want to retrieve user name on the basis of first name . How can I achieve this ?
a!localVariables(
local!userList: getdistinctusers(cons!GLB_DEVELOPERS_GROUP),
a!dropdownField(
label: "Dropdown",
labelPosition: "ABOVE",
placeholder: "--- Select a Value ---",
choiceLabels: a!forEach(
local!userList,
user(fv!item, "firstName") & " " & user(fv!item, "lastName")
),
choiceValues: local!userList,
saveInto: {},
searchDisplay: "AUTO",
validations: {}
)
)
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.