import { Entity, DefaultDeSerializers, DeSerializers, DeserializedType } from '@sap-cloud-sdk/odata-v2'; import { TimeSheetDataFields } from './TimeSheetDataFields'; /** * This class represents the entity "TimeSheetEntryCollection" of service "API_MANAGE_WORKFORCE_TIMESHEET". */ export declare class TimeSheetEntry extends Entity implements TimeSheetEntryType { /** * Technical entity name for TimeSheetEntry. */ static _entityName: string; /** * Default url path for the according service. */ static _defaultServicePath: string; /** * All key fields of the TimeSheetEntry entity */ static _keys: string[]; /** * Time Sheet Data Fields. */ timeSheetDataFields: TimeSheetDataFields; /** * Work Agreement External ID. * Maximum length: 20. */ personWorkAgreementExternalId: DeserializedType; /** * Company Code. * The company code is an organizational unit within financial accounting. * Maximum length: 4. */ companyCode: DeserializedType; /** * Counter for Records in Time Recording. * The system assigns time sheet records a counter. The counter represents a record's unique database ID. * If you change a record that has already been approved, the original record retains this ID; the changed record is assigned another unique ID. * Maximum length: 12. */ timeSheetRecord: DeserializedType; /** * Object ID. * Contains a unique eight-digit numerical code, that represents a specific object (for example, an organizational unit, qualification or business event). * When you work with infotype records, this field allows you to use the Fast entry feature. Fast entry enables you to create numerous infotype records without having to exit and re-enter the infotype window.To select the object that the infotype record should belong to, either:Enter the object's eight-digit codeUse the matchcode feature to search for the object. * Maximum length: 8. * @nullable */ personWorkAgreement?: DeserializedType | null; /** * Date. * @nullable */ timeSheetDate?: DeserializedType | null; /** * Release Records on Saving. * Determines that the system releases changed data records immediately when you save them. You do not have to release them manually. * @nullable */ timeSheetIsReleasedOnSave?: DeserializedType | null; /** * Reference Counter for Record to be Changed. * The reference counter is assigned to a record that was created when an existing record was changed. The new record is assigned a new counter and, as a reference counter, the ID of the original record. The reference counter provides a link between the new and original record. * Maximum length: 12. * @nullable */ timeSheetPredecessorRecord?: DeserializedType | null; /** * Processing Status. * Each time sheet record is assigned a status. This status indicates the processing status of the selected record. * Status IndicatorIn process 10Released for approval 20Approved 30Approval rejected 40Changed after approval 50Cancelled 60. * Maximum length: 2. * @nullable */ timeSheetStatus?: DeserializedType | null; /** * Yes/No Switch with Values 'SPACE' and 'X'. * @nullable */ timeSheetIsExecutedInTestRun?: DeserializedType | null; /** * CATS Operations : 'C' , 'U' , 'D'. * Maximum length: 1. * @nullable */ timeSheetOperation?: DeserializedType | null; } export interface TimeSheetEntryType { timeSheetDataFields: TimeSheetDataFields; personWorkAgreementExternalId: DeserializedType; companyCode: DeserializedType; timeSheetRecord: DeserializedType; personWorkAgreement?: DeserializedType | null; timeSheetDate?: DeserializedType | null; timeSheetIsReleasedOnSave?: DeserializedType | null; timeSheetPredecessorRecord?: DeserializedType | null; timeSheetStatus?: DeserializedType | null; timeSheetIsExecutedInTestRun?: DeserializedType | null; timeSheetOperation?: DeserializedType | null; } //# sourceMappingURL=TimeSheetEntry.d.ts.map