Valid Issue: Difference between revisions

From ReliaWiki
Jump to navigation Jump to search
(This and Previous Update are to Match Existing Documentation)
(Previous Description Was Removed To Match Existing XML Documentation)
Line 41: Line 41:
   {{Template:XFRACAS.Blue|<Part/>}}
   {{Template:XFRACAS.Blue|<Part/>}}
  {{Template:XFRACAS.Blue|</Issue>}}
  {{Template:XFRACAS.Blue|</Issue>}}
A valid Issue must meet the following requirements:
* The Issue element must contain an IssueTypeID attribute.
* The Issue element must contain a Description element.
* The Code element is optional.
* The Description element must have a value.<br>
A combination of IssueType, Code and Description must match an existing issue (only description is required).

Revision as of 18:07, 11 February 2015

 <!—A combination of IssueType, Code and Description must match an existing issue. Only Description is required. 
 <Issue> 
   <!—  IssueID must be an Integer. If present, the value must match an existing IssueID to import/update. 
   <!—  If the Issue element does not contain an IssueId, than a new IssueId will be assigned. 
   <IssueID>  1  <IssueID> 
   <!—  The Code must contain a String. 20 characters maximum. The Code element is optional. 
     06   
   <!—  The Description must contain a string. 100 characters maximum. The Issue element must contain a Description element. 
   <Description>  Verify Corrective Action(s)  </Description> 
   <IssueType> 
    <!—  The IssueTypeID must be an Integer. If used, IssueType element must contain an IssueTypeID attribute. 
    <IssueTypeId>  6  </IssueTypeId> 
    <!—  IssueTypeDescription must be a String. 50 characters maximum. The Description element must have a value. 
    <IssueTypeDescription>  PRR Status  </IssueTypeDescription> 
   </IssueType> 
   <!—  If present, IssueDate must be a valid date. 
   </IssueDate> 
    <Year>  2013  </Year> 
    <Month>  6  </Month> 
    <Day>  19  </Day> 
    <Hour>  20  </Hour> 
    <Minute>  21  </Minute> 
    <Second>  0  </Second> 
    <FormattedDate>  06/19/2013 08:21 PM  </FormattedDate> 
   </IssueDate> 
   <!—  ParentIssue may have Code and IssueID elements. 
   <ParentIssue> 
    <!—  The Code element must contain a String. 20 characters maximum 
      07   
    <!—  IssueID must be an Integer 
    <IssueID>  2  <IssueID> 
   <ParentIssue> 
   <!—  Retired is optional and must be a valid date if used. Retired is used for retired issues. 
   <Retired/> 
   <!—  Quantity is optional and must be an integer if used. 
   <Quantity/> 
   <!—  Amount is optional and must be Money if used (Example: 100.00). 
   <Amount/> 
   <!—  Part is optional and must be a valid part if used. 
   <Part/> 
 </Issue>