14-05-21 09:40 AM
14-05-21 11:22 AM
SELECT BPAAuditEvents.eventdatetime
,BPAAuditEvents.sNarrative 'Action Summary'
,BPAUser.username 'User'
FROM [BPAAuditEvents]
Left Join BPAProcess On BPAAuditEvents.gTgtProcID = BPAProcess.processid
Left Join BPAUser On BPAAuditEvents.gSrcUserID = BPAUser.userid
Where sCode = 'E004' AND
BPAAuditEvents.eventdatetime > '2021/05/13 11:21:14' AND
BPAAuditEvents.eventdatetime < '2021/05/14 11:21:20'
Then runSELECT BPAPackage.id
,BPAPackage.name 'Package Name'
,BPAPackage.description
,BPAProcess.name 'Process / Object Name'
FROM [BPAPackage]
Left Join BPAPackageProcess On BPAPackage.id = BPAPackageProcess.packageid
Left Join BPAProcess On BPAPackageProcess.processid = BPAProcess.processid
Where BPAPackage.name = '$$$$'
Replace the $$$$ with the package name, that can be retrieved from the output of the first query with a calc stage:
Replace(Trim(Mid([Releases List.Action Summary], InStr([Releases List.Action Summary], "from the package")+17,100)),"'","")
You can probably tailor this more specific to your needs.
let me know how it goes.
14-05-21 11:35 AM