import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_CustomerSalesAreaText" of service "API_BUSINESS_PARTNER". */ export declare class CustomerSalesAreaText extends Entity implements CustomerSalesAreaTextType { /** * Technical entity name for CustomerSalesAreaText. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the CustomerSalesAreaText entity */ static _keys: string[]; /** * Customer Number. * Gives an alphanumeric key, which clearly identifies the customer or vendor in the SAP system. * Maximum length: 10. */ customer: DeserializedType; /** * Sales Organization. * An organizational unit responsible for the sale of certain products or services. The responsibility of a sales organization may include legal liability for products and customer claims. * You can assign any number of distribution channels and divisions to a sales organization. A particular combination of sales organization, distribution channel, and division is known as a sales area. * Maximum length: 4. */ salesOrganization: DeserializedType; /** * Distribution Channel. * The way in which products or services reach the customer. Typical examples of distribution channels are wholesale, retail, or direct sales. * You can maintain information about customers and materials by sales organization and distribution channel. Within a sales organization you can deliver goods to a given customer through more than one distribution channel.You can assign a distribution channel to one or more sales organizations. If, for example, you have numerous sales organizations, each sales organization may use the "Wholesale" distribution channel.For each combination of sales organization and distribution channel, you can further assign one or more of the divisions that are defined for the sales organization. You can, for example, assign "Food" and "Non-food" divisions to the "Wholesale" distribution channel. A particular combination of sales organization, distribution channel, and division is known as a sales area. * Maximum length: 2. */ distributionChannel: DeserializedType; /** * Division. * A way of grouping materials, products, or services. The system uses divisions to determine the sales areas and the business areas for a material, product, or service. * A product or service is always assigned to just one division. From the point of view of sales and distribution, the use of divisions lets you organize your sales structure around groups of similar products or product lines. This allows the people in a division who process orders and service customers to specialize within a manageable area of expertise.If a sales organization sells food and non-food products through both retail and wholesaledistribution channels each distribution channel could then be further split into food and non-food divisions. * Maximum length: 2. */ division: DeserializedType; /** * Language key. * The language key is an abbreviation for the language of the object being processed (for example, standard text, form, style). * Maximum length: 2. */ language: DeserializedType; /** * Text ID. * The text ID defines the various types of texts related to a text object. For example, the object "TEXT" (standard texts) can have the following text IDs: * ST for user-specific standard texts (individual texts)SYST for cross-application system textsvarious IDs for specific application departments. You must have the appropriate access authorization in order to access these texts. * Maximum length: 4. */ longTextId: DeserializedType; /** * String. * @nullable */ longText?: DeserializedType | null; } export interface CustomerSalesAreaTextType { customer: DeserializedType; salesOrganization: DeserializedType; distributionChannel: DeserializedType; division: DeserializedType; language: DeserializedType; longTextId: DeserializedType; longText?: DeserializedType | null; } //# sourceMappingURL=CustomerSalesAreaText.d.ts.map