I_PurReqnItemClassfctnText
Purchase Reqn Item Classification Text
I_PurReqnItemClassfctnText is a Basic CDS View that provides data about "Purchase Reqn Item Classification Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, PurReqnItemClassification. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_PurReqnItemClassfctn | _PurReqnItemClassfctn | _PurReqnItemClassfctn.PurReqnItemClassification = $projection.PurReqnItemClassification |
| [0..1] | I_Language | _Language | _Language.Language = $projection.Language |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | PurReqnItemClassification | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| AbapCatalog.sqlViewName | IPRITEMCLSSFTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| EndUserText.label | Purchase Reqn Item Classification Text | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | dd07t | ddlanguage | |
| KEY | PurReqnItemClassification | |||
| PurReqItemClassificationText | ||||
| _PurReqnItemClassfctn | _PurReqnItemClassfctn | |||
| _Language | _Language |
@ClientHandling.algorithm: #SESSION_VARIABLE //Inserted by VDM CDS Suite Plugin
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'PurReqnItemClassification'
@ObjectModel.usageType.dataClass: #META
@ObjectModel.usageType.serviceQuality:#A
@ObjectModel.usageType.sizeCategory: #S
@AbapCatalog.sqlViewName: 'IPRITEMCLSSFTXT'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@EndUserText.label: 'Purchase Reqn Item Classification Text'
@AccessControl.personalData.blocking: #NOT_REQUIRED
//Commented by VDM CDS Suite Plugin:@ObjectModel.dataCategory: #TEXT
//Commented by VDM CDS Suite Plugin:@ObjectModel.representativeKey: 'PurReqnItemClassification'
//Commented by VDM CDS Suite Plugin:
define view I_PurReqnItemClassfctnText
as select from dd07t
association [0..1] to I_PurReqnItemClassfctn as _PurReqnItemClassfctn on _PurReqnItemClassfctn.PurReqnItemClassification = $projection.PurReqnItemClassification
association [0..1] to I_Language as _Language on _Language.Language = $projection.Language
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key dd07t.ddlanguage as Language,
key cast( substring(dd07t.domvalue_l, 1, 2 ) as mm_a_pur_reqn_item_classfctn ) as PurReqnItemClassification,
@Semantics.text: true
cast (dd07t.ddtext as mm_a_purreqn_itemclassfctntext) as PurReqItemClassificationText,
_PurReqnItemClassfctn,
_Language
}
where
dd07t.domname = 'ITEMCLASSIFICATION'
and dd07t.as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PURREQNITEMCLASSFCTN"
],
"BASE":
[],
"ANNO_REF":
[],
"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