You can do this. Trigger an email using a Maximo communication template with the appropriate attachment folders on the tab selected for all WO's or whatever. I send them to myself and move them into a separate folder using rules.. I have then written VB that extracts the attachments and puts them in a folder. See below. Locations removed for security/privacy. The replace helps with filenames that aren't valid.
Sub Attachment_SaveAttchments()
Dim objMail As Outlook.MailItem
Dim objWsShell As Object
Dim strTempFolder As String
Dim objAttachments As Outlook.Attachments
Dim objAttachment As Attachment
Dim strFileName As String
Set myNameSpace = Application.GetNamespace("MAPI")
Set myFolder = myNameSpace.GetDefaultFolder(olFolderInbox)
Set myNewFolder = myFolder.Folders("VF Docs")
Set emailList = myNewFolder.Items
strTempFolder = "file location"
For Each objMail In emailList
Set objAttachments = objMail.Attachments
If objAttachments.Count > 0 Then
For Each objAttachment In objAttachments
strFileName = objMail.Subject
strFileName = Replace(strFileName, "/", "-")
strFileName = Replace(strFileName, ",", "-")
strFileName = Replace(strFileName, ":", " ")
strFileName = Replace(strFileName, "_", " ")
docName = objAttachment.FileName
docName = Replace(docName, ",", "-")
docName = Replace(docName, "/", "-")
docName = Replace(docName, ":", " ")
docName = Replace(docName, "_", " ")
fileNameLoc = strTempFolder & strFileName & " " & docName
objAttachment.SaveAsFile fileNameLoc
Next
End If
Next
End Sub
------------------------------
Andy Winter
Salisbury Group
01908 208472
------------------------------
Original Message:
Sent: Sun May 14, 2023 10:28 PM
From: Gaurav
Subject: Bulk download the attachments
Hi Community,
Please advise if there is a way to download all or multiple attachments, uploaded against a WO, together from Maximo UI.
Currently, we can download one attachment at a time by clicking on the attachment name from View Attachments dialog box, but it becomes bit cumbersome for end users when there are few dozens of attachments against a workorder, and they need to analyse them by downloading it one by one. I am trying to find if there is any way without the customization.
Please note that we are not using Maximo mobile or anywhere solution.
Thanks
------------------------------
Gaurav
------------------------------