I_GoodsMovementType
Goods Movement Type
I_GoodsMovementType is a Basic CDS View (Dimension) that provides data about "Goods Movement Type" in SAP S/4HANA. It reads from 1 data source (t156) and exposes 9 fields with key field GoodsMovementType. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t156 | t156 | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_GoodsMovementTypeT | _Text | $projection.GoodsMovementType = _Text.GoodsMovementType |
| [0..1] | I_DebitCreditCode | _DebitCreditCode | $projection.DebitCreditCode = _DebitCreditCode.DebitCreditCode |
| [0..1] | I_ResvnAcctAssgmtCategory | _ResvnAcctAssgmtCategory | $projection.ResvnAcctAssgmtCategory = _ResvnAcctAssgmtCategory.ResvnAcctAssgmtCategory |
Annotations (20)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IGDSMVTTYPE | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #GENERIC | view | |
| AbapCatalog.buffering.numberOfKeyFields | 1 | view | |
| EndUserText.label | Goods Movement Type | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | GoodsMovementType | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.sapObjectNodeType.name | GoodsMovementType | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.dataExtraction.enabled | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (9)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | GoodsMovementType | bwart | ||
| IsReversalMovementType | xstbw | |||
| DebitCreditCode | shkzg | |||
| ResvnAcctAssgmtCategory | rstyp | |||
| BasicMovementTypeReference | bustr | |||
| SourceGoodsMovementType | mvt_source | |||
| _Text | _Text | |||
| _DebitCreditCode | _DebitCreditCode | |||
| _ResvnAcctAssgmtCategory | _ResvnAcctAssgmtCategory |
@AbapCatalog:{
sqlViewName: 'IGDSMVTTYPE',
preserveKey: true,
compiler.compareFilter: true,
buffering : { status : #ACTIVE, type: #GENERIC, numberOfKeyFields: 1 }
}
@EndUserText.label: 'Goods Movement Type'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
usageType: {
sizeCategory: #S,
serviceQuality: #A,
dataClass:#CUSTOMIZING
},
representativeKey: 'GoodsMovementType',
modelingPattern: #ANALYTICAL_DIMENSION,
supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE],
sapObjectNodeType.name: 'GoodsMovementType'
}
@VDM: {
viewType: #BASIC,
lifecycle.contract.type: #PUBLIC_LOCAL_API
}
@Analytics: {
dataCategory: #DIMENSION,
dataExtraction:
{ enabled: true }
}
@Metadata: {
ignorePropagatedAnnotations: true
}
define view I_GoodsMovementType
as select from t156
association [0..*] to I_GoodsMovementTypeT as _Text on $projection.GoodsMovementType = _Text.GoodsMovementType
association [0..1] to I_DebitCreditCode as _DebitCreditCode on $projection.DebitCreditCode = _DebitCreditCode.DebitCreditCode
association [0..1] to I_ResvnAcctAssgmtCategory as _ResvnAcctAssgmtCategory on $projection.ResvnAcctAssgmtCategory = _ResvnAcctAssgmtCategory.ResvnAcctAssgmtCategory
{
@ObjectModel.text.association: '_Text'
key bwart as GoodsMovementType,
xstbw as IsReversalMovementType,
@ObjectModel.foreignKey.association: '_DebitCreditCode'
shkzg as DebitCreditCode,
@ObjectModel.foreignKey.association: '_ResvnAcctAssgmtCategory'
rstyp as ResvnAcctAssgmtCategory,
bustr as BasicMovementTypeReference,
mvt_source as SourceGoodsMovementType,
_Text,
_DebitCreditCode,
_ResvnAcctAssgmtCategory
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T156"
],
"ASSOCIATED":
[
"I_DEBITCREDITCODE",
"I_GOODSMOVEMENTTYPET",
"I_RESVNACCTASSGMTCATEGORY"
],
"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