I_MaterialDocumentPostingType
Material Document Posting Type
I_MaterialDocumentPostingType is a Basic CDS View (Dimension) that provides data about "Material Document Posting Type" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field MaterialDocumentPostingType. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_MaterialDocumentPostgTypeTxt | _Text | $projection.MaterialDocumentPostingType = _Text.MaterialDocumentPostingType |
Annotations (19)
| Name | Value | Level | Field |
|---|---|---|---|
| Analytics.technicalName | IMatlDocPostgTp | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| EndUserText.label | Material Document Posting Type | view | |
| Consumption.ranked | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.representativeKey | MaterialDocumentPostingType | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #META | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.sapObjectNodeType.name | MaterialDocumentPostingType | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | MaterialDocumentPostingType | |||
| _Text | _Text |
@Analytics: { technicalName: 'IMatlDocPostgTp',
dataExtraction.enabled:true,
dataCategory: #DIMENSION,
internalName:#LOCAL }
@EndUserText.label: 'Material Document Posting Type'
@Consumption.ranked: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel: { dataCategory: #VALUE_HELP,
modelingPattern: #ANALYTICAL_DIMENSION,
representativeKey: 'MaterialDocumentPostingType',
resultSet.sizeCategory: #XS,
supportedCapabilities: [#ANALYTICAL_DIMENSION,
#CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#EXTRACTION_DATA_SOURCE,
#SEARCHABLE_ENTITY,
#SQL_DATA_SOURCE,
#VALUE_HELP_PROVIDER],
usageType: { serviceQuality: #A,
dataClass: #META,
sizeCategory: #S },
sapObjectNodeType.name: 'MaterialDocumentPostingType' }
@Search.searchable: true
@VDM: { lifecycle.contract.type: #PUBLIC_LOCAL_API,
viewType: #BASIC }
define view entity I_MaterialDocumentPostingType
as select from dd07l
association [0..*] to I_MaterialDocumentPostgTypeTxt as _Text on $projection.MaterialDocumentPostingType = _Text.MaterialDocumentPostingType
{
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
key cast(substring(domvalue_l, 1, 1) as kzsto) as MaterialDocumentPostingType,
//Associations
_Text
}
where
domname = 'KZSTO'
and as4local = 'A'
and(
valpos = '0001'
or valpos = '0002'
or valpos = '0003'
)
and as4vers = '0000'
and domvalue_l <> '3';
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