import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_ProductPlantForecasting" of service "API_PRODUCT_SRV". */ export declare class ProductPlantForecasting extends Entity implements ProductPlantForecastingType { /** * Technical entity name for ProductPlantForecasting. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the ProductPlantForecasting entity */ static _keys: string[]; /** * Product Number. * Alphanumeric key uniquely identifying the product. * Maximum length: 40. */ product: DeserializedType; /** * Plant. * Key uniquely identifying a plant. * Maximum length: 4. */ plant: DeserializedType; /** * To date of the material to be copied for consumption. * Date until which the consumption data of the reference material is used for the material forecast. * If you have defined a reference material, you must enter a validity date. Up to the specified validity date, the system accesses the consumption data of the reference material, from this date, it accesses the material's own consumption data. * @nullable */ consumptionRefUsageEndDate?: DeserializedType | null; /** * Multiplier for reference material for consumption. * Determines how much of the consumption quantity of the reference material should be used for the material forecast. * If you want exactly 100 % of the consumption quantity of the reference material to be used for the forecast of this material, enter 1.If you want only 70 % of the consumption quantity of the reference material to be used for the forecast of this material, enter 0,7. * @nullable */ consumptionQtyMultiplier?: DeserializedType | null; /** * Reference material for consumption. * The system uses the consumption data of this material for the forecast. * This field exists for new materials which do not yet have their own consumption statistics that the system can use in the forecast. If you have defined a reference material, the system accesses the consumption data of this material up to the validity date that you specified for it. * Maximum length: 40. * @nullable */ consumptionReferenceProduct?: DeserializedType | null; /** * Reference plant for consumption. * Plant of the reference material on whose consumption data the material forecast is based. * This field is intended for new materials without any consumption statistics for the system to access in the forecast. If you have defined a reference material, the system accesses the consumption data that exists for it in this plant and continues to do so up to the validity date specified by you.If no plant has been specified for the reference material, the system takes the plant for the material itself as the reference work automatically. * Maximum length: 4. * @nullable */ consumptionReferencePlant?: DeserializedType | null; } export interface ProductPlantForecastingType { product: DeserializedType; plant: DeserializedType; consumptionRefUsageEndDate?: DeserializedType | null; consumptionQtyMultiplier?: DeserializedType | null; consumptionReferenceProduct?: DeserializedType | null; consumptionReferencePlant?: DeserializedType | null; } //# sourceMappingURL=ProductPlantForecasting.d.ts.map