Record's activity stream is not displayed initially when the record's link is accessed via mobile webIssue <!-- div.margin{ padding: 10px 40px 40px 30px; } table.tocTable{ border: 1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); padding-top: .6em; padding-bottom: .6em; padding-left: .9em; padding-right: .6em; } table.noteTable{ border:1px solid; border-color:#E0E0E0; background-color: rgb(245, 245, 245); width: 100%; border-spacing:2; } table.internaltable { white-space:nowrap; text-align:left; border-width: 1px; border-collapse: collapse; font-size:14px; width: 85%; } table.internaltable th { border-width: 1px; padding: 5px; border-style: solid; border-color: rgb(245, 245, 245); background-color: rgb(245, 245, 245); } table.internaltable td { border-width: 1px; padding: 5px; border-style: solid; border-color: #E0E0E0; color: #000000; } table tr td { padding: 15px; } .title { color: #D1232B; font-weight:normal; font-size:28px; } h1{ color: #D1232B; font-weight:normal; font-size:21px; margin-bottom:-5px } h2{ color: #646464; font-weight:bold; font-size:18px; } h3{ color: #000000; font-weight:BOLD; font-size:16px; text-decoration:underline; } h4{ color: #646464; font-weight:BOLD; font-size:15px; text-decoration:; } h5{ color: #000000; font-weight:BOLD; font-size:13px; text-decoration:; } h6{ color: #000000; font-weight:BOLD; font-size:14px; text-decoration:; } hr{ border-top-width: 1px; border-top-style: solid; border-top-color: #cccccc; } ul { list-style: disc outside none; margin-left: 0; } li { padding-left: 1em; } --> Overview Record's activity stream is not displayed initially when the record's link is accessed via mobile web. This generally happens when a user accesses a link from an email on a mobile device and the link would open in mobile web. The page being redirected to on mobile web is the record's form view itself instead of the record's activity stream view. Record's activity stream is not displayed initially when the record's link is accessed via mobile web This is by design of the platform at the moment. When a normal desktop link is accessed on mobile web there's a mechanism in place that converts the link to the following format: /$m.do#/form/<table_name>/<sys_id>?sysparm_view=Mobile This displays the record form view itself. When the record is accessed by manually navigating to it from mobile web (or mobile native app) the URL has the following format: /$m.do#/activity_stream/<table_name>/<sys_id>?sysparm_view=Mobile This displays the record activity stream. Example 1) User logs into a mobile device and open an email that contains the following URL and clicks on it: https://<instance_name.service-now.com/nav_to.do?uri=incident.do?sys_id=6d473d15db17530059a5b3d0ef9619be 2) On the mobile web browser this link gets converted to: https://<instance_name.service-now.com/$m.do#/form/incident/6d473d15db17530059a5b3d0ef9619be?sysparm_view=Mobile This link displays the record form view itself and not the record activity stream (users can always click on the "Activity Stream" link on the record form view to see the activities).