I_RO_SAFTMaterialDocumentItem
RO SAFT Material Document Item
I_RO_SAFTMaterialDocumentItem is a Basic CDS View (Dimension) that provides data about "RO SAFT Material Document Item" in SAP S/4HANA. It reads from 1 data source (matdoc) and exposes 22 fields.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| matdoc | matdoc | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IROSAFTMATDOC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| VDM.viewType | #BASIC | view | |
| Metadata.allowExtensions | true | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| EndUserText.label | RO SAFT Material Document Item | view |
Fields (22)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| MaterialDocument | mblnr | |||
| MaterialDocumentYear | mjahr | |||
| MaterialDocumentLine | ||||
| Plant | werks | |||
| ProjectNetworkHasSpecialStock | sobkz | |||
| CompanyCode | bukrs | |||
| GoodsMovementType | bwart | |||
| EntryUnit | erfme | |||
| GoodsMovementEntryQty | erfmg | |||
| PostingDate | budat | |||
| Product | matnr | |||
| AlternativeUnit | meins | |||
| GoodsMovementQuantity | menge | |||
| DocumentReferenceID | xblnr | |||
| Batch | charg | |||
| StorageLocation | lgort | |||
| DebitCreditCode | shkzg | |||
| ActiveGLAccount | sakto | |||
| AccountingDocumentType | blart | |||
| MaterialDocumentItemText | sgtxt | |||
| MaterialLedgerTransactionType | vgart | |||
| OriginalReferenceDocument |
@AbapCatalog.sqlViewName: 'IROSAFTMATDOC'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #B
@Analytics: { dataCategory: #DIMENSION }
@Analytics.internalName:#LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.buffering.status: #NOT_ALLOWED
@VDM.viewType: #BASIC
@Metadata.allowExtensions:true
@AccessControl.personalData.blocking: #REQUIRED
@ObjectModel.supportedCapabilities: [#CDS_MODELING_ASSOCIATION_TARGET,
#CDS_MODELING_DATA_SOURCE,
#SQL_DATA_SOURCE]
@EndUserText.label: 'RO SAFT Material Document Item'
define view I_RO_SAFTMaterialDocumentItem as select from matdoc
{
mblnr as MaterialDocument,
mjahr as MaterialDocumentYear,
// line_id as MaterialDocumentLine,
cast( lpad(zeile, 6, '0') as fins_awitem ) as MaterialDocumentLine, //n3283572
// key lpad(zeile, 6, '0') as awitem,
werks as Plant,
sobkz as ProjectNetworkHasSpecialStock,
bukrs as CompanyCode,
bwart as GoodsMovementType,
erfme as EntryUnit,
@Semantics.quantity.unitOfMeasure : 'EntryUnit'
erfmg as GoodsMovementEntryQty,
budat as PostingDate,
matnr as Product,
meins as AlternativeUnit,
menge as GoodsMovementQuantity,
xblnr as DocumentReferenceID,
charg as Batch,
lgort as StorageLocation,
shkzg as DebitCreditCode,
sakto as ActiveGLAccount,
blart as AccountingDocumentType,
sgtxt as MaterialDocumentItemText,
vgart as MaterialLedgerTransactionType,
cast(concat( mblnr, mjahr) as fac_awkey) as OriginalReferenceDocument
} where record_type = 'MDOC'
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