I_SftyDataShtOutpReqOrignTypeT

DDL: I_SFTYDATASHTOUTPREQORIGNTYPET Type: view BASIC

SDS Output Request Origin Type Name

I_SftyDataShtOutpReqOrignTypeT is a Basic CDS View that provides data about "SDS Output Request Origin Type Name" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t OrignTypeText from

Associations (1)

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

Annotations (12)

NameValueLevelField
EndUserText.label SDS Output Request Origin Type Name view
AbapCatalog.sqlViewName ISDSORORIGNTYPET view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.representativeKey SftyDataShtOutpReqOriginType view

Fields (3)

KeyFieldSource TableSource FieldDescription
ddlanguageassylanguasLanguage
ddtextasSftyDataShtOutpReqOriginName
_Language _Language
@EndUserText.label: 'SDS Output Request Origin Type Name'

@AbapCatalog:
{
  sqlViewName: 'ISDSORORIGNTYPET',
  compiler.compareFilter: true,
  preserveKey: true  
}

// authorization check not required as view only reads domain values

@AccessControl.authorizationCheck: #NOT_REQUIRED

--Client Handling of the view
@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #BASIC

@ObjectModel:
{
  --Data category
  dataCategory: #TEXT,
  --Performance annotation
  usageType:
  {
    dataClass: #META,
    serviceQuality: #B,
    sizeCategory: #S
  },
  --Representative Key
  representativeKey: 'SftyDataShtOutpReqOriginType'
}

define view I_SftyDataShtOutpReqOrignTypeT 
  --Select data from domain value description table
  as select from dd07t as OrignTypeText

  --association to I_Language
  association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
      --Domain Value of Basic Data Status
  key substring(OrignTypeText.domvalue_l, 1, 10)   as SftyDataShtOutpReqOriginType,

      --Language
      @Semantics.language: true
      @ObjectModel.foreignKey.association: '_Language'
  key cast(OrignTypeText.ddlanguage as sylangu)   as Language,

      --language-dependent description of domain value
      @Semantics.text: true
      OrignTypeText.ddtext                        as SftyDataShtOutpReqOriginName,

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