CreateEditionRequest
    
    
    
    Permission:CreateEditionRequest
    
    
    
    
        
            
                | Exception | 
                Severity | 
                Code | 
                Condition | 
            
                
                    | ArgumentMissing | 
                    Critical | 
                    10010001 | 
                    A required request input has not been specified. | 
                
                
                    | IdentifierDoesNotExist | 
                    Critical | 
                    10010002 | 
                    Specified identifier does not exist. | 
                
                
                    | MultipleRecordsFound | 
                    Critical | 
                    10010004 | 
                    Multiple records found for the identifier. | 
                
                
                    | ArgumentExists | 
                    Critical | 
                    10010016 | 
                    The code name for the specified structure identifier already exists. | 
                
                
                    | LoadInProgress | 
                    Critical | 
                    10040005 | 
                    Batch load is under progress for this list. | 
                
                
                    | UnresolvedBatchErrors | 
                    Critical | 
                    10080003 | 
                    There are unresolved batch errors in the specified structure. | 
                
                
                    | MustRunPastData | 
                    Critical | 
                    10080004 | 
                    Past data needs to be run on this structure. | 
                
                
                    | MustRunSuppression | 
                    Critical | 
                    10080005 | 
                    Suppression needs to be run on this structure. | 
                
                
                    | EditionCanNotBeAddedToAdHocStructure | 
                    Critical | 
                    10090001 | 
                    Edition cannot be created on an Ad-Hoc structure. | 
                
        
     
 
    
    
        
        
            The following is an XML example of the CreateEditionRequest sent to the 
            Editions.Create method.
            
            
                <soapenv:Envelope xmlns:ns="http://schemas.gallup.com/oms/2010/10/" xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
  <soapenv:Header />
  <soapenv:Body>
    <ns:Create xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
      <ns:request i:type="a:CreateEditionRequest" xmlns:a="http://schemas.gallup.com/oms/2010/10/Edition">
        <a:Structure i:type="b:StructureIdIdentifier" xmlns:b="http://schemas.gallup.com/oms/2010/10/Identifiers">
          <b:StructureId>1234</b:StructureId>
        </a:Structure>
        <a:Name>EditionName</a:Name>
        <a:CodeName>EditionCodeName</a:CodeName>
      </ns:request>
    </ns:Create>
  </soapenv:Body>
</soapenv:Envelope>