I_SettlmtBlockingReasonCode
Settlement Blocking Reason Code
I_SettlmtBlockingReasonCode is a Basic CDS View (Dimension) that provides data about "Settlement Blocking Reason Code" in SAP S/4HANA. It reads from 1 data source (tmsb) and exposes 2 fields with key field SettlmtBlockingReason. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| tmsb | tmsb | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SettlmtBlockingReasonText | _Text | $projection.SettlmtBlockingReason = _Text.SettlmtBlockingReason |
Annotations (21)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IWLFSMTBLOCKRSN | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #GENERIC | view | |
| AbapCatalog.buffering.numberOfKeyFields | 001 | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | SettlmtBlockingReason | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ClientHandling.type | #INHERITED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | false | view | |
| Analytics.internalName | #LOCAL | view | |
| EndUserText.label | Settlement Blocking Reason Code | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SettlmtBlockingReason | settlement_block | ||
| _Text | _Text |
@AbapCatalog: {
sqlViewName: 'IWLFSMTBLOCKRSN',
compiler.compareFilter: true,
preserveKey: true,
buffering: {
status: #ACTIVE,
type: #GENERIC,
numberOfKeyFields: 001
}
}
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@AccessControl: {
authorizationCheck: #NOT_REQUIRED
}
@ObjectModel: {
representativeKey: 'SettlmtBlockingReason',
modelingPattern: #ANALYTICAL_DIMENSION,
supportedCapabilities : [ #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE],
usageType: {
dataClass: #CUSTOMIZING,
serviceQuality: #B,
sizeCategory: #S
}
}
@ClientHandling: {
type: #INHERITED,
algorithm: #SESSION_VARIABLE
}
@Analytics: {
dataCategory: #DIMENSION,
dataExtraction.enabled: false,
internalName: #LOCAL
}
@EndUserText.label: 'Settlement Blocking Reason Code'
@Metadata.ignorePropagatedAnnotations: true
define view I_SettlmtBlockingReasonCode
as select from tmsb
association [0..*] to I_SettlmtBlockingReasonText as _Text on $projection.SettlmtBlockingReason = _Text.SettlmtBlockingReason
{
@ObjectModel.text.association: '_Text'
key settlement_block as SettlmtBlockingReason,
_Text
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"TMSB"
],
"ASSOCIATED":
[
"I_SETTLMTBLOCKINGREASONTEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"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