Definition Type: ComplexType
Name: SalesOrderType
Namespace: http://www.openapplications.org/oagis/9
Containing Schema: SalesOrder.xsd
Abstract
Documentation:
The schema type for SaleOrder. SalesOrder's base abstract type, Order, is shared between PurchaseOrder and SalesOrder. SalesOrder is essentially an extension of PurchaseOrder, but in order to use the local-global design pattern, each of PO and SO needs to instantiate its own Header and Line elements.To do this, we factored out the PO content models, instantiated both PO and SO from Order. Sees an order from end to end...
Collapse XSD Schema Diagram:
Drilldown into SalesOrderLine in schema salesorder_xsd Drilldown into SalesOrderHeader in schema salesorder_xsdXSD Diagram of SalesOrderType in schema salesorder_xsd (Open Applications Group (OAGIS))
Collapse XSD Schema Code:
<xsd:complexType name="SalesOrderType">
    <xsd:annotation>
        <xsd:documentation source="http://www.openapplications.org/oagis/9">The schema type for SaleOrder.  SalesOrder's  base abstract type, Order, is shared between PurchaseOrder and SalesOrder. SalesOrder is essentially an extension of PurchaseOrder, but in order to use the local-global design pattern, each of PO and SO needs to instantiate its own Header and Line elements.To do this, we factored out the PO content models, instantiated both PO and SO from Order.</xsd:documentation>
        <xsd:documentation source="http://www.openapplications.org/oagis/9">Sees an order from end to end...</xsd:documentation>
    </xsd:annotation>
    <xsd:sequence>
        <xsd:element ref="SalesOrderHeader" minOccurs="0" />
        <xsd:element ref="SalesOrderLine" minOccurs="0" maxOccurs="unbounded" />
    </xsd:sequence>
</xsd:complexType>
Collapse Child Elements:
Name Type Min Occurs Max Occurs
SalesOrderHeader nsA:SalesOrderHeader 0 (1)
SalesOrderLine nsA:SalesOrderLine 0 unbounded
Collapse Derivation Tree:
Collapse References:
nsA:SalesOrder