I_BlockFunctionStatusText
Texts for actions on block functions
I_BlockFunctionStatusText is a Basic CDS View that provides data about "Texts for actions on block functions" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, EntProjElementFunctionIsBlkd. 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_BlockFunctionStatus | _BlockFunctionStatus | $projection.EntProjElementFunctionIsBlkd = _BlockFunctionStatus.EntProjElementFunctionIsBlkd |
| [0..1] | I_Language | _Language | $projection.Language = _Language.Language |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBLKFUNCSTATTXT | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | EntProjElementFunctionIsBlkd | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Texts for actions on block functions | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | |||
| KEY | EntProjElementFunctionIsBlkd | |||
| BlockStatusDescription | Processing Status Description | |||
| _BlockFunctionStatus | _BlockFunctionStatus | |||
| _Language | _Language |
@AbapCatalog.sqlViewName: 'IBLKFUNCSTATTXT'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:
{
representativeKey: 'EntProjElementFunctionIsBlkd',
resultSet.sizeCategory: #XS,
usageType:
{
serviceQuality: #A,
dataClass: #MASTER,
sizeCategory: #S
}
}
@VDM.viewType: #BASIC
@EndUserText.label: 'Texts for actions on block functions'
define view I_BlockFunctionStatusText
as select from dd07t
association [0..1] to I_BlockFunctionStatus as _BlockFunctionStatus on $projection.EntProjElementFunctionIsBlkd = _BlockFunctionStatus.EntProjElementFunctionIsBlkd
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@Semantics.language
key cast( ddlanguage as spras ) as Language,
@ObjectModel.foreignKey.association: '_BlockFunctionStatus'
key cast ( substring( domvalue_l, 1, 1 ) as boole_d ) as EntProjElementFunctionIsBlkd,
@Semantics.text
@EndUserText.label: 'Processing Status Description'
cast ( ddtext as /s4ppm/tv_proc_status_text ) as BlockStatusDescription,
_BlockFunctionStatus,
_Language
}
where
domname = 'ENTOBJ_FUNCTION_IS_BLOCKED'
and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_BLOCKFUNCTIONSTATUS",
"I_LANGUAGE"
],
"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