A_ServiceEntrySheet
Service Entry Sheet
A_ServiceEntrySheet is a Composite CDS View that provides data about "Service Entry Sheet" in SAP S/4HANA. It reads from 1 data source (I_ServiceEntrySheetBasic) and exposes 26 fields with key field ServiceEntrySheet. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceEntrySheetBasic | I_ServiceEntrySheetBasic | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..*] | A_ServiceEntrySheetItem | _ServiceEntrySheetItem | _ServiceEntrySheetItem.ServiceEntrySheet = $projection.ServiceEntrySheet --Extension |
| [0..1] | E_ServiceEntrySheet | _Extension | _Extension.ServiceEntrySheet = $projection.ServiceEntrySheet |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ASRVCENTRSHT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #MANDATORY | view | |
| EndUserText.label | Service Entry Sheet | view | |
| VDM.viewType | #COMPOSITE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.createEnabled | true | view | |
| ObjectModel.updateEnabled | true | view | |
| ObjectModel.deleteEnabled | false | view |
Fields (26)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceEntrySheet | ServiceEntrySheet | ||
| ApprovalDateTime | ApprovalDateTime | |||
| ApprovalStatus | ApprovalStatus | |||
| SESWorkflowStatus | _SESWorkflowStatus | SESWorkflowStatus | ||
| CreatedByUser | CreatedByUser | |||
| CreationDateTime | CreationDateTime | |||
| PurchasingOrganization | PurchasingOrganization | |||
| PurchasingGroup | PurchasingGroup | |||
| IsEndOfPurposeBlocked | IsEndOfPurposeBlocked | |||
| Currency | Currency | |||
| IsDeleted | IsDeleted | |||
| LastChangeDateTime | LastChangeDateTime | |||
| LastChangedByUser | LastChangeUser | |||
| MaterialDocument | MaterialDocument | |||
| MaterialDocumentYear | MaterialDocumentYear | |||
| OriginObjectType | OriginObjectType | |||
| PurchaseOrder | PurchaseOrder | |||
| ResponsiblePerson | ResponsiblePerson | |||
| ServiceEntrySheetName | ServiceEntrySheetName | |||
| ServiceEntrySheetUUID | ServiceEntrySheetUUID | |||
| Supplier | Supplier | |||
| PurgDocExternalSystem | PurgDocExternalSystem | |||
| PurgDocExternalReference | PurgDocExternalReference | |||
| ExternalRevisionDateTime | ExternalRevisionDateTime | |||
| PostingDate | PostingDate | |||
| _ServiceEntrySheetItem | _ServiceEntrySheetItem |
@AbapCatalog.sqlViewName: 'ASRVCENTRSHT'
@AbapCatalog.compiler.compareFilter: true
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #MANDATORY
@EndUserText.label: 'Service Entry Sheet'
@VDM.viewType : #COMPOSITE
@Metadata.ignorePropagatedAnnotations:true
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@ObjectModel: {
usageType.serviceQuality: #C,
usageType.sizeCategory: #L,
usageType.dataClass: #TRANSACTIONAL,
createEnabled: true,
updateEnabled: true,
deleteEnabled: false
}
define view A_ServiceEntrySheet
as select from I_ServiceEntrySheetBasic
association [1..*] to A_ServiceEntrySheetItem as _ServiceEntrySheetItem on _ServiceEntrySheetItem.ServiceEntrySheet = $projection.ServiceEntrySheet
--Extension Association
association [0..1] to E_ServiceEntrySheet as _Extension on _Extension.ServiceEntrySheet = $projection.ServiceEntrySheet
{
key ServiceEntrySheet,
ApprovalDateTime,
ApprovalStatus,
_SESWorkflowStatus.SESWorkflowStatus,
CreatedByUser,
CreationDateTime,
PurchasingOrganization,
PurchasingGroup,
IsEndOfPurposeBlocked,
@Semantics.currencyCode:true
@ObjectModel.sapObjectNodeTypeReference: 'Currency'
Currency,
IsDeleted,
LastChangeDateTime,
LastChangeUser as LastChangedByUser,
MaterialDocument,
MaterialDocumentYear,
//@ObjectModel.sapObjectNodeTypeReference: 'SESOriginObjectType'
OriginObjectType,
PurchaseOrder,
ResponsiblePerson,
ServiceEntrySheetName,
ServiceEntrySheetUUID,
Supplier,
PurgDocExternalSystem,
PurgDocExternalReference,
ExternalRevisionDateTime,
PostingDate,
_ServiceEntrySheetItem
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SERVICEENTRYSHEETBASIC",
"I_SESWORKFLOWSTATUS"
],
"ASSOCIATED":
[
"A_SERVICEENTRYSHEETITEM",
"E_SERVICEENTRYSHEET"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA