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.