═══════════════════════════════════════════════════════════════════════════════ QUICK ONE-LINER FOR BROWSER CONSOLE ═══════════════════════════════════════════════════════════════════════════════ INSTRUCTIONS: 1. Open Aumentum Web Access (http://10.10.10.3:8080/lrswa) 2. Search for and open PL11089 (Type 103 - Property File) 3. Press F12 to open Developer Console 4. Paste ONE of the commands below into Console 5. Copy the output and send it back ═══════════════════════════════════════════════════════════════════════════════ OPTION 1: Find Pages Array (Quick) ═══════════════════════════════════════════════════════════════════════════════ Copy and paste this ONE LINE: (function(){try{var t=Ext.ComponentMgr.all.items.filter(function(i){return i.pages})[0];if(t){console.log("Found",t.pages.length,"pages:");t.pages.forEach(function(p,i){console.log((i+1)+".",p.uuid)});}else{console.log("Pages not found. Try Option 2.");}}catch(e){console.log("Error:",e.message)}})(); ═══════════════════════════════════════════════════════════════════════════════ OPTION 2: Network Capture (If Option 1 fails) ═══════════════════════════════════════════════════════════════════════════════ 1. Before opening PL11089, run this: (function(){var o=XMLHttpRequest.prototype.open;XMLHttpRequest.prototype.open=function(){console.log('XHR:',arguments[0],arguments[1]);return o.apply(this,arguments)}})(); 2. Then open PL11089 Type 103 3. Look for lines like: "XHR: GET /lrswa/details/document.do?..." 4. Copy those URLs ═══════════════════════════════════════════════════════════════════════════════ OPTION 3: Extract from Current Page ═══════════════════════════════════════════════════════════════════════════════ If PL11089 is already open: (function(){var u=[];document.querySelectorAll('img,div,span').forEach(function(e){var s=e.src||e.style.backgroundImage||e.innerHTML;var m=s.match(/[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}/gi);if(m)u=u.concat(m)});u=Array.from(new Set(u));console.log("Found",u.length,"unique UUIDs:");u.forEach(function(uuid,i){console.log((i+1)+".",uuid)})})(); ═══════════════════════════════════════════════════════════════════════════════ EXAMPLE OUTPUT YOU SHOULD SEE: ═══════════════════════════════════════════════════════════════════════════════ Found 46 pages: 1. 3eee6f3f-0b98-41b9-a6cb-2c4488152fed 2. eac6561d-ae69-4a21-9923-c2a488eac8f3 3. 2b12fb85-8ff0-4f9c-8031-5b401e9febbb ... (46 total) ═══════════════════════════════════════════════════════════════════════════════ WHAT TO DO WITH OUTPUT: ═══════════════════════════════════════════════════════════════════════════════ 1. Copy ALL the UUIDs from the console 2. Save to a file (e.g., web_access_uuids.txt) 3. Send it back 4. We'll compare with what our system uses This will show us EXACTLY which UUIDs Web Access uses for PL11089! ═══════════════════════════════════════════════════════════════════════════════