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
  • Sorry to bug you again... my code does not generate any errors but it does not print any datasubset See my code below
    load(
    local!pagingInfo: a!pagingInfo(
    startIndex: 1,
    batchSize: 1
    ),
              local!querieddata:a!queryProcessAnalytics(report:cons!TEST_REPORT,
    contextProcessModels: {cons!TEST_PROCESS_MODEL},
    query: a!query(logicalExpression: null,
    pagingInfo: local!pagingInfo)),

              /*This statement prints the columnConfigs value*/
    index(local!querieddata,"columnConfigs",{})
    )
Reply
  • Sorry to bug you again... my code does not generate any errors but it does not print any datasubset See my code below
    load(
    local!pagingInfo: a!pagingInfo(
    startIndex: 1,
    batchSize: 1
    ),
              local!querieddata:a!queryProcessAnalytics(report:cons!TEST_REPORT,
    contextProcessModels: {cons!TEST_PROCESS_MODEL},
    query: a!query(logicalExpression: null,
    pagingInfo: local!pagingInfo)),

              /*This statement prints the columnConfigs value*/
    index(local!querieddata,"columnConfigs",{})
    )
Children
No Data