Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
JustinDallas
Specialist III
Specialist III

Move app to another stream but keep users bookmarks.

Hello Folks,

Is there a way to move an App from one stream to another without losing users bookmarks?  Right now, I have to duplicate the app, move the dupe to my Work stream, publish duped app to its new home.

However,  when this happens, the bookmarks from when it was in the old stream are gone.  Is there a way to avoid this?

Sincerely,

  Justin Dallas

1 Solution

Accepted Solutions
rzenere_avvale
Partner - Specialist II
Partner - Specialist II

Hi Justin,

from what I know it's not possible to keep user's bookmarks, because those are not 'objects' found directly in the original application and as you have seen you need to duplicate, publish on the new stream and delete the old version

Cheers,

Riccardo

View solution in original post

2 Replies
rzenere_avvale
Partner - Specialist II
Partner - Specialist II

Hi Justin,

from what I know it's not possible to keep user's bookmarks, because those are not 'objects' found directly in the original application and as you have seen you need to duplicate, publish on the new stream and delete the old version

Cheers,

Riccardo

barryharmsen
Luminary Alumni
Luminary Alumni

Very late response


You can use pgAdmin to log into the Postgres database (use port 4432 instead of the default 5432) and manually update the Stream ID for an app. Be sure to stop the Qlik Sense Repository Service while you do this.


For example:

UPDATE public."Apps" SET "Stream_ID" = '8c661fd2-5105-499f-8458-689370731a37' WHERE "ID" = '847ef781-2ede-46ea-b129-764cbabc8f01';


(Stream_ID is the ID of the stream you want to move to, ID is the ID of the app that you want to move)