In the User Profile Record Type it uses a rule: a!userRecordFacets to expose a s

In the User Profile Record Type it uses a rule: a!userRecordFacets to expose a single "Status' facet. Is it possible to add additional facets? For example, being able to add alphabetical filters (A-D,E-H, etc) would allow a user to scan user profiles that otherwise they cannot do so at this time. As I am sure with many other companies we have 100's of employees in Appian but the record only shows the first 100. If I am not sure of the user's name there is no way for me to scan for any other resources.

OriginalPostID-157596

OriginalPostID-157596

  Discussion posts and replies are publicly visible

Parents
  • @mike @sikhivahans - I also have the same requirement as what Mike mentioned. To display the Users in an alphabetical order. PFB the expression which I'm using:

    {
    a!userRecordFacets(),
    a!facet(
    name: "First Names starting with",
    options: {
    a!facetOption(
    id: 3,
    name: "A - E",
    filter: a!queryFilter(
    field: "firstName",
    operator: "BETWEEN",
    value: {
    "A",
    "E"
    }
    )
    ),
    a!facetOption(
    id: 4,
    name: "F - J",
    filter: a!queryFilter(
    field: "firstName",
    operator: "BETWEEN",
    value: {
    "F",
    "J"
    }
    )
    )
    }
    )
    }

    I get an error when I click on the list view item saying HTTP code =404. Server logs say that an error occured while retrieving the data for Users.

    Can you pls suggest ??!!
Reply
  • @mike @sikhivahans - I also have the same requirement as what Mike mentioned. To display the Users in an alphabetical order. PFB the expression which I'm using:

    {
    a!userRecordFacets(),
    a!facet(
    name: "First Names starting with",
    options: {
    a!facetOption(
    id: 3,
    name: "A - E",
    filter: a!queryFilter(
    field: "firstName",
    operator: "BETWEEN",
    value: {
    "A",
    "E"
    }
    )
    ),
    a!facetOption(
    id: 4,
    name: "F - J",
    filter: a!queryFilter(
    field: "firstName",
    operator: "BETWEEN",
    value: {
    "F",
    "J"
    }
    )
    )
    }
    )
    }

    I get an error when I click on the list view item saying HTTP code =404. Server logs say that an error occured while retrieving the data for Users.

    Can you pls suggest ??!!
Children
No Data