Manage Operation Attachments in Maintenance Supervision Using a REST Service
Maintenance supervisors need to manage work order attachments for operations for their maintenance teams. These attachments may contain important and relevant information for each operation.
In this update, you can add, edit, and delete attachments with work order operations using the Work Order Operation Attachments REST API. An attachment can be a URL or a file. A URL is a web link to an external web page and file attachments are images, documents or media.
Example of a REST API payload using POST:
fscmRestApi/resources/latest/maintenanceWorkOrders/{WorkOrderId}/child/WorkOrderOperation/{WorkOrderOperationId}/child/WorkOrderOperationAttachments
Add a file to a work order operation attachment:
{ "DatatypeCode": "FILE", "FileName": "25D-OperationAttachment.txt", "Title": "25D-OperationAttachment.txt", "UploadedFileContentType": "text/plain", "UploadedFileLength": 1015, "UploadedFileName": "25D -Redwood Work Definition (Compl.txt", "CategoryName": "MISC" }
This feature allows supervisors to manage operation-level attachments without navigating to Maintenance Supervision leading to faster and more efficient updates to work orders.
Steps to Enable
Review the REST service definition in the REST API guides to leverage (available from the Oracle Help Center > your apps service area of interest > APIs & Schema). If you are new to Oracle's REST services you may want to begin with the Quick Start section.