I_RepetitiveMfgProfileText

DDL: I_REPETITIVEMFGPROFILETEXT SQL: IREMPROFTXT Type: view BASIC

Repetitive Manufacturing Profile - Text

I_RepetitiveMfgProfileText is a Basic CDS View that provides data about "Repetitive Manufacturing Profile - Text" in SAP S/4HANA. It reads from 1 data source (t437r) and exposes 5 fields with key fields RepetitiveManufacturingProfile, Language. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
t437r txt from

Associations (2)

CardinalityTargetAliasCondition
[1..1] I_RepetitiveMfgProfile _Profile $projection.RepetitiveManufacturingProfile = _Profile.RepetitiveManufacturingProfile
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (18)

NameValueLevelField
AbapCatalog.sqlViewName IREMPROFTXT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
AbapCatalog.buffering.numberOfKeyFields 000 view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey 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 - Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY RepetitiveManufacturingProfile t437r sfpro
KEY Language t437r spras
RepetitiveMfgProfileName t437r spbez
_Profile _Profile
_Language _Language
@AbapCatalog.sqlViewName: 'IREMPROFTXT'
@AbapCatalog.buffering: {status: #ACTIVE, type: #FULL, numberOfKeyFields: 000}
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.dataCategory: #TEXT
@ObjectModel.modelingPattern: #LANGUAGE_DEPENDENT_TEXT
@ObjectModel.supportedCapabilities: [#LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_DATA_SOURCE, #SQL_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.representativeKey: '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 - Text'

define view I_RepetitiveMfgProfileText
  as select from t437r as txt
  association [1..1] to I_RepetitiveMfgProfile as _Profile  on  $projection.RepetitiveManufacturingProfile = _Profile.RepetitiveManufacturingProfile
  association [0..1] to I_Language             as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.foreignKey.association: '_Profile'
      @ObjectModel.text.element: ['RepetitiveMfgProfileName']
  key txt.sfpro                 as RepetitiveManufacturingProfile,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key txt.spras                 as Language,
      @Search: {defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8}
      @Semantics.text: true
      txt.spbez                 as RepetitiveMfgProfileName,

      // Associations

      @ObjectModel.association.type: [#TO_COMPOSITION_PARENT, #TO_COMPOSITION_ROOT]
      _Profile,
      _Language
};
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T437R"
],
"ASSOCIATED":
[
"I_LANGUAGE",
"I_REPETITIVEMFGPROFILE"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/