Constraint Descriptor : constraint_acceptack_processingCodeValue (type: ERROR, kind: )

Constraint : constraint_acceptack_processingCodeValue

Constraint Name
constraint_acceptack_processingCodeValue (type: ERROR, kind: )
Package
AcceptAcknowledgement
Description
Valid values for processingCode attribute are D (Debugging), T (Testing) and P (Production) (Table O.1.2-1: Model Attributes)
OCL
not self.processingCode.oclIsUndefined() 
and not self.processingCode.code.oclIsUndefined() 
and (
	self.processingCode.code='T'
	or self.processingCode.code='D'
	or self.processingCode.code='P'
	)