This article describes how to send, save and reuse customised views in the planning interface.


Introduction

Mercury Media provides a number of options for customising the planning interface. Users can choose
between a variety of options for viewing information for different user groups
(e.g., planning, accounting, customer, etc.) or user scenarios
(initial planning, campaign optimisation, discount assessment, etc.).

This article gives you more information about the different configuration options.


Saving in the browser

Mercury Media saves the latest view used by the user for a certain planning scenario in the browser
locally on the user’s computer.


This can be interpreted in the following meanings:

  • that different users working on the same campaign or the same scenario can use their own
    individual view option
  • that if users reopen a media plan on a different computer or in a different browser they
    may encounter a different view from the one they last used.


Saving in the URL

In the planning interface (either in the media plan or the offer list), the URL in the browser contains
all the information that determines the view option in Mercury Media.
.

.

Sending view options

From the planning view, users can copy out the URL from the address line at any time and to send
it on to other users. Upon clicking on the link, the recipient sees the view that was active when the
link that was sent was originally copied.

However, the recipient must be authorized to view the displayed information.
If the recipient does not have access to the campaign category, they will see an error message.


https://demo.onmercury.io/campaigns/292/scenarios/344/planning#?stageFilters-344.filters=NrBEAsEsBNoUwHagDSgIyg
LrLAVwM5zQCSCACgDYCGSqGmmQA%3D%3D%3D&planFilters344.filters=NrBEAcCcEsGMFMCy8Am0
CGBxSB7AzngAq4BW8sALqqADQB2ArgDZP3OugAMoAuj0A%3D%3D%3D&planColumns344.columns=
NoIghgNhD2DuCCBXALtAtmZBLAxvAJgM4CmATgG5kAKZAZtKRgHY7EAimYAqgA76bFCIADQgs%2BESGi1a
ZAJITRWJiVLZoTAPKl8ZAGIMC5MC2Jym5aLjOKxKsuq079DPcsjnL1hZMLJMiEKiaMT4WIhokhBgAEbEEACM
kjyIMRBYhAAWZAByYCGSYYQ80QCeVNGsIUzIeohQkjikxJhYlITwTPgAwugx7o6EADKx8UEgpIg1WCEAKtD%
2BEJLEMsQ42JRUpNY5kpYQEcQAQtDQANahkgDmxExkkJ1MC60ae9AHIQBKLekAXpdKNA8ZqEQhYDSEKip
dJZXLEK4LLACWw4aB%2BHJMcw4CB6YjEeaLTo9NHIWZrTJPGBXUrfSBYf4SAC6QA%3D%3D3D&plan
Columns-344.sortColumn=EQGwhgRgpiCMxA%3D%3D&planColumns-344.sortDirection=EQEwpgzgxsQ
%3D&planColumns-344.grouping=&stageColumns-344.columns=NoIglgJiA0IA4FcBGAbMBnAFgUwE4Dk
BDAW2xhFIjAWPKvThUIE8AFJgY21IDsAXAGIIUKch1zZCfMADds6AII8IAYQD2xJGB5SwanugAyhJNhTpyuBP
zCkAKmr6FRsbADM32DtLmtcYLnxyAHNsHjxnJR5HXX0QAF0gA%3D%3D%3D&stageColumns-344.grouping=&monitors-344.monitors=NoXSA%3D%3D%3D&display-switcher.value=EQBwNghgdsQ%3D


Using bookmarks

If users want to switch between different views in the same scenario, they can create a bookmark for the
current view.

In Chrome (our preferred browser for Mercury Media), you can use the keyboard shortcuts “Strg-D”
(Windows) or “Cmd-D” (Mac) to create bookmarks.


Using bookmarklets to save in local storage

Use bookmarklets to save your current view in the browser’s local storage for use in later campaigns.

You can configure and save an unlimited number of views.

Save certain views (e.g. planning, optimisation or reporting) and use them for any campaign you want.


Instructions

Create bookmarklets to save and load views


1. On any Mercury page and create a new bookmark

2. Editing bookmarks. Name the bookmark “Save view”


3. Replace the link with the “Code for saving a view” provided below



4. Repeat the above steps for “Code for loading a view”. Name the bookmark “Load view”


Code for saving a view


javascript:(function(){var locationString=window.location.href;var fragment=locationString.substr(locationString.lastIndexOf('/')+1);fragment=fragment.replace(/\-[0-9]+/g,"SCENARIO_ID");var storageName=prompt('Please enter a name for storing the view.');localStorage.setItem("viewConfig_"+storageName,fragment);})()


Code for loading a view


javascript:(function(){var locationString=window.location.href;var baseUrl=locationString.substr(0,locationString.lastIndexOf('/'));var scenarioId=baseUrl.substr(baseUrl.lastIndexOf('/')+1);var storageName=prompt('Please enter the name of the view you want to open.');var fragment=localStorage.getItem("viewConfig_"+storageName);if(fragment != null){var finalUrl=fragment.replace(/SCENARIO_ID/g,"-"+scenarioId);window.location.href=finalUrl;window.location.reload(true);} else {alert('We could not find a view by that name...')}})()


Using bookmarklets to save a view

  1. Configure your planning interface according to your needs.
  2. Click on the “Save view” bookmark.
  3. Enter a name for the view.
  4. Click “OK”.
  5. Write down the view’s name.

Using bookmarklets to load a view

  1. Navigate to the desired scenario.
  2. Click on the “Load view” bookmark.
  3. Enter the name of the view you want to use for the plan.
  4. Click “OK” and wait for the page with the desired view to reload.