I_ProcurementBlockText
Procurement Block - Text
I_ProcurementBlockText is a Basic CDS View that provides data about "Procurement Block - Text" in SAP S/4HANA. It reads from 1 data source (tq04s) and exposes 5 fields with key fields ProcurementBlock, Language. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tq04s | tq04s | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
| [1..1] | I_ProcurementBlock | _ProcurementBlock | $projection.ProcurementBlock = _ProcurementBlock.ProcurementBlock |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPROCMTBLOCKT | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Procurement Block - Text | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | ProcurementBlock | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
@AbapCatalog: {
sqlViewName: 'IPROCMTBLOCKT',
preserveKey: true,
compiler.compareFilter: true
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Procurement Block - Text'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@ObjectModel.supportedCapabilities:
[ #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #LANGUAGE_DEPENDENT_TEXT ]
@ObjectModel: {
dataCategory: #TEXT,
representativeKey: 'ProcurementBlock',
usageType: { serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING }
}
@Metadata.ignorePropagatedAnnotations: true
define view I_ProcurementBlockText as select from tq04s
association [0..1] to I_Language as _Language
on $projection.Language = _Language.Language
association [1..1] to I_ProcurementBlock as _ProcurementBlock
on $projection.ProcurementBlock = _ProcurementBlock.ProcurementBlock
{
key tq04s.sperrfkt as ProcurementBlock,
@Semantics.language: true
key tq04s.sprache as Language,
@Semantics.text: true
cast( tq04s.kurztext as vdm_qprocurementblock_text preserving type ) as ProcurementBlockText,
/* Associations */
_ProcurementBlock,
_Language
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TQ04S"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_PROCUREMENTBLOCK"
],
"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