Adding and uploading supporting documentsYou can upload files to use as supporting documents. Documents are uploaded to the review zone (See Understanding content repositories and review zones in Managed Review & Approval Solution Accelerator 9.5 Solution Guide .) Supporting documents you upload are saved in their original format and available to users as attachments to the task. Supporting documents provide supplemental information for the review. You can specify supporting documents in the review template by using the <supporting_documents> element and <document> elements. There are two types of supporting documents. REF types are publicly accessible URLs. DOCUMENT types are documents that are uploaded to the review zone and a URI is used to reference it. The following example shows a public URL that is used a reference supporting document and a document uploaded to the review zone: <?xml version="1.0" encoding="UTF-8"?> <review_context xsi:schemaLocation="http://adobe.com/solutions/rca/reviewcontext" xmlns="http://adobe.com/solutions/rca/reviewcontext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> ... ... <supporting_documents> <document type="DOCUMENT" name="internalreviewguideles.pdf" content-type=""> <uri>http://localhost:8080/contentspace/webdav/RCA/REVIEW_TEMPLATES/SUPPORTING_DOCUMENTS/Procedures001RT/internalreviewguideles.pdf</uri> <description>Internalguidelines</description> </document> <document type="REF" name="external.pdf" content-type=""> <uri>http://wwww.adobe.com/Procedures/external.pdf</uri> <description>Internalguidelines</description> </document> </supporting_documents> ... ... </review_context> You can identify a list of supporting content by name or as a link. The supporting content can serve as a reference to reviewers or approvers while reviewing or approving the review content. To add supporting documents to the review, complete the following steps:
<?xml version="1.0" encoding="utf-8"?> <review_context xsi:schemaLocation="http://adobe.com/solutions/rca/reviewcontext" xmlns="http://adobe.com/solutions/rca/reviewcontext" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <initiator domain="" canonical_name="" name="" oid="" email="" isGroup="false"/> <review_id/> <revision>0</revision> <title/> ... ... <stages> <stage type="PARALLEL_REVIEW" wait_for_expiry="false" name="Basic-ParallelReview" duration="5" duration_unit="DAYS" taskType="WORKSPACE" non_expiring_stage="false"> <start_date/> ... ... </stage> ... <supporting_documents> <document name="ABCReview.pdf" content-type="application/pdf" type="DOCUMENT"> <uri>http://MYSERVER:8080/contentspace/webdav/RCA/REVIEW_TEMPLATES/SUPPORTING_DOCUMENTS/TEMPLATE1/ABCreview.pdf</uri> <description>Supporting document.</description> </document> </supporting_documents> ... </review_context> |
|
// Ethnio survey code removed