How to properly refresh tempo view

Hello all,

 

I am having a problem with the refresh of the tempo view. For example i am setting the visibility of a related action so it only appears the first time you go inside the record. The problem is that when i complete that related action, it keeps appearing till i choose another tab. Even choosing another tab and comming back doesn't make it automatically dissapear but needs some seconds before that.

 

¿Is this a known issue?

 

Thanks for your time!

  Discussion posts and replies are publicly visible

Parents Reply
  • Hi,

    Thanks for your reply. I don't know if i can use that function since i need to look for some values in the database:

    This is what i have in the visibility field:

    rule!DTA_ER_TEST_RECORD(rf!ID)

    Where DTA_ER_TEST_RECORD is:

    if(
    length(
    rule!DTA_ER_CONTROL_RELATED_ACTION(ri!posid_ri,
    rule!DTA_ER_OBTENER_EMPLEADO(loggedInUser()).ID)
    ) > 0,
    false,
    true
    )
    DTA_ER_CONTROL_RELATED_ACTION returns a list of objects that are in an entity with the given position ID.

    How could i use the WITH function?

    Thanks!
Children