I_RO_SAFTMvtTypeTableEntry
RO SAFT Movement Type Table Entry
I_RO_SAFTMvtTypeTableEntry is a Basic CDS View that provides data about "RO SAFT Movement Type Table Entry" in SAP S/4HANA. It reads from 1 data source (/ceecv/rocmvtpmp) and exposes 8 fields with key fields GoodsMovementType, Plant, TargetGLAccount, AccountingDocumentType, DebitCreditCode. Part of development package GLO_LOG_SAFT_RO.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /ceecv/rocmvtpmp | _RO_SAFT_MvtTypeTableEntry | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IROSAFTMOVTBLTRY | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.serviceQuality | A | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | RO SAFT Movement Type Table Entry | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | GoodsMovementType | /ceecv/rocmvtpmp | bwart | |
| KEY | Plant | /ceecv/rocmvtpmp | werks | |
| KEY | TargetGLAccount | /ceecv/rocmvtpmp | hkont | |
| KEY | AccountingDocumentType | /ceecv/rocmvtpmp | blart | |
| KEY | DebitCreditCode | /ceecv/rocmvtpmp | shkzg | |
| KEY | ValuationClass | /ceecv/rocmvtpmp | bklas | |
| RO_SAFTMovementType | /ceecv/rocmvtpmp | mov_type | ||
| RO_SAFTJournalTransDescription | _MvtTypeDesc | description |
@AbapCatalog.sqlViewName: 'IROSAFTMOVTBLTRY'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ObjectModel.usageType.serviceQuality:'A'
@ObjectModel.usageType.sizeCategory: #XXL
@VDM.viewType:#BASIC
@ObjectModel.usageType.dataClass:#CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'RO SAFT Movement Type Table Entry'
define view I_RO_SAFTMvtTypeTableEntry as select from /ceecv/rocmvtpmp as _RO_SAFT_MvtTypeTableEntry
join /ceecv/rocmovtyt as _MvtTypeDesc on _RO_SAFT_MvtTypeTableEntry.mov_type = _MvtTypeDesc.mov_type
{
key _RO_SAFT_MvtTypeTableEntry.bwart as GoodsMovementType,
key _RO_SAFT_MvtTypeTableEntry.werks as Plant,
key _RO_SAFT_MvtTypeTableEntry.hkont as TargetGLAccount,
key _RO_SAFT_MvtTypeTableEntry.blart as AccountingDocumentType,
key _RO_SAFT_MvtTypeTableEntry.shkzg as DebitCreditCode,
key _RO_SAFT_MvtTypeTableEntry.bklas as ValuationClass,
_RO_SAFT_MvtTypeTableEntry.mov_type as RO_SAFTMovementType,
_MvtTypeDesc.description as RO_SAFTJournalTransDescription
} where _MvtTypeDesc.spras = $session.system_language
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