CustomField(n) in record type user

Hi all,

Is it possible to add cusomField1 to 10 into record type user ?

My first approach was adding a custom record field but user function cannot be used inside.

Any idea ?

Regards 

Jean-Alain

  Discussion posts and replies are publicly visible

Parents Reply
  • First I created an expression with the code that you can see above. There are any parameters in my expression but if you want to retrieve more than 1000 users, you should implement a paging mechanism. I created a dedicated record type with web service as data source and I use  the previously created  expression to get data.

    But I think that your problem is in paging mechanism. (see Choose a Source for Your Record Type - Appian 23.1) In this case, you must take care of the rule input to return the correct set of data. You should probably iterate not on the collection but using an enumeration (enumerate(1000)) and access the users in the list using index. Something like this [(ri!page - 1) * 1000 + fv!item + 1]

Children
No Data