I_ProjDmndAssgmtStatusText
Assignment Status for Proj Demands – Text
I_ProjDmndAssgmtStatusText is a Basic CDS View that provides data about "Assignment Status for Proj Demands – Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, ProjDmndAssgmtStatus. It has 1 association to related views. Part of development package PS_DMND_VDM_WORK.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | ProjDmndAssgmtStatus | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| EndUserText.label | Assignment Status for Proj Demands – Text | view | |
| Search.searchable | true | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | ProjDmndAssgmtStatus | |||
| ProjDmndAssgmtStatusText | dd07t | ddtext | ||
| _Language | _Language | |||
| _AssignmentStatus | _AssignmentStatus |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel:{ representativeKey: 'ProjDmndAssgmtStatus',
dataCategory: #TEXT,
usageType: {
serviceQuality: #A,
sizeCategory: #S,
dataClass: #CUSTOMIZING},
supportedCapabilities: [#SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET]}
// sapObjectNodeType.name: 'ProjectDemandAssignmentStatus'
@Metadata.ignorePropagatedAnnotations:true
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@EndUserText.label: 'Assignment Status for Proj Demands – Text'
@Search.searchable: true
define view entity I_ProjDmndAssgmtStatusText
as select from dd07t
association to parent I_ProjDmndAssgmtStatus as _AssignmentStatus on $projection.ProjDmndAssgmtStatus = _AssignmentStatus.ProjDmndAssgmtStatus
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key cast( dd07t.ddlanguage as spras preserving type ) as Language,
@ObjectModel.foreignKey.association: '_AssignmentStatus'
key cast( substring(domvalue_l, 1, 2 ) as tv_proj_dmnd_assgmt_status ) as ProjDmndAssgmtStatus,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking:#LOW
@Semantics.text: true
dd07t.ddtext as ProjDmndAssgmtStatusText,
_Language,
_AssignmentStatus
}
where
domname = 'PROJ_DMND_ASSGMT_STATUS'
and as4local = 'A'
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