How can I filter this report with user name?

I am using below recipe to create a SAIL report. How can I filter this report with user name? Please note that I have added a column "Assign To" in the portal report that display's tp!owner information. I was able to add the user picker to the below recipe, but I am unable to filter the grid based on user that is being selected by the user picker control object.

forum.appian.com/.../SAIL_Recipes.html
Thank you for your help in advance!

OriginalPostID-147970

OriginalPostID-147970

  Discussion posts and replies are publicly visible

Parents
  • @zulfiqarp No problem, Its quiet simple.

    local!queryresult:a!queryProcessAnalytics(
    \ treport: ,
    /*Create a document of type constant and include the report in the constant. Else you can hardcode as well, for ex. todocument(100)*/
    \ tcontextGroups: {},
    \ tcontextProcessIds: {},
    \ tcontextProcessModels: {},
    \ tcontextUsers: {},
    /*Depending on type of the report, provide the context. Supoose if you want tasks per process model, provide a process model to 'contextProcessModels'. Ex: contextProcessModels:{1381} where 1381 is the process model id.*/
    \ tquery: a!query(
    \ tlogicalExpression: null,
    \ tpagingInfo: a!pagingInfo(
    \ tstartIndex: 1,
    \ tbatchSize: 1
    \ t)
    \ t)
    )

    Or else if you could let me know your requirement, I could help you out.
Reply
  • @zulfiqarp No problem, Its quiet simple.

    local!queryresult:a!queryProcessAnalytics(
    \ treport: ,
    /*Create a document of type constant and include the report in the constant. Else you can hardcode as well, for ex. todocument(100)*/
    \ tcontextGroups: {},
    \ tcontextProcessIds: {},
    \ tcontextProcessModels: {},
    \ tcontextUsers: {},
    /*Depending on type of the report, provide the context. Supoose if you want tasks per process model, provide a process model to 'contextProcessModels'. Ex: contextProcessModels:{1381} where 1381 is the process model id.*/
    \ tquery: a!query(
    \ tlogicalExpression: null,
    \ tpagingInfo: a!pagingInfo(
    \ tstartIndex: 1,
    \ tbatchSize: 1
    \ t)
    \ t)
    )

    Or else if you could let me know your requirement, I could help you out.
Children
No Data