Deep linking uses the deeplink URL query parameter to create external bookmarks to the Latitude Studio. Deep links can include record filters and can set the current state of a tabbed container.
http://portalhost:port/path/to/page?deeplink=JSON-ARRAY-OF-DATASOURCE-STATES
http://localhost:8080/web/guest?deeplink=[{"default": {"queryFunctions":[{"class":"RecordFilter","recordFilter": "Designation:BestBuy"}]}}]
If the page you are navigating to includes a Tabbed Component Container, then you can use the pageTransitionTabState parameter to direct the user to a specific tab. To do this:
http://portalhost:port/path/to/page?com.endeca.discovery. pageTransitionTabState=tabcomponentname[tabnumber]&deeplink=JSON-ARRAY-OF-DATASOURCE-STATES
http://localhost:8080/web/guest??com.endeca.discovery. pageTransitionTabState=Stores[2]&deeplink=[{"default": {"queryFunctions":[{"class":"RecordFilter","recordFilter": "Designation:BestBuy"}]}}]