VSI-2477 NOTE: This ONLY affects R11 and R11.1. When adding a button / link to a supported transactional Sage X3 window, when clicked, the resultant transaction is viewed directly (bypassing EDM Enquiry.) The URL generated does not include the Sage X3 Folder / Endpoint so if transactions have the same reference in Sage X3 between Sage X3 Folder(s) / Endpoint(s), they will all be displayed which may breach user security. Repeat the following for ALL Sage X3 Production Folders / Endpoints EDM has been applied too: 1. Preferably as an administrative user, login to the Sage X3 Production Folder(s) / Endpoint(s) EDM has been applied too 2. Load the ADOTRT function (V6.5: Development > Processes > Script Editor - V7/PU8: Development > Script dictionary > Scripts > Script editor) 3. Open the process XV1COMMON 4. Find the VIEWDOCUMENT subprogram 5. In it, find this: URL+="?DbQCMD=LOGIN&DbQUser=" URL+=V1USER URL+="&DbQPass=" URL+=V1PASSWORD URL+="&DbQCMDNext=SEARCH" URL+="&DOCID=V1X3_V1"+OBJECT URL+="&S0F=DOC_KEY" URL+="&S0O=EQ" URL+="&S0V=" URL+=KVALUE And instead, reflect this: URL+="?DbQCMD=LOGIN&DbQUser=" URL+=V1USER URL+="&DbQPass=" URL+=V1PASSWORD URL+="&DbQCMDNext=SEARCH" URL+="&DOCID=V1X3_V1"+OBJECT URL+="&S0F=DOC_KEY" URL+="&S0O=EQ" URL+="&S0V=" URL+=KVALUE URL+="&S1F=DBA_FILTER_FIELD" URL+="&S1O=EQ" URL+="&S1V=" URL+=nomap 6. Save and compile.