A_WorkCenterResponsible
API Work Center Responsible
A_WorkCenterResponsible is a Basic CDS View that provides data about "API Work Center Responsible" in SAP S/4HANA. It reads from 1 data source (I_WorkCenterResponsible) and exposes 3 fields with key fields Plant, WorkCenterResponsible.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_WorkCenterResponsible | I_WorkCenterResponsible | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | AWORKCENTERRESP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | API Work Center Responsible | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Plant | Plant | ||
| KEY | WorkCenterResponsible | WorkCenterResponsible | ||
| WorkCenterResponsibleName | WorkCenterResponsibleName |
@AbapCatalog.sqlViewName: 'AWORKCENTERRESP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@AccessControl.personalData.blocking: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@VDM.viewType: #BASIC
@EndUserText.label: 'API Work Center Responsible'
define view A_WorkCenterResponsible
as select from I_WorkCenterResponsible
{
key Plant,
key WorkCenterResponsible,
@Semantics.text: true
WorkCenterResponsibleName
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_WORKCENTERRESPONSIBLE"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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