How to get the UserName from User Id in a aggregate column function or a rule for filter

a!queryEntity(
  entity: cons!PF_ENTITY_VW_REQUEST,
  query: a!query(
    aggregation: a!queryAggregation(
      aggregationColumns: {
        a!queryAggregationColumn(field: "RequestUserID", isGrouping: true),
        a!queryAggregationColumn(
          field: "RecordID",
          isGrouping: false,
          aggregationFunction: "COUNT"
        )
      }
    ),
    logicalExpression: a!queryLogicalExpression(
      operator: "AND",
      filters: {
        a!queryFilter(field: "RecordID", operator: "not null"),
        if(
          isnull(ri!RequestUserId),
          {},
          a!queryFilter(
            field: "RequestUserID",
            operator: "=",
            value: ri!RequestUserId
          )
        ),
        if(
          isnull(ri!activeStatus),
          {},
          a!queryFilter(
            field: "ActiveStatus",
            operator: "=",
            value: ri!activeStatus
          )
        ),
        if(
          isnull(ri!RecordID),
          {},
          a!queryFilter(
            field: "RecordID",
            operator: "=",
            value: ri!RecordID
          )
        )
      }
    ),
    pagingInfo: if(
      isnull(ri!pagingInfo),
      a!pagingInfo(startIndex: 1, batchSize: - 1),
      ri!pagingInfo
    )
  )
)

Hi Appian team,

Please check above code return for rule expression, it returns two fields one is RequestUserID and other is recordID. I want to fetch Username from UserID which means I have to get one more field as output that is UserName which I should get from user ID. I know there is user() function in-Build, but i do not know where i can use it to fetch username from RequestUserID field.

Can anyone of you help me solve this issue?

Thanks

Sunu Sam

  Discussion posts and replies are publicly visible

Parents
  • Hi there,

    The user function works with the username. We can use the user function to get different properties of a user by passing the username and the property that we want to query. In the above problem, you mentioned that you want to extract the username using the user function. But that is the input we have to pass to that function. 

    Can you tell me what kind of data is this query returning? Is UserID an integer value or text value? Can you also attach the resultant data subset so I can take a look at the output? 

Reply
  • Hi there,

    The user function works with the username. We can use the user function to get different properties of a user by passing the username and the property that we want to query. In the above problem, you mentioned that you want to extract the username using the user function. But that is the input we have to pass to that function. 

    Can you tell me what kind of data is this query returning? Is UserID an integer value or text value? Can you also attach the resultant data subset so I can take a look at the output? 

Children