HELP!!! Failed validation for emueration value which IS in the schema!

I am so troubled by this and hope someone can shed some light:
I have a schema which has StateCode element . We have all the states from "AL" to "WY" listed as enumeration values...but the xml instance failed to pass validation with "MO", which is part of the enumeration list.
Any one can think of any reasons? We are going live next week with this.
Thanks!
Jasmine

Mike, here is the xsd...the table is created via DBMS_XMLSCHEMA.registerSchema:
<?xml version="1.0" encoding="UTF-8"?>
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xdb="http://xmlns.oracle.com/xdb" elementFormDefault="qualified" attributeFormDefault="unqualified">
     <xs:element name="BranchRegulatoryFiling" xdb:defaultTable="BRNCH_XML_STG_50">
          <xs:complexType>
               <xs:sequence>
                    <xs:element name="FileControl">
                         <xs:complexType>
                              <xs:attribute name="AsOfDate" type="xs:date" use="required"/>
                              <xs:attribute name="FileNumber" type="xs:int" use="required"/>
                              <xs:attribute name="FileTotal" type="xs:int" use="required"/>
                              <xs:attribute name="FirmCRDNumber" type="CRDNUM" use="required"/>
                              <xs:attribute name="SchVer" type="xs:double" use="required" fixed="5.0"/>
                              <xs:attribute name="TrackingNumber" type="xs:string" use="required"/>
                         </xs:complexType>
                    </xs:element>
                    <xs:element name="Branches" xdb:defaultTable="BRANCHES50">
                         <xs:complexType>
                              <xs:sequence>
                                   <xs:element name="Branch" type="BranchType" maxOccurs="unbounded" xdb:defaultTable="BRANCH50"/>
                              </xs:sequence>
                         </xs:complexType>
                    </xs:element>
               </xs:sequence>
          </xs:complexType>
     </xs:element>
     <xs:complexType name="BranchType">
          <xs:sequence>
               <xs:element name="LastAnnualInternalCompVisitDate" type="xs:date" default="1900-01-01">
                    <xs:annotation>
                         <xs:documentation>Ref # B3</xs:documentation>
                    </xs:annotation>
               </xs:element>
               <xs:element name="Address" type="AddressType">
                    <xs:annotation>
                         <xs:documentation>Ref # B4</xs:documentation>
                    </xs:annotation>
               </xs:element>
               <xs:element name="Supervisor" type="SupervisorType">
                    <xs:annotation>
                         <xs:documentation>Ref # B20</xs:documentation>
                    </xs:annotation>
               </xs:element>
               <xs:element name="BranchStatistics" type="BranchStatisticsType"/>
          </xs:sequence>
          <xs:attributeGroup ref="BranchCodeAttributeGroup"/>
     </xs:complexType>
     <xs:complexType name="SupervisorType">
          <xs:sequence>
               <xs:element name="AsOfMonthEnd" type="AsOfMonth">
                    <xs:annotation>
                         <xs:documentation>Ref # B50</xs:documentation>
                    </xs:annotation>
               </xs:element>
               <xs:choice>
                    <xs:element name="PersonIncharge">
                         <xs:annotation>
                              <xs:documentation>Ref # B22</xs:documentation>
                         </xs:annotation>
                         <xs:complexType>
                              <xs:all>
                                   <xs:element name="TotalComm" type="dollarAmount" minOccurs="0">
                                        <xs:annotation>
                                             <xs:documentation>Ref # B65</xs:documentation>
                                        </xs:annotation>
                                   </xs:element>
                                   <xs:element name="OffSiteSupervisor">
                                        <xs:annotation>
                                             <xs:documentation>Ref # B25</xs:documentation>
                                        </xs:annotation>
                                        <xs:complexType>
                                             <xs:sequence>
                                                  <xs:element name="TotalComm" type="dollarAmount" minOccurs="0">
                                                       <xs:annotation>
                                                            <xs:documentation>Ref # B65</xs:documentation>
                                                       </xs:annotation>
                                                  </xs:element>
                                             </xs:sequence>
                                             <xs:attribute name="ProducingIndicator" type="YN" use="required">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B26</xs:documentation>
                                                  </xs:annotation>
                                             </xs:attribute>
                                             <xs:attributeGroup ref="RegisteredRepType"/>
                                             <xs:attribute name="InternalProductionNumber" type="InternalProdNbr" use="required">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B80</xs:documentation>
                                                  </xs:annotation>
                                             </xs:attribute>
                                        </xs:complexType>
                                   </xs:element>
                              </xs:all>
                              <xs:attribute name="ProducingIndicator" type="YN" use="optional">
                                   <xs:annotation>
                                        <xs:documentation>Ref # B23</xs:documentation>
                                   </xs:annotation>
                              </xs:attribute>
                              <xs:attributeGroup ref="RegisteredRepType_optional"/>
                              <xs:attribute name="InternalProductionNumber" type="InternalProdNbr" use="required">
                                   <xs:annotation>
                                        <xs:documentation>Ref # B80</xs:documentation>
                                   </xs:annotation>
                              </xs:attribute>
                         </xs:complexType>
                    </xs:element>
                    <xs:element name="OnSiteSupervisor">
                         <xs:annotation>
                              <xs:documentation>Ref # B28</xs:documentation>
                         </xs:annotation>
                         <xs:complexType>
                              <xs:attribute name="ProducingIndicator" type="YN" use="required">
                                   <xs:annotation>
                                        <xs:documentation>Ref # B29</xs:documentation>
                                   </xs:annotation>
                              </xs:attribute>
                              <xs:attributeGroup ref="RegisteredRepType"/>
                              <xs:attribute name="InternalProductionNumber" type="InternalProdNbr" use="required">
                                   <xs:annotation>
                                        <xs:documentation>Ref # B80</xs:documentation>
                                   </xs:annotation>
                              </xs:attribute>
                         </xs:complexType>
                    </xs:element>
               </xs:choice>
          </xs:sequence>
     </xs:complexType>
     <xs:attributeGroup name="BranchCodeAttributeGroup">
          <xs:attribute name="NYSEBranchCode" type="xs:string" use="required">
               <xs:annotation>
                    <xs:documentation>Ref # B1</xs:documentation>
               </xs:annotation>
          </xs:attribute>
     </xs:attributeGroup>
     <xs:attributeGroup name="RegisteredRepType">
          <xs:attribute name="RRLastName" type="xs:string" use="required">
               <xs:annotation>
                    <xs:documentation>Ref # B14</xs:documentation>
               </xs:annotation>
          </xs:attribute>
          <xs:attribute name="RRFirstName" type="xs:string" use="required">
               <xs:annotation>
                    <xs:documentation>Ref # B15</xs:documentation>
               </xs:annotation>
          </xs:attribute>
          <xs:attribute name="RRCRDNumber" type="CRDNUM" use="required">
               <xs:annotation>
                    <xs:documentation>Ref # B16</xs:documentation>
               </xs:annotation>
          </xs:attribute>
     </xs:attributeGroup>
     <xs:attributeGroup name="RegisteredRepType_optional">
          <xs:attribute name="RRLastName" type="xs:string" use="optional">
               <xs:annotation>
                    <xs:documentation>Ref # B14</xs:documentation>
               </xs:annotation>
          </xs:attribute>
          <xs:attribute name="RRFirstName" type="xs:string" use="optional">
               <xs:annotation>
                    <xs:documentation>Ref # B15</xs:documentation>
               </xs:annotation>
          </xs:attribute>
          <xs:attribute name="RRCRDNumber" type="CRDNUM" use="optional">
               <xs:annotation>
                    <xs:documentation>Ref # B16</xs:documentation>
               </xs:annotation>
          </xs:attribute>
     </xs:attributeGroup>
     <xs:attributeGroup name="FilingAttributeGroup">
          <xs:attribute name="AsOfDate" type="xs:date"/>
          <xs:attribute name="FirmCRDNumber" type="CRDNUM" use="required"/>
     </xs:attributeGroup>
     <xs:complexType name="BranchStatisticsType">
          <xs:sequence>
               <xs:element name="CurrentNumberOf90DayRestrictedAccounts" type="xs:nonNegativeInteger">
                    <xs:annotation>
                         <xs:documentation>Ref # B55</xs:documentation>
                    </xs:annotation>
               </xs:element>
               <xs:element name="NumberOfIndependentContractors" type="xs:nonNegativeInteger">
                    <xs:annotation>
                         <xs:documentation>Ref # B56</xs:documentation>
                    </xs:annotation>
               </xs:element>
               <xs:element name="TotalNumbersOfRRs" type="xs:nonNegativeInteger">
                    <xs:annotation>
                         <xs:documentation>Ref # B57</xs:documentation>
                    </xs:annotation>
               </xs:element>
               <xs:element name="TotalNumberOfRRDiscretionaryAccounts" type="xs:nonNegativeInteger">
                    <xs:annotation>
                         <xs:documentation>Ref # B58</xs:documentation>
                    </xs:annotation>
               </xs:element>
               <xs:element name="TotalAssetsUnderMgmt" type="positivedollarAmount">
                    <xs:annotation>
                         <xs:documentation>Ref # B59</xs:documentation>
                    </xs:annotation>
               </xs:element>
               <xs:element name="ActiveAccounts">
                    <xs:annotation>
                         <xs:documentation>Ref # B60</xs:documentation>
                    </xs:annotation>
                    <xs:complexType>
                         <xs:sequence>
                              <xs:element name="ActiveAccountsByMonth" minOccurs="3" maxOccurs="3">
                                   <xs:complexType>
                                        <xs:sequence>
                                             <xs:element name="AsOfMonthEnd" type="AsOfMonth">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B50</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                             <xs:element name="NumberOfActiveAccounts" type="xs:nonNegativeInteger">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B61</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                        </xs:sequence>
                                   </xs:complexType>
                              </xs:element>
                         </xs:sequence>
                         <xs:attribute name="AvgNumberOfActiveAccounts" type="xs:nonNegativeInteger" use="required">
                              <xs:annotation>
                                   <xs:documentation>Ref # B62</xs:documentation>
                              </xs:annotation>
                         </xs:attribute>
                    </xs:complexType>
               </xs:element>
               <xs:element name="GrossRevenues">
                    <xs:annotation>
                         <xs:documentation>Ref # B63</xs:documentation>
                    </xs:annotation>
                    <xs:complexType>
                         <xs:sequence>
                              <xs:element name="GrossRevenueByMonth" minOccurs="12" maxOccurs="12">
                                   <xs:complexType>
                                        <xs:sequence>
                                             <xs:element name="AsOfMonthEnd" type="AsOfMonth">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B50</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                             <xs:element name="GrossRevenue" type="dollarAmount">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B64</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                        </xs:sequence>
                                   </xs:complexType>
                              </xs:element>
                         </xs:sequence>
                         <xs:attribute name="TotalGrossRevenueForLast12Months" type="positivedollarAmount" use="required">
                              <xs:annotation>
                                   <xs:documentation>Ref # B66</xs:documentation>
                              </xs:annotation>
                         </xs:attribute>
                    </xs:complexType>
               </xs:element>
               <xs:element name="TradeCorrections">
                    <xs:annotation>
                         <xs:documentation>Ref # B67</xs:documentation>
                    </xs:annotation>
                    <xs:complexType>
                         <xs:sequence>
                              <xs:element name="TradeCorrectionsByMonth" minOccurs="3" maxOccurs="3">
                                   <xs:complexType>
                                        <xs:sequence>
                                             <xs:element name="AsOfMonthEnd" type="AsOfMonth">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B50</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                             <xs:element name="NumberOfTradeCorrections" type="xs:nonNegativeInteger">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B68</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                        </xs:sequence>
                                   </xs:complexType>
                              </xs:element>
                         </xs:sequence>
                         <xs:attribute name="AvgNumberOfTradeCorrections" type="xs:nonNegativeInteger" use="required">
                              <xs:annotation>
                                   <xs:documentation>Ref # B69</xs:documentation>
                              </xs:annotation>
                         </xs:attribute>
                    </xs:complexType>
               </xs:element>
               <xs:element name="RegTExtensions">
                    <xs:annotation>
                         <xs:documentation>Ref # B70</xs:documentation>
                    </xs:annotation>
                    <xs:complexType>
                         <xs:sequence>
                              <xs:element name="RegTExtensionsByMonth" minOccurs="3" maxOccurs="3">
                                   <xs:complexType>
                                        <xs:sequence>
                                             <xs:element name="AsOfMonthEnd" type="AsOfMonth">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B50</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                             <xs:element name="NumberOfRegTExtensions" type="xs:nonNegativeInteger">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B71</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                        </xs:sequence>
                                   </xs:complexType>
                              </xs:element>
                         </xs:sequence>
                         <xs:attribute name="AvgNumberOfRegTExtensions" type="xs:nonNegativeInteger" use="required">
                              <xs:annotation>
                                   <xs:documentation>Ref # B72</xs:documentation>
                              </xs:annotation>
                         </xs:attribute>
                    </xs:complexType>
               </xs:element>
               <xs:element name="BouncedChecks" minOccurs="0">
                    <xs:annotation>
                         <xs:documentation>Ref # B73</xs:documentation>
                    </xs:annotation>
                    <xs:complexType>
                         <xs:sequence>
                              <xs:element name="BouncedChecksByMonth" minOccurs="3" maxOccurs="3">
                                   <xs:complexType>
                                        <xs:all>
                                             <xs:element name="AsOfMonthEnd" type="AsOfMonth">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B50</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                             <xs:element name="TotalNumberOfBouncedChecks" type="xs:nonNegativeInteger">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B74</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                             <xs:element name="TotalAmountOfBouncedChecks" type="positivedollarAmount">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B74a</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                        </xs:all>
                                   </xs:complexType>
                              </xs:element>
                         </xs:sequence>
                         <xs:attribute name="AvgNumberOfBouncedChecks" type="xs:nonNegativeInteger" use="required">
                              <xs:annotation>
                                   <xs:documentation>Ref # B75</xs:documentation>
                              </xs:annotation>
                         </xs:attribute>
                    </xs:complexType>
               </xs:element>
               <xs:element name="SSByFirm">
                    <xs:annotation>
                         <xs:documentation>Ref # B77</xs:documentation>
                    </xs:annotation>
                    <xs:complexType>
                         <xs:sequence>
                              <xs:element name="SS" minOccurs="0" maxOccurs="unbounded">
                                   <xs:complexType>
                                        <xs:sequence>
                                             <xs:element name="SSRegisteredRep" type="RegisteredRepType">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B77</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                             <xs:element name="SSEffectiveDate" type="xs:date">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B84</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                             <xs:element name="SSReason" type="xs:string">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B85</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                             <xs:element name="RRCode" type="InternalProdNbr">
                                                  <xs:annotation>
                                                       <xs:documentation>Ref # B80</xs:documentation>
                                                  </xs:annotation>
                                             </xs:element>
                                        </xs:sequence>
                                   </xs:complexType>
                              </xs:element>
                         </xs:sequence>
                         <xs:attribute name="TotalNumberOfSSbyFirm" type="xs:nonNegativeInteger" use="required">
                              <xs:annotation>
                                   <xs:documentation>Ref # B78</xs:documentation>
                              </xs:annotation>
                         </xs:attribute>
                    </xs:complexType>
               </xs:element>
          </xs:sequence>
     </xs:complexType>
     <xs:complexType name="AddressType">
          <xs:sequence>
               <xs:element name="StreetAddress1">
                    <xs:annotation>
                         <xs:documentation>Ref # B4</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                         <xs:restriction base="xs:string">
                              <xs:whiteSpace value="preserve"/>
                         </xs:restriction>
                    </xs:simpleType>
               </xs:element>
               <xs:element name="StreetAddress2" minOccurs="0">
                    <xs:annotation>
                         <xs:documentation>Ref # B5</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                         <xs:restriction base="xs:string">
                              <xs:whiteSpace value="preserve"/>
                         </xs:restriction>
                    </xs:simpleType>
               </xs:element>
               <xs:element name="City">
                    <xs:annotation>
                         <xs:documentation>Ref # B6</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                         <xs:restriction base="xs:string">
                              <xs:whiteSpace value="preserve"/>
                         </xs:restriction>
                    </xs:simpleType>
               </xs:element>
               <xs:element name="State">
                    <xs:annotation>
                         <xs:documentation>Ref # B7</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                         <xs:restriction base="stateCodeType">
                              <xs:whiteSpace value="collapse"/>
                         </xs:restriction>
                    </xs:simpleType>
               </xs:element>
               <xs:element name="Country">
                    <xs:annotation>
                         <xs:documentation>Ref # B8</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                         <xs:restriction base="xs:string">
                              <xs:minLength value="2"/>
                              <xs:maxLength value="3"/>
                              <xs:whiteSpace value="collapse"/>
                         </xs:restriction>
                    </xs:simpleType>
               </xs:element>
               <xs:element name="ZipCode">
                    <xs:annotation>
                         <xs:documentation>Ref # B9</xs:documentation>
                    </xs:annotation>
                    <xs:simpleType>
                         <xs:restriction base="xs:string">
                              <xs:whiteSpace value="collapse"/>
                         </xs:restriction>
                    </xs:simpleType>
               </xs:element>
               <xs:element name="IsBankLocation" type="YN" minOccurs="0">
                    <xs:annotation>
                         <xs:documentation>Ref # B4a</xs:documentation>
                    </xs:annotation>
               </xs:element>
          </xs:sequence>
     </xs:complexType>
     <!-- Future use
<xs:complexType name="NameType">
<xs:attribute name="LastName" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>Ref # BXX</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="FirstName" type="xs:string" use="required">
<xs:annotation>
<xs:documentation>Ref # BXX</xs:documentation>
</xs:annotation>
</xs:attribute>
<xs:attribute name="CRDNumber" type="CRDNUM">
<xs:annotation>
<xs:documentation>Ref # BXX</xs:documentation>
</xs:annotation>
</xs:attribute>
</xs:complexType>
<xs:complexType name="TelephoneNumberType">
<xs:sequence>
<xs:element name="AreaCode" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Ref # Bxx</xs:documentation>
</xs:annotation>
</xs:element>
<xs:element name="TelNumber" type="xs:string" minOccurs="0">
<xs:annotation>
<xs:documentation>Ref # Bxx</xs:documentation>
</xs:annotation>
</xs:element>
</xs:sequence>
</xs:complexType>
<xs:complexType name="WebSiteAddressType">
<xs:sequence>
<xs:element name="WebSiteAddress" type="xs:string" minOccurs="0"/>
</xs:sequence>
</xs:complexType>-->
     <xs:complexType name="RegisteredRepType">
          <xs:attribute name="RRCRDNumber" type="CRDNUM" use="required">
               <xs:annotation>
                    <xs:documentation>Ref # B81</xs:documentation>
               </xs:annotation>
          </xs:attribute>
          <xs:attribute name="RRLastName" type="xs:string">
               <xs:annotation>
                    <xs:documentation>Ref # B82</xs:documentation>
               </xs:annotation>
          </xs:attribute>
          <xs:attribute name="RRFirstName" type="xs:string">
               <xs:annotation>
                    <xs:documentation>Ref # B83</xs:documentation>
               </xs:annotation>
          </xs:attribute>
     </xs:complexType>
     <xs:simpleType name="stateCodeType">
          <xs:restriction base="xs:string">
               <xs:minLength value="2"/>
               <xs:maxLength value="2"/>
               <xs:enumeration value="AL"/>
               <xs:enumeration value="AK"/>
               <xs:enumeration value="AR"/>
               <xs:enumeration value="AZ"/>
               <xs:enumeration value="CA"/>
               <xs:enumeration value="CO"/>
               <xs:enumeration value="CT"/>
               <xs:enumeration value="DC"/>
               <xs:enumeration value="DE"/>
               <xs:enumeration value="FL"/>
               <xs:enumeration value="GA"/>
               <xs:enumeration value="HI"/>
               <xs:enumeration value="IA"/>
               <xs:enumeration value="ID"/>
               <xs:enumeration value="IL"/>
               <xs:enumeration value="IN"/>
               <xs:enumeration value="KS"/>
               <xs:enumeration value="KY"/>
               <xs:enumeration value="LA"/>
               <xs:enumeration value="MA"/>
               <xs:enumeration value="MD"/>
               <xs:enumeration value="ME"/>
               <xs:enumeration value="MI"/>
               <xs:enumeration value="MN"/>
               <xs:enumeration value="MO"/>
               <xs:enumeration value="MS"/>
               <xs:enumeration value="MT"/>
               <xs:enumeration value="NC"/>
               <xs:enumeration value="ND"/>
               <xs:enumeration value="NE"/>
               <xs:enumeration value="NH"/>
               <xs:enumeration value="NJ"/>
               <xs:enumeration value="NM"/>
               <xs:enumeration value="NV"/>
               <xs:enumeration value="NY"/>
               <xs:enumeration value="OH"/>
               <xs:enumeration value="OK"/>
               <xs:enumeration value="OR"/>
               <xs:enumeration value="PA"/>
               <xs:enumeration value="PR"/>
               <xs:enumeration value="RI"/>
               <xs:enumeration value="SC"/>
               <xs:enumeration value="SD"/>
               <xs:enumeration value="TN"/>
               <xs:enumeration value="TX"/>
               <xs:enumeration value="UT"/>
               <xs:enumeration value="VA"/>
               <xs:enumeration value="VT"/>
               <xs:enumeration value="WA"/>
               <xs:enumeration value="WI"/>
               <xs:enumeration value="WV"/>
               <xs:enumeration value="WY"/>
               <xs:enumeration value="AS"/>
               <xs:enumeration value="VI"/>
               <xs:enumeration value="PR"/>
               <xs:enumeration value="AA"/>
               <xs:enumeration value="AE"/>
               <xs:enumeration value="AP"/>
               <xs:enumeration value="FM"/>
               <xs:enumeration value="GU"/>
               <xs:enumeration value="MP"/>
               <xs:enumeration value="PW"/>
               <xs:enumeration value="CZ"/>
               <xs:enumeration value="TT"/>
               <xs:enumeration value="AB"/>
               <xs:enumeration value="PQ"/>
               <xs:enumeration value="SK"/>
               <xs:enumeration value="ON"/>
          </xs:restriction>
     </xs:simpleType>
     <xs:simpleType name="YN">
          <xs:restriction base="xs:string">
               <xs:enumeration value="Y"/>
               <xs:enumeration value="N"/>
          </xs:restriction>
     </xs:simpleType>
     <xs:simpleType name="dollarAmount">
          <xs:restriction base="xs:long"/>
     </xs:simpleType>
     <xs:simpleType name="positivedollarAmount">
          <xs:restriction base="xs:long">
               <xs:minInclusive value="0"/>
          </xs:restriction>
     </xs:simpleType>
     <xs:simpleType name="CRDNUM">
          <xs:restriction base="xs:positiveInteger"/>
     </xs:simpleType>
     <xs:simpleType name="AsOfMonth">
          <xs:annotation>
               <xs:documentation>Format [YYYYMM]</xs:documentation>
          </xs:annotation>
          <xs:restriction base="xs:string">
               <xs:length value="6"/>
               <xs:pattern value="20[0-5][0-9][0-1][0-9]"/>
          </xs:restriction>
     </xs:simpleType>
     <xs:simpleType name="InternalProdNbr">
          <xs:restriction base="xs:string"/>
     </xs:simpleType>
</xs:schema>

Similar Messages

  • I purchased ..my phone in India-and warranty is about to expire ..if I purchase apple care kit from US-will it be valid for phone`s which are purchased in India.

    I purchased ..my phone in India…and warranty is about to expire ..
    if I purchase apple care kit from US…will it be valid for phone`s which are purchased in India.

    Yes

  • I,m looking for handsfree for iphone 4s, which one is the best for it

    i,m looking for handsfree for iphone 4s, which one is the best for it

    I really like the Plantronics Voyager Pro bluetooth headset.  I have tried a lot of the ones on the market and the Plantronics one that I now use has - a long battery life, excellent sound quality and very low background noise. I occasionally use it when in a vehicle (although I do try to avoid doing this) and people on the other end of the line don't even realise that I am in a car.

  • I did a restore settings for my iTouch which wiped out the apps.  What happens now when I sync my iPad?  Will I lose all my apps on it?

    I did a restore settings for my iTouch which wiped out the apps.  What happens when I sync my iPad? Will I lose all the apps on the iPad?  I realize it was a huge mistake to mess with the settings on the iTouch.

    Completely seperate.

  • Validation for saving values in jsp--is validation compulsory?

    Hi all,
    in my application there is a jsp which uses a pagebean.
    now i added somemore attributes to the pagebean and included them in the jsp as well.
    there is javascript validation for the previous attributes.
    the values can be modified and should be saved to the db2 database on cliking the modify botton.
    my question is do i need to include java script validation for the new attributes that i added to the pagebean and jsp to get modified and stored to the database?
    or can i modify and save the new values without validation?
    is validation compulsory?
    your reply is very imp to me friends
    cheers and thanks in advance

    well, validation in general isn't required, but if some bad value is entered and not otherwise checked for, you could get errors.
    and if you use validation at all, then the server-side validation will always run even if the JS validation runs or not.

  • Issue when installing SQL Server Express 2012 - "The requested control is not valid for this service" + "Could not find the database engine startup handle"

    Good morning,
    I'm experiencing the following issue when installing Microsoft SQL Server Express 2012 (with tools, SQLEXPRWT_x86_ENU.exe) on the laptop of my company;
    Installation goes plain until around the end of the progress bar, it stops on the setup of
    SqlEngineDBStartConfigAction_install_configrc_Cpu32
    giving 7-8 times, even pressing "Cancel", the message "The requested control is not valid for this service";
    After this, I receive one last message ""Could not find the database engine startup handle", then installation ends with failures, in particular the Database Engine and the Server Replication failed to be installed.
    I've put in my SkyDrive the error log I received after the install;
    I'm at full disposal if you need further information,
    thank you in advance
    Best regards
    Francesco

    Well, i just ran into this issue and the problem was lack of admin rights. It was my company's laptop so got the setup initiated by my company's IT team with admin rights. However, the upon completion of setup, i go the same error messages as stated above: 
    SqlEngineDBStartConfigAction_install_configrc_Cpu32
    giving 7-8 times, even pressing "Cancel", the message "The requested control is not valid for this service";
    After this, I receive one last message ""Could not find the database engine startup handle", then installation ends with failures, in particular the Database Engine and the Server Replication failed to be installed.
    Also, if you open SQL Server Configuration, the status of the service is "Change Pending" and you would not be able to set the startup login type to Local Service/System/Network.
    Then, I just got my account added as Local Admin and then tried to start the service and was able to.
    However, I am not sure whether same was the case for you.
    Please mark the answer as helpful if i have answered your query. Thanks and Regards, Kartar Rana

  • Trasaction code for invoices detail which has hit the WBS element

    Hi All
    Usually my users receive a list of assets which were capitalized from AUC account through Project system.
    Generally charges are posted to WBS element and then users capitalize assets using that WBS element through settlement.
    Users have been asked to give all the invoices detail which has hit the WBS element from which that particular assets have been capitalized. is there any transaction code to get the all invoices detail which has hit the WBS element from that particular assets.
    thank you

    If that is what you want then why are you using WBS element?
    You can directly create the asset on goods receipt via MM module and then the invoice will automatically go against that asset.
    If you still want to use the WBS element for capitalisation then you can use the WBS element statistically with a type 90 cost element posting and the sset will still be crteated when goods receipted/ invopice receipted

  • Where do I get a nano SIM card for my iPad which works in the USA so I can use Tom Tom app

    Where do I get a nano SIM card for my iPad which will work in the USA.  I need to get on line in the car. Do I need one from AT&amp;T  and can you get in the USA as easily as getting a sin card here.

    We don't know where "here" is.
    You don't need a sim card to use any navigation app. Navigation apps use GPS which is independent of cellular data.

  • Validations for sum value

    Hey,
    I have a problem with validations:
    I have in a product repository a multi-valued qualified lookup into an 'ingredients' table.
    In the 'ingredients' table I have several ingredients and as qualifier the percentage of its share in the product.
    So now I want to make a validation in the 'product' main table checking if the sum of all ingredients' percentages is 100%.
    I haven't found a sum formula though, yet.
    Can anyone help, please?
    Thanks,
    Chris

    Hi Christiane,
    I do not know a solution for that using SP03, but SP04 will have aggregation functions. You can apply these functions e.g. to the non-qualifier fields in order to sum them up. The bad news is, that you will have to wait until August....
    Kind regards
    Andreas

  • I want a job for apple in which I design the actual iPods, iPhones, iPads, and iMacs. What is this called? I do not necessarily want to do any internal stuff. I would like to design the actual device and help build it. I want to give ideas for the devices

    I would love a job where I can help make the blueprints of how I devices will be made. I want a job where I can more so help plan the creating of every new device rather than building the already planned devices.

    There is no simple job description or position that would fit. The jobs of design are generally split among many people and roles. You might try viewing the existing jobs; that might give you some clues as to avenues of education and job experience to pursue. Viewing the Design jobs might give you at least a start:
    https://jobs.apple.com/us/search?#function&t=0&sb=req_open_dt&so=1&j=DES&lo=0*US A&pN=1
    Regards.

  • How to create an XSD for file adaptor which will ignore the records that are not required.

    Hi All,
       I have a requirement, the Fixed Length file contains
    30013742387462382938742      82347023984623087   
    30037348237  983743  9837423098  98347 
    10108472398   98034702398409238 9838472398   09823409238
    300163527 387462398746 38746293874693746324763
    101037642873643 37438724683746837648 873648736
    200138743986493874398
    2002738469837246
    10003784629837469283746937463987469387
    I need to select only the records that startswith 3001 and 3003 which are of different types and ignore the remaining records like 1010,2001,2002,1000.
    Can any one help me on this.

    You can make use of "conditionValue" or "startsWith" attributes while designing you native XSD.
    Check this example - Native Format Builder Wizard - 11g Release 1 (11.1.1.6.3) for better understanding.

  • Search the registry for a Value, and then use the Value's data

    Hoping someone here can help me. I am attempting to find a binary value in the registry and I am having no luck so far. 
    Here is what I currently have:
    $key = "HKCU:\software\microsoft\office\15.0\Outlook\Profiles\Outlook"
    Get-ChildItem $key -rec -ea SilentlyContinue | foreach {
    $CurrentKey = (Get-ItemProperty -Path $_.PsPath -ErrorAction SilentlyContinue)
    if ($CurrentKey -match "001f6700") {
    $data = $CurrentKey.PSPath
    $data2 = Get-ItemProperty -Path . -Name "001f6700"
    echo $data2
    # $data3 = [Text.Encoding]::ASCII.getString($data2)
    echo $data3

    Finally got it working with this code:
    $x = Get-ChildItem HKCU:\software\microsoft\office -rec -ea SilentlyContinue |
    Where-Object {(Get-ItemProperty -path $_.PSPath) -match "001f6700"} |
    select -Property Property, Name, PSPath
    $y = Get-ItemPropertyValue -Path $X.PSPath -Name 001f6700
    for($i = 0; $i -clt $x.Count; $i++)
    [Text.Encoding]::unicode.getString($y[$i].syncroot)
    credit goes to a Mr. Nowacki

  • Exit or badi for tcode F110, which called during the payment run.

    Hi All,
    We have a requirement to create a txt file in the application folder, while doing the payment run.
    right we are copying the standard program RFFOEDI1, but we dont know in which part of code , we can find the values from REGUP and REGUH tables, so that we can code based that.
    so if someone can get the exit name for this purpose or where to find the REGUP values, it will be great.
    Regards,
    Shobana.K

    In program RFFOEDI1 subroutine EDI has logic of creating edi messages.
    If you are replacing edi functionality with custom file creation then replace call to this form with you own form.
    Program use logical database and FIELD-GROUPS to retreive and process data. I would recommend get familarise youself with FIELD-GROUPS.

  • Need help on IDoc for Picking, Packing and PGI against the Sale order

    Hi All,
    I am new to this IDoc stuffs. Below is the scenario for which I would like to know the details of the IDoc...
    Business Case:
    1. Storage location is a HU Managed but not WM managed.
    2. This storage locations is managed by a third party
    3. Outbound delivery document against the SO will be created by our personnels in SAP for this storage location.
    4. Picking, Packing and PGI needs to happen/post via Idoc. (By packing here, i refer to assign the HUs that are already created for the materials and is available in the storage location and not repacking)
    Is there any standard IDoc that can be used here to Pick, Pack and post PGI. We would like to have picking and packing in a first idoc and PGI on the second idoc.
    Thanks,
    Prashant

    Hi Typewriter,
    Thanks for your reply on this post..
    The business process is as below (it was changed recently to have the creation of OBD, pick HUS and then post GI via single IDOC)
    1. We have a storage loc in our enterprise structure that is HU managed but not WM managed.
    2. This storage loc is being maintained by a third party.
    3. SO will be created to be shipped out of this plant/sloc.
    3. The stocks at this storage loc will be Special stock "E" against the sales order. And the stocks will be Packed in HUs.
    4. The third party is informed to deliver the stocks (HUs - that do have the special stock number which internally refers to the the SO number and the line item number) directly to ship to party address in SO.
    5. The 3rd party will physically ship the HUs to customer and send in the details that they have shipped goods against the sales order.
    6. The details sent by the 3rd party will be received in SAP to create OBD for the sales order, Pick, Pack and post GI. This can happen via a single IDOC..
    I am now planning to create a custom IDOC type referring to the standard IDOC type DELVRY03 and message type DESADV and to use a custom BAPI/FM.
    Do you think I am using the right ones?
    Thanks,
    Prashant Kumar

  • Need help: Belkin Flip for Mac mini doesn't support the new Intel chip?!

    Hi folks,
    I recently purchased a Mac mini Intel Core Duo and planned to use a Belkin KVM Flip switch for it and my Sony VAIO.
    However, the current Belkin KVM Flip switch for the Mac Mini does NOT support the Intel Core Duo. Until Belkin comes up with a switch that does, I have to unplug and replug my monitor, keyboard and mouse into the appropriate computer to use either one. Obviously, that isn't very convenient. Has anyone else encountered this problem and come up with a better solution?
    Thanks.
    Mac mini Intel Core Duo   Mac OS X (10.4)   KVM switch for a Sony VAIO

    I think what you're saying is that I should just swap out the monitor cable from one computer to the other when I want to use that computer. Not elegant, as you say, but workable.
    Given you want to use a Flip I gather you're wanting both of your computers permanently connected to your TV/display at the same time. To do that without a KVM you will need to, for instance, connect your Mac mini to the RGB input and then your Vaio to HDMI. So, to select which computer you want you actually want to view you use the display remote just like you would if you were swapping from your cable box to your DVD player. I would suggest you play around with whatever combination gives you the best quality for both computers as not all inputs to your TV have the same quality.
    That takes care of video. Now, for USB, yes you will have to physically swap a cable although there are many ways you can do this which does in some way depend on how you place your computer and the peripherals you want connect to one or both computers. What you do is use a USB hub with everything connected (keyboard, mouse scanner etc) to it and which ever computer you want to use you connect it to the hub.
    It's all about finding a solution that suits you the best.
    PS As for the Flip, you might want to note that the Flip does NOT have digital DVI connectors. It has two analog VGA connectors which at high resolution does not perform at all well. I would suggest you ensure that the VGA performance to your 1080i TV is acceptable before buying this product.

Maybe you are looking for

  • Invoking BPEL process from Servlet : ejb/collaxa/system/DeliveryBean error

    Hi All, My requirement is as below: Servlet will receive the delimited HTTP request and convert it into XML. The xml payload will be used to invoke the BPEL Process deployed on Weblogic 10.3 (SOA-INFRA) using Idelivery Class Method. The problem I am

  • Hello, how can i fix my home button, it activates itself all of the time.

    my iphone has a mind of its own! the home button activates its self all of the time. if i am using a app it will go back to the menu, if locked it will open voice command. i have tried reseting, updating it and all of that. its not at all damaged and

  • CIN Configuration TAXINN

    Dear All, I have to do  SD-CIN configuration, following TAXINN, I am not much aware about it. Request you to provide the documents and guidelines to configure the basic excise duty, Education cess and Higher Education Cess in case of TAXINN. Thanks i

  • URGENT!!reports and lovs

    Oracle Portal Report I created an Lov named "tabb" to list the tables from a remote database. it works fine. i want to list the fields available in each table using the LOV. i used reports from SQL Query. i used the following query;owns is the dblink

  • I just rented a movie on my 4s but now I can't find it...where is it?

    I just rented a movie on my 4s but now I cant find it. Anyone know how to watch it?