Users are losing filters when they go back to the reports.

Hi, we have recently started rolling out our redesigned processes in tempo moving users from portal and portal reports for accessing their work.

While they are enjoying the new interface one of the key frustrations is how users are losing filters when they go back to the reports.

Has anyone else found this and if so any ideas for getting around it?

Thanks, David

OriginalPostID-184355

OriginalPostID-184355

  Discussion posts and replies are publicly visible

Parents
  • Got it. updatecdt() returns a list of dictionary. I created a custom expression

    TS_UpdateFilterSettings
    #filterSettings: ANY
    #fieldsAndValues: ANY
    =updatecdt(ri!filterSettings, ri!fieldsAndValues)[1]

    This returns a single dictionary only, see the "[1]".

    The code now is:

    saveInto: {
    a!save(
    target: local!filterSettings,
    value: rule!TS_UpdateFilterSettings(local!filterSettings, {the_dd_filter: save!value})
    )
    }

    A CDT to store the data would look like
    uuid: text
    user: text
    settings: text (with annotation to store more than 255 chars)

Reply
  • Got it. updatecdt() returns a list of dictionary. I created a custom expression

    TS_UpdateFilterSettings
    #filterSettings: ANY
    #fieldsAndValues: ANY
    =updatecdt(ri!filterSettings, ri!fieldsAndValues)[1]

    This returns a single dictionary only, see the "[1]".

    The code now is:

    saveInto: {
    a!save(
    target: local!filterSettings,
    value: rule!TS_UpdateFilterSettings(local!filterSettings, {the_dd_filter: save!value})
    )
    }

    A CDT to store the data would look like
    uuid: text
    user: text
    settings: text (with annotation to store more than 255 chars)

Children
No Data