Definition
An interface to read data of an Attachment Folder of any Business Object
Business Context and Use
The web service interface Manage Attachment Folder In enables you to read the content of attachments and offers the operations Read Document File Content and Read Documents File Content.
Here is an example of a simple web service request to read the content of one particular attachment specified by it's document UUID
<n0:AttachmentFolderDocumentFileContentByIDQuery_sync xmlns:n0="http://sap.com/xi/SAPGlobal20/Global">
<AttachmentFolderDocumentFileContentSelectionByID>
<DocumentUUID>12345678-90AB-CDEF-0123-456789ABCDEF</DocumentUUID>
</AttachmentFolderDocumentFileContentSelectionByID>
</n0:AttachmentFolderDocumentFileContentByIDQuery_sync>
Definition
To read the file content of a Document within an Attachment Folder
Structure
AttachmentFolderDocumentFileContentByIDQuery_sync
Contains the UUID of the attachment which should be read
Example
<n0:AttachmentFolderDocumentFileContentByIDQuery_sync xmlns:n0="http://sap.com/xi/SAPGlobal20/Global">
<AttachmentFolderDocumentFileContentSelectionByID>
<DocumentUUID>12345678-90AB-CDEF-0123-456789ABCDEF</DocumentUUID>
</AttachmentFolderDocumentFileContentSelectionByID>
</n0:AttachmentFolderDocumentFileContentByIDQuery_sync>
This xml snippet reads the content of one attachments.
Definition
To read the file content of many Documents within an Attachment Folder
Business Context and Use
The web service interface Read Documents File Content enables you to read the content of multiple attachment with one request.
Structure
AttachmentFolderDocumentFileContentByIDQuery_sync
Contains the UUID of the attachments which should be read
ProcessingConditions
The maximum size of content which should be retrieved with one request.
Example
<n0:AttachmentFolderDocumentsFileContentByIDQuery_sync xmlns:n0="http://sap.com/xi/SAPGlobal20/Global"
<AttachmentFolderDocumentFileContentByIDQuery>
<DocumentUUID>12345678-90AB-CDEF-0123-456789ABCDEF</DocumentUUID>
<DocumentUUID>12345678-90AB-CDEF-0123-456789ZXYUUZ</DocumentUUID>
</AttachmentFolderDocumentFileContentByIDQuery>
<ProcessingConditions>
<QueryFileSizeMaximumNumberValue>1024</QueryFileSizeMaximumNumberValue>
</ProcessingConditions>
</n0:AttachmentFolderDocumentsFileContentByIDQuery_sync>
This xml snippet reads the content of two attachments. The maximum file size for this request is 1024 KB.
Constraint