Defining properties to identify a review template

You define a name and description for the review template to make it easy for users to identify it. It is recommended that you ensure that the name of review templates is unique. If you create a review template with the same name as an existing review template, the default is to overwrite the existing one.

To configure properties to identify the review template, use the following elements, which are nested under a <review_context> element.

  • <template_name> : Required. Provide unique string for the name which conforms to XML rules. The value for the <template_name> element must be unique. If you specify a name a name that exists, the review template with that name is overwritten.

  • <template_desc> : Optional. Provide a description of the review template.

  • <template_is_active> : Required. Set the value to true or false. True indicates that the review template is available for use when saved on the LiveCycle server.

  • <template_author> :Required. Set to the value of the person authoring the review template.

  • <compliance_code> : Optional: Provide any string value. For example: SOP 1.2 - Section 5.4.3.1.

For example, the contents of the XML can look like the following code:

<?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/> 
    <purpose/> 
    <status>ONGOING</status> 
    <type>REGULATED_REVIEW</type> 
    <template_name>SampleOrganizationTemplateExample1</template_name> 
    <template_desc>Reviews for internal reviewers.</template_desc> 
    <template_is_active>true</template_is_active> 
    <template_author>Super Administrator</template_author> 
    <compliance_code>LR SOP 1.1</compliance_code> 
    <current_stage>0</current_stage> 
    <comment_server_path/> 
    ... 
</review_context>

// Ethnio survey code removed