I_RepetitiveMfgProfile
Repetitive Manufacturing Profile
I_RepetitiveMfgProfile is a Basic CDS View (Dimension) that provides data about "Repetitive Manufacturing Profile" in SAP S/4HANA. It reads from 1 data source (t437s) and exposes 10 fields with key field RepetitiveManufacturingProfile. It has 5 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t437s | prof | from |
Associations (5)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_OrderType | _OrderType | $projection.ProductCostCtrlgOrderType = _OrderType.OrderType |
| [0..1] | I_RepetitiveMfgProdnType | _ProductionType | $projection.RepetitiveMfgProductionType = _ProductionType.RepetitiveMfgProductionType |
| [0..1] | I_GoodsMovementType | _GoodsIssueMovementType | $projection.GoodsIssueMovementType = _GoodsIssueMovementType.GoodsMovementType |
| [0..1] | I_GoodsMovementType | _GoodsReceiptMovementType | $projection.GoodsReceiptMovementType = _GoodsReceiptMovementType.GoodsMovementType |
| [0..*] | I_RepetitiveMfgProfileText | _Text | $projection.RepetitiveManufacturingProfile = _Text.RepetitiveManufacturingProfile |
Annotations (24)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IREMPROF | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #FULL | view | |
| AbapCatalog.buffering.numberOfKeyFields | 000 | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.dataCategory | #DIMENSION | view | |
| Analytics.internalName | #LOCAL | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Consumption.ranked | true | view | |
| Metadata.allowExtensions | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.compositionRoot | true | view | |
| ObjectModel.modelingPattern | #ANALYTICAL_DIMENSION | view | |
| ObjectModel.representativeKey | RepetitiveManufacturingProfile | view | |
| ObjectModel.sapObjectNodeType.name | RepetitiveManufacturingProfile | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| Search.searchable | true | view | |
| VDM.lifecycle.contract.type | #PUBLIC_LOCAL_API | view | |
| VDM.viewType | #BASIC | view | |
| EndUserText.label | Repetitive Manufacturing Profile | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | RepetitiveManufacturingProfile | t437s | sfpro | |
| RepetitiveMfgProductionType | t437s | auart | ||
| ProductCostCtrlgOrderType | ||||
| GoodsIssueMovementType | ||||
| GoodsReceiptMovementType | ||||
| _OrderType | _OrderType | |||
| _ProductionType | _ProductionType | |||
| _GoodsIssueMovementType | _GoodsIssueMovementType | |||
| _GoodsReceiptMovementType | _GoodsReceiptMovementType | |||
| _Text | _Text |
@AbapCatalog.sqlViewName: 'IREMPROF'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering: {status: #ACTIVE, type: #FULL, numberOfKeyFields: 000}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.internalName: #LOCAL
@ClientHandling.algorithm: #SESSION_VARIABLE
@Consumption.ranked: true
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.compositionRoot: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.supportedCapabilities: [#ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: 'RepetitiveManufacturingProfile'
@ObjectModel.sapObjectNodeType.name: 'RepetitiveManufacturingProfile'
@ObjectModel.usageType: {serviceQuality: #A, sizeCategory: #S, dataClass: #CUSTOMIZING}
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
@EndUserText.label: 'Repetitive Manufacturing Profile'
/*+[hideWarning] { "IDS" : [ "CALCULATED_FIELD_CHECK" ] } */
define view I_RepetitiveMfgProfile
as select from t437s as prof
association [0..1] to I_OrderType as _OrderType on $projection.ProductCostCtrlgOrderType = _OrderType.OrderType
association [0..1] to I_RepetitiveMfgProdnType as _ProductionType on $projection.RepetitiveMfgProductionType = _ProductionType.RepetitiveMfgProductionType
association [0..1] to I_GoodsMovementType as _GoodsIssueMovementType on $projection.GoodsIssueMovementType = _GoodsIssueMovementType.GoodsMovementType
association [0..1] to I_GoodsMovementType as _GoodsReceiptMovementType on $projection.GoodsReceiptMovementType = _GoodsReceiptMovementType.GoodsMovementType
association [0..*] to I_RepetitiveMfgProfileText as _Text on $projection.RepetitiveManufacturingProfile = _Text.RepetitiveManufacturingProfile
{
@ObjectModel.text.association: '_Text'
@Search: {defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8}
key prof.sfpro as RepetitiveManufacturingProfile,
@ObjectModel.foreignKey.association: '_ProductionType'
@Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
prof.auart as RepetitiveMfgProductionType,
@ObjectModel.foreignKey.association: '_OrderType'
@Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
cast(prof.ksart as pph_ksaar preserving type) as ProductCostCtrlgOrderType,
// Movement types
@ObjectModel.foreignKey.association: '_GoodsIssueMovementType'
cast(prof.bwawa as nsdm_gi_bwart preserving type) as GoodsIssueMovementType,
@ObjectModel.foreignKey.association: '_GoodsReceiptMovementType'
cast(prof.bwawe as nsdm_gr_bwart preserving type) as GoodsReceiptMovementType,
// Associations
_OrderType,
_ProductionType,
_GoodsIssueMovementType,
_GoodsReceiptMovementType,
@ObjectModel.association.type: [#TO_COMPOSITION_CHILD]
_Text
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T437S"
],
"ASSOCIATED":
[
"I_GOODSMOVEMENTTYPE",
"I_ORDERTYPE",
"I_REPETITIVEMFGPRODNTYPE",
"I_REPETITIVEMFGPROFILETEXT"
],
"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