I_SFIConfirmationTypeText

DDL: I_SFICONFIRMATIONTYPETEXT SQL: IMPESFICONFTTXT Type: view BASIC

SFI Confirmation Type Text

I_SFIConfirmationTypeText is a Basic CDS View that provides data about "SFI Confirmation Type Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields ShopFloorItemConfirmationType, Language. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t txt from

Associations (1)

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

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMPESFICONFTTXT view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ShopFloorItemConfirmationType view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view
EndUserText.label SFI Confirmation Type Text view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY ShopFloorItemConfirmationType
KEY Language
SFIConfirmationTypeName dd07t ddtext
_Language _Language
@AbapCatalog.sqlViewName: 'IMPESFICONFTTXT'
@AbapCatalog.preserveKey:true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'ShopFloorItemConfirmationType'
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType: {serviceQuality: #B, sizeCategory: #S, dataClass: #META}
@VDM.viewType: #BASIC
@EndUserText.label: 'SFI Confirmation Type Text'

define view I_SFIConfirmationTypeText
  as select from dd07t as txt
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      @ObjectModel.text.element: 'SFIConfirmationTypeName'
  key cast( cast(substring(txt.domvalue_l, 1, 1) as abap.numc(1)) as mpe_sfi_confirmation_doc_type) as ShopFloorItemConfirmationType,
      @ObjectModel.foreignKey.association: '_Language'
      @Semantics.language: true
  key cast(txt.ddlanguage as spras preserving type)                                                 as Language,
      @Semantics.text: true
      txt.ddtext                                                                                    as SFIConfirmationTypeName,

      // Associations

      _Language
}
where
      domname  = 'MPE_SFI_CONFIRMATION_DOC_TYPE'
  and as4local = 'A'; 
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[
"I_LANGUAGE"
],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/