I_WorkforceAssignmentStatus
Workforce Assignment Status
I_WorkforceAssignmentStatus is a Basic CDS View that provides data about "Workforce Assignment Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field WorkforceAssignmentStatus.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IWFASSGMSTATUS | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.representativeKey | WorkforceAssignmentStatus | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | Workforce Assignment Status | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkforceAssignmentStatus | |||
| DomainValue | dd07l | domvalue_l | ||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IWFASSGMSTATUS'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel: {
representativeKey: 'WorkforceAssignmentStatus',
// compositionRoot: true,
resultSet.sizeCategory: #XS,
dataCategory: #VALUE_HELP,
usageType: {
dataClass: #META,
serviceQuality: #A,
sizeCategory: #S
}
}
@EndUserText.label: 'Workforce Assignment Status'
define root view I_WorkforceAssignmentStatus
as select from dd07l
composition[0..*] of I_WorkforceAssgmtStatusText as _Text
{
@ObjectModel.text.association: '_Text'
key cast( SUBSTRING(dd07l.domvalue_l, 1, 1) as wfd_emplymt_status preserving type ) as WorkforceAssignmentStatus,
@Analytics.hidden: true
@Consumption.hidden: true
dd07l.domvalue_l as DomainValue,
// @ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
_Text
}
where
dd07l.domname = 'WFD_EMPLYMT_STATUS'
and dd07l.as4local = 'A'
and dd07l.as4vers = '0000'
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