User Access Log Changes

Option 1: Employee saved search just add these tree field in results. Option 2: To track changes made to permissions or roles (Update, Change, or Delete), you’ll need to create a SuiteAnalytics dataset as System Notes v2 captures sublist-level changes (like Role > Permissions lines) and lets admins search all notes in Analytics. Navigate to Analytics > Datasets… Continue reading User Access Log Changes

Write User and Session Information to the Response

A Suitelet to write user and session information for the currently executing script to the response: Solution: /**  * @NApiVersion 2.x  * @NScriptType Suitelet  */ // This script writes user and session information for the currently executing script to the response. define([‘N/runtime’], function(runtime) {   function onRequest(context) {     var remainingUsage = runtime.getCurrentScript().getRemainingUsage();     var userRole = runtime.getCurrentUser().role;… Continue reading Write User and Session Information to the Response