Menu
D365
P L A Y T I M E
D365
P L A Y T I M E

[Quick Fix] How to apply Audit to a Unified Interface app in Dynamics

Posted on January 15, 2019January 15, 2019

Currently Microsoft Dynamics UUI interface does not have support for displaying Auditing section within a UUI app. Thankfully there’s a super simple fix if this is needed. We just need to create a web resource to a html file with the following contents and reference

 
<html>
<head> <script>
window.onload = function() {
    window.location.href = "/tools/audit/audit_area.aspx?"; //All audit settings
   // window.location.href = "/tools/audit/audit_area.aspx?pid=03&web=true"; //Audit Summary View
}
</script> </head>
<body>
</body>
</html>

If you need a bit more help i’ll go through it step by step below:

Create the html file

Either copy paste the code above into a notepad file and save as file type .html or you can just download it here: https://github.com/TomWinton/WebResourcetoaccessAuditwithinUUI/blob/master/AuditingRedirect.html 

Create the web resource

Within your CRM navigate to the solution you wish to build in, web resources and click New.

Set type to HTML, give it whatever name you want and upload the html file you’ve created, don’t forget to save and publish.

Use the web resource in your UUI app

Within App Designer > Sitemap Designer, create a new Sub Area of Type Web Resource , select your web resource, save and publish.

Thats it! All done.

Leave a Reply Cancel reply

Your email address will not be published. Required fields are marked *

Recent Posts

  • Retrieve the GUID of a record or Entity Reference within a workflow
  • How to find workflows that run a particular child workflow
  • Error when adding an Entity into Data Export Service that has been included before
  • How to sum / roll up rollup fields
  • Custom Workflow Step to calculate age

Recent Comments

    Archives

    • December 2020
    • June 2020
    • March 2020
    • October 2019
    • September 2019
    • July 2019
    • May 2019
    • March 2019
    • January 2019

    Categories

    • Custom Workflows
    • Data Export Service
    • dotmailer-connector
    • Dynamics Portal
    • Jquery/JS
    • UUI
    • Workflows
    ©2021 Dynamics 365 Playtime