import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; /** * This class represents the entity "A_CustomerDunning" of service "API_BUSINESS_PARTNER". */ export declare class CustomerDunning extends Entity implements CustomerDunningType { /** * Technical entity name for CustomerDunning. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the CustomerDunning 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; /** * Company Code. * The company code is an organizational unit within financial accounting. * Maximum length: 4. */ companyCode: DeserializedType; /** * Dunning Area. * The dunning area represents an organizational entity that is responsible for dunning. The dunning areas represent a sub-structure of the company codes. * If different responsibilities or different dunning procedures exist within a company code, you can set up corresponding dunning areas.All dunning notices are made separately according to dunning areas, and if necessary with different dunning procedures.The dunning area must be noted in the line items. As long as documents are copied from preliminary work areas (billing documents), the dunning area can be derived from details such as division or sales area, if necessary. * Maximum length: 2. */ dunningArea: DeserializedType; /** * Dunning Block. * Key which reflects the reason for a dunning block indicator. * Maximum length: 1. * @nullable */ dunningBlock?: DeserializedType | null; /** * Dunning Level. * Number that specifies how often an item or account has been dunned. * The business partner has received the dunning level from the last dunning run.If you use dunning areas, it is the dunning level that the business partner received from the last dunning run in the dunning area assigned.The dunning program sets the dunning level automatically when the customer or vendor receives a dunning notice. * Maximum length: 1. * @nullable */ dunningLevel?: DeserializedType | null; /** * Dunning Procedure. * This field contains the key for the dunning procedure to be used. * Maximum length: 4. * @nullable */ dunningProcedure?: DeserializedType | null; /** * Account Number of the Dunning Recipient. * Account number of the customer who is to be the recipient of the dunning letters. * The account number is only needed if dunning letters are not sent to the customer who owes the receivables. * Maximum length: 10. * @nullable */ dunningRecipient?: DeserializedType | null; /** * Date of Last Dunning Notice. * Date on which the last dunning notice was made. * @nullable */ lastDunnedOn?: DeserializedType | null; /** * Date of the Legal Dunning Proceedings. * Date on which a legal dunning procedure was initiated. * The printing of dunning notices in the legal dunning procedure generates an internal notice about any further account movements. A dunning notice is not created for the customer.If the Legal dunning procedure field in the master record contains a date, this means that the account is involved in a legal dunning procedure. The relationship between this date and the dunning date does not affect how the account is processed.The printing of account movements in the legal dunning procedure differs from the normal printing of dunning notices as follows:You must specify a separate form for your dunning procedure in Customizing. For more information, see Customizing (IMG) under Dunning Forms.The dunning program also displays text element 520 "Legal dunning procedure". This makes it possible to display the date of the legal dunning procedure from the master record.The program also displays the documents blocked for dunning and those with a payment method (automatic debit, bank direct debit).Although dunning notices are printed, the dunning level does not change in the master record or in the items. New dunning level = old dunning level.The program only updates the date of the last dunning run.Enter the date manually. * @nullable */ legDunningProcedureOn?: DeserializedType | null; /** * Dunning Clerk. * Identification code for the accounting clerk dealing with dunning letters. * Using this identification code, the accounting clerk whose name is printed on the dunning letters is determined.If this field is not filled, then the entry from the Accounting clerk field is used. * Maximum length: 2. * @nullable */ dunningClerk?: DeserializedType | null; /** * Authorization Group. * The authorization group allows extended authorization protection for particular objects. The authorization groups are freely definable. The authorization groups usually occur in authorization objects together with an activity. * Maximum length: 4. * @nullable */ authorizationGroup?: DeserializedType | null; /** * Customer Account Group. * The account group is a classifying feature within customer master records. The account group determines: * in which number range the customer account number should be;whether the number is assigned by the user or by the system;which specifications are necessary or possible in the master record. * Maximum length: 4. * @nullable */ customerAccountGroup?: DeserializedType | null; } export interface CustomerDunningType { customer: DeserializedType; companyCode: DeserializedType; dunningArea: DeserializedType; dunningBlock?: DeserializedType | null; dunningLevel?: DeserializedType | null; dunningProcedure?: DeserializedType | null; dunningRecipient?: DeserializedType | null; lastDunnedOn?: DeserializedType | null; legDunningProcedureOn?: DeserializedType | null; dunningClerk?: DeserializedType | null; authorizationGroup?: DeserializedType | null; customerAccountGroup?: DeserializedType | null; } //# sourceMappingURL=CustomerDunning.d.ts.map