Hi, i am trying to fetch user/group name from a group name constant which c

Hi,
i am trying to fetch user/group name from a group name constant which can accept multiple values .On trying to fetching using the index number , i am just getting the first name , it is not reading the space . Could anybody help me with this ? ...

OriginalPostID-79888

OriginalPostID-79888

  Discussion posts and replies are publicly visible

Parents
  • Please look at the user() function in Appian Documentation.
    Once you have a user object, you can obtain the full name (assuming first name + surname) by querying & concatenating the following attributes
    CONCAT(user(pv!user, "firstName") ," ",user(pv!user,"lastName"))

    The first name you mentioned you're getting might simply be the user's log-in name in your previous use case.
Reply
  • Please look at the user() function in Appian Documentation.
    Once you have a user object, you can obtain the full name (assuming first name + surname) by querying & concatenating the following attributes
    CONCAT(user(pv!user, "firstName") ," ",user(pv!user,"lastName"))

    The first name you mentioned you're getting might simply be the user's log-in name in your previous use case.
Children
No Data